commit 7e5f2a16a716567c1515d53bb94313be144bf6b1 Author: mbrucedogs Date: Wed Jul 23 18:14:06 2025 -0500 Signed-off-by: mbrucedogs diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..a4734eb Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..46041ee --- /dev/null +++ b/.gitignore @@ -0,0 +1,139 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.* +!.env.example + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp +.cache + +# Sveltekit cache directory +.svelte-kit/ + +# vitepress build output +**/.vitepress/dist + +# vitepress cache directory +**/.vitepress/cache + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# Firebase cache directory +.firebase/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v3 +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# Vite logs files +vite.config.js.timestamp-* +vite.config.ts.timestamp-* \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..300b467 --- /dev/null +++ b/README.md @@ -0,0 +1,198 @@ +# Music Charts Archive Scraper + +A full-stack React application for scraping and visualizing music chart data from the Music Charts Archive website. + +## Project Structure + +``` +MusicCharts/ +├── docs/ +├── frontend/ # React frontend application +│ ├── src/ +│ │ ├── components/ # React components +│ │ ├── hooks/ # Custom React hooks +│ │ ├── services/ # API service layer +│ │ ├── App.jsx # Main app component +│ │ ├── index.js # Entry point +│ │ └── styles.css # Global styles +│ ├── public/ +│ └── package.json +└── backend/ # Node.js/Express backend API + ├── src/ + │ ├── routes/ # API routes + │ ├── controllers/ # Route controllers + │ ├── models/ # Data models & scraping logic + │ ├── middleware/ # Express middleware + │ └── server.js # Main server file + └── package.json +``` + +## Features + +- **Year Selection**: Choose different years to view available chart dates +- **Date Selection**: Browse and select specific chart dates for detailed song data +- **Music Chart Display**: View ranked songs with title and artist information +- **CSV Download**: Export chart data as CSV files +- **Responsive Design**: Mobile-friendly interface +- **Error Handling**: Comprehensive error states and loading indicators +- **Web Scraping**: Real-time data scraping from Music Charts Archive + +## Frontend Components + +- `YearSelector`: Dropdown for year selection +- `DateList`: Grid of available chart dates for selected year +- `ChartTable`: Music chart data table with rankings +- `DownloadButton`: CSV export functionality +- `Layout`: Main layout wrapper + +## Backend API Endpoints + +- `GET /api/health` - Health check endpoint +- `GET /api/chart/dates/:year` - Get available chart dates for a year +- `GET /api/chart/data/:date` - Get chart data for a specific date + +## Setup Instructions + +### Prerequisites + +- Node.js (v14 or higher) +- npm or yarn + +### Backend Setup + +1. Navigate to the backend directory: + ```bash + cd backend + ``` + +2. Install dependencies: + ```bash + npm install + ``` + +3. Create a `.env` file in the backend directory: + ```env + PORT=3001 + NODE_ENV=development + CORS_ORIGIN=http://localhost:3000 + ``` + +4. Start the development server: + ```bash + npm run dev + ``` + +The backend will be available at `http://localhost:3001` + +### Frontend Setup + +1. Navigate to the frontend directory: + ```bash + cd frontend + ``` + +2. Install dependencies: + ```bash + npm install + ``` + +3. Start the development server: + ```bash + npm start + ``` + +The frontend will be available at `http://localhost:3000` + +## API Documentation + +### Get Available Chart Dates +``` +GET /api/chart/dates/:year +``` + +**Parameters:** +- `year` (number): The year to get chart dates for (1970-present) + +**Response:** +```json +[ + { + "date": "2024-01-06", + "formattedDate": "Jan 6, 2024" + }, + { + "date": "2024-01-13", + "formattedDate": "Jan 13, 2024" + } +] +``` + +### Get Chart Data +``` +GET /api/chart/data/:date +``` + +**Parameters:** +- `date` (string): Date in YYYY-MM-DD format + +**Response:** +```json +[ + { + "order": 1, + "title": "Lovin On Me", + "artist": "Jack Harlow" + }, + { + "order": 2, + "title": "Cruel Summer [re-release]", + "artist": "Taylor Swift" + } +] +``` + +## Data Source + +This application scrapes data from [Music Charts Archive](https://musicchartsarchive.com), a comprehensive database of historical music charts. The scraper extracts: + +1. **Chart Dates**: Available chart dates for each year +2. **Song Rankings**: Top songs with their chart positions, titles, and artists + +## Development + +### Adding New Features + +1. **Frontend**: Add new components in `frontend/src/components/` +2. **Backend**: Add new routes in `backend/src/routes/` and controllers in `backend/src/controllers/` +3. **Scraping**: Modify `backend/src/models/chartService.js` for new data extraction +4. **Styling**: Modify `frontend/src/styles.css` for global styles + +### Testing + +- Backend tests: `cd backend && npm test` +- Frontend tests: `cd frontend && npm test` + +## Technologies Used + +### Frontend +- React 18 +- Custom Hooks +- CSS3 with modern features +- Axios for API calls + +### Backend +- Node.js +- Express.js +- Cheerio for HTML parsing +- Axios for web scraping +- CORS for cross-origin requests +- Helmet for security headers +- Morgan for logging + +## Legal Notice + +This application is for educational and research purposes. Please respect the terms of service of the Music Charts Archive website and implement appropriate rate limiting and caching strategies for production use. + +## License + +MIT License \ No newline at end of file diff --git a/backend/package-lock.json b/backend/package-lock.json new file mode 100644 index 0000000..9b50742 --- /dev/null +++ b/backend/package-lock.json @@ -0,0 +1,5245 @@ +{ + "name": "chart-backend", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "chart-backend", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "axios": "^1.6.0", + "cheerio": "^1.0.0-rc.12", + "cors": "^2.8.5", + "dotenv": "^16.3.1", + "express": "^4.18.2", + "helmet": "^7.1.0", + "morgan": "^1.10.0" + }, + "devDependencies": { + "jest": "^29.7.0", + "nodemon": "^3.0.1" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz", + "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz", + "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.0", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.27.3", + "@babel/helpers": "^7.27.6", + "@babel/parser": "^7.28.0", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.0", + "@babel/types": "^7.28.0", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/core/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/generator": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz", + "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.0", + "@babel/types": "^7.28.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", + "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.27.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz", + "integrity": "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz", + "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", + "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", + "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz", + "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.0", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/traverse/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/types": { + "version": "7.28.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.1.tgz", + "integrity": "sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz", + "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/node": { + "version": "24.1.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.1.0.tgz", + "integrity": "sha512-ut5FthK5moxFKH2T1CUOC6ctR67rQRvvHdFLCD2Ql6KXmMuCrjsSsRI9UsLCm9M18BMwClv4pn327UvB7eeO1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.8.0" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.11.0.tgz", + "integrity": "sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", + "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/basic-auth/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.25.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", + "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001726", + "electron-to-chromium": "^1.5.173", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001727", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz", + "integrity": "sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/cheerio": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.1.2.tgz", + "integrity": "sha512-IkxPpb5rS/d1IiLbHMgfPuS0FgiWTtFIm/Nj+2woXDLTZ7fOT2eqzgYbdMlLweqlHbsZjxEChoVK+7iph7jyQg==", + "license": "MIT", + "dependencies": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.2", + "encoding-sniffer": "^0.2.1", + "htmlparser2": "^10.0.0", + "parse5": "^7.3.0", + "parse5-htmlparser2-tree-adapter": "^7.1.0", + "parse5-parser-stream": "^7.1.2", + "undici": "^7.12.0", + "whatwg-mimetype": "^4.0.0" + }, + "engines": { + "node": ">=20.18.1" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + } + }, + "node_modules/cheerio-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", + "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-select": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", + "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/dedent": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.6.0.tgz", + "integrity": "sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.190", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.190.tgz", + "integrity": "sha512-k4McmnB2091YIsdCgkS0fMVMPOJgxl93ltFzaryXqwip1AaxeDqKCGLxkXODDA5Ab/D+tV5EL5+aTx76RvLRxw==", + "dev": true, + "license": "ISC" + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding-sniffer": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz", + "integrity": "sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==", + "license": "MIT", + "dependencies": { + "iconv-lite": "^0.6.3", + "whatwg-encoding": "^3.1.1" + }, + "funding": { + "url": "https://github.com/fb55/encoding-sniffer?sponsor=1" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/express": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", + "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.12", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", + "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/helmet": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/helmet/-/helmet-7.2.0.tgz", + "integrity": "sha512-ZRiwvN089JfMXokizgqEPXsl2Guk094yExfoDXR0cBYWxtBbaSww/w+vT4WEJsBW2iTUi1GgZ6swmoug3Oy4Xw==", + "license": "MIT", + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/htmlparser2": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz", + "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.1", + "entities": "^6.0.0" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", + "dev": true, + "license": "ISC" + }, + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/morgan": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.1.tgz", + "integrity": "sha512-223dMRJtI/l25dJKWpgij2cMtywuG/WiUKXdvwfbhGKBhy1puASqXwFzmWZ7+K73vUPoR7SS2Qz2cI/g9MKw0A==", + "license": "MIT", + "dependencies": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.1.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/morgan/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/nodemon": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.10.tgz", + "integrity": "sha512-WDjw3pJ0/0jMFmyNDp3gvY2YizjLmmOUQo6DEBY+JgdvW/yQ9mEeSw6H5ythl5Ny2ytb7f9C2nIbjSxMNzbJXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^4", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.1.2", + "pstree.remy": "^1.1.8", + "semver": "^7.5.3", + "simple-update-notifier": "^2.0.0", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "node_modules/nodemon/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/nodemon/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/nodemon/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nodemon/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/nodemon/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz", + "integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==", + "license": "MIT", + "dependencies": { + "domhandler": "^5.0.3", + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-parser-stream": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz", + "integrity": "sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==", + "license": "MIT", + "dependencies": { + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5/node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", + "dev": true, + "license": "MIT" + }, + "node_modules/pure-rand": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ], + "license": "MIT" + }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/simple-update-notifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", + "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/simple-update-notifier/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true, + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/touch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", + "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", + "dev": true, + "license": "ISC", + "bin": { + "nodetouch": "bin/nodetouch.js" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", + "dev": true, + "license": "MIT" + }, + "node_modules/undici": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.12.0.tgz", + "integrity": "sha512-GrKEsc3ughskmGA9jevVlIOPMiiAHJ4OFUtaAH+NhfTUSiZ1wMPIQqQvAJUrJspFXJt3EBWgpAeoHEDVT1IBug==", + "license": "MIT", + "engines": { + "node": ">=20.18.1" + } + }, + "node_modules/undici-types": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz", + "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==", + "dev": true, + "license": "MIT" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", + "dev": true, + "license": "ISC", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/whatwg-encoding": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", + "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/whatwg-mimetype": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/backend/package.json b/backend/package.json new file mode 100644 index 0000000..3210e6c --- /dev/null +++ b/backend/package.json @@ -0,0 +1,27 @@ +{ + "name": "chart-backend", + "version": "1.0.0", + "description": "Backend API service for music chart data scraping", + "main": "src/server.js", + "scripts": { + "start": "node src/server.js", + "dev": "nodemon src/server.js", + "test": "jest" + }, + "dependencies": { + "express": "^4.18.2", + "cors": "^2.8.5", + "helmet": "^7.1.0", + "morgan": "^1.10.0", + "dotenv": "^16.3.1", + "axios": "^1.6.0", + "cheerio": "^1.0.0-rc.12" + }, + "devDependencies": { + "nodemon": "^3.0.1", + "jest": "^29.7.0" + }, + "keywords": ["api", "charts", "music", "scraping", "express"], + "author": "", + "license": "MIT" +} \ No newline at end of file diff --git a/backend/src/.DS_Store b/backend/src/.DS_Store new file mode 100644 index 0000000..79f67f0 Binary files /dev/null and b/backend/src/.DS_Store differ diff --git a/backend/src/controllers/chartController.js b/backend/src/controllers/chartController.js new file mode 100644 index 0000000..69906e3 --- /dev/null +++ b/backend/src/controllers/chartController.js @@ -0,0 +1,71 @@ +const ChartService = require('../models/chartService'); + +// Get available dates for a specific year +const getChartDates = async (req, res) => { + try { + const { year } = req.params; + + // Validate year parameter + const validatedYear = ChartService.validateYear(year); + + const dates = await ChartService.getAvailableDates(validatedYear); + res.json(dates); + } catch (error) { + console.error('Error in getChartDates:', error); + res.status(400).json({ + error: 'Failed to fetch chart dates', + message: error.message + }); + } +}; + +// Get chart data for a specific date +const getChartData = async (req, res) => { + try { + const { date } = req.params; + + if (!date) { + return res.status(400).json({ + error: 'Invalid date parameter', + message: 'Date parameter is required' + }); + } + + // Validate date format + ChartService.validateDate(date); + + const data = await ChartService.getChartData(date); + res.json(data); + } catch (error) { + console.error('Error in getChartData:', error); + res.status(400).json({ + error: 'Failed to fetch chart data', + message: error.message + }); + } +}; + +// Get yearly top songs +const getYearlyTopSongs = async (req, res) => { + try { + const { year } = req.params; + + // Validate year parameter + const validatedYear = ChartService.validateYear(year); + + const yearlySongs = await ChartService.getYearlyTopSongs(validatedYear); + res.json(yearlySongs); + } catch (error) { + console.error('Error in getYearlyTopSongs:', error); + res.status(400).json({ + error: 'Failed to fetch yearly top songs', + message: error.message + }); + } +}; + +module.exports = { + getChartDates, + getChartData, + getYearlyTopSongs +}; \ No newline at end of file diff --git a/backend/src/middleware/errorHandler.js b/backend/src/middleware/errorHandler.js new file mode 100644 index 0000000..756b7b9 --- /dev/null +++ b/backend/src/middleware/errorHandler.js @@ -0,0 +1,35 @@ +const errorHandler = (err, req, res, next) => { + console.error(err.stack); + + // Default error + let error = { + message: err.message || 'Internal Server Error', + status: err.status || 500 + }; + + // Mongoose validation error + if (err.name === 'ValidationError') { + error.message = Object.values(err.errors).map(val => val.message).join(', '); + error.status = 400; + } + + // Mongoose duplicate key error + if (err.code === 11000) { + error.message = 'Duplicate field value entered'; + error.status = 400; + } + + // Mongoose cast error + if (err.name === 'CastError') { + error.message = 'Resource not found'; + error.status = 404; + } + + res.status(error.status).json({ + success: false, + error: error.message, + ...(process.env.NODE_ENV === 'development' && { stack: err.stack }) + }); +}; + +module.exports = errorHandler; \ No newline at end of file diff --git a/backend/src/models/chartService.js b/backend/src/models/chartService.js new file mode 100644 index 0000000..a276b35 --- /dev/null +++ b/backend/src/models/chartService.js @@ -0,0 +1,208 @@ +const axios = require('axios'); +const cheerio = require('cheerio'); + +class ChartService { + static baseUrl = 'https://musicchartsarchive.com'; + + // Get available dates for a specific year by scraping the HTML + static async getAvailableDates(year) { + try { + const url = `${this.baseUrl}/singles-charts/${year}`; + console.log(`Scraping dates from: ${url}`); + + const response = await axios.get(url, { + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36' + }, + timeout: 30000 + }); + + const $ = cheerio.load(response.data); + const dates = []; + + // Find all chart date links in the format: Apr 6, 2024 + $('a[href^="/singles-chart/"]').each((index, element) => { + const href = $(element).attr('href'); + const text = $(element).text().trim(); + + // Extract date from href (e.g., "/singles-chart/2024-04-06" -> "2024-04-06") + const dateMatch = href.match(/\/singles-chart\/(\d{4}-\d{2}-\d{2})/); + if (dateMatch) { + const date = dateMatch[1]; + dates.push({ + date: date, + formattedDate: text + }); + } + }); + + // Sort dates chronologically + dates.sort((a, b) => new Date(a.date) - new Date(b.date)); + + console.log(`Found ${dates.length} dates for year ${year}`); + return dates; + } catch (error) { + console.error(`Error scraping dates for year ${year}:`, error.message); + throw new Error(`Failed to fetch available dates for year ${year}: ${error.message}`); + } + } + + // Get chart data for a specific date by scraping the HTML + static async getChartData(date) { + try { + const url = `${this.baseUrl}/singles-chart/${date}`; + console.log(`Scraping chart data from: ${url}`); + + const response = await axios.get(url, { + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36' + }, + timeout: 30000 + }); + + const $ = cheerio.load(response.data); + const songs = []; + + // Find all table rows in the chart table + $('.chart-table tr').each((index, element) => { + const $row = $(element); + const $cells = $row.find('td'); + + // Skip header rows or rows without enough cells + if ($cells.length < 3) return; + + const order = $cells.eq(0).text().trim(); + const titleLink = $cells.eq(1).find('a'); + const artistLink = $cells.eq(2).find('a'); + + // Skip if no order number (likely header row) + if (!order || isNaN(parseInt(order))) return; + + const title = titleLink.text().trim(); + const artist = artistLink.text().trim(); + + // Only add if we have valid data + if (title && artist) { + songs.push({ + order: parseInt(order), + title: title, + artist: artist + }); + } + }); + + console.log(`Found ${songs.length} songs for date ${date}`); + return songs; + } catch (error) { + console.error(`Error scraping chart data for date ${date}:`, error.message); + throw new Error(`Failed to fetch chart data for date ${date}: ${error.message}`); + } + } + + // Get yearly top songs by analyzing all chart data for a year + static async getYearlyTopSongs(year) { + try { + console.log(`Calculating yearly top songs for ${year}`); + + // Get all available dates for the year + const dates = await this.getAvailableDates(year); + + if (dates.length === 0) { + throw new Error(`No chart data available for year ${year}`); + } + + const songFrequency = {}; + + // Process each date to collect song data + console.log(`Processing ${dates.length} dates for yearly calculation...`); + for (let i = 0; i < dates.length; i++) { + const dateObj = dates[i]; + console.log(`Processing date ${i + 1}/${dates.length}: ${dateObj.date}`); + try { + const songs = await this.getChartData(dateObj.date); + + songs.forEach(song => { + const key = `${song.title}-${song.artist}`; + + if (!songFrequency[key]) { + songFrequency[key] = { + title: song.title, + artist: song.artist, + appearances: 0, + highestPosition: 999, + totalPoints: 0 + }; + } + + songFrequency[key].appearances++; + songFrequency[key].highestPosition = Math.min(songFrequency[key].highestPosition, song.order); + // Reverse scoring: 1st place = 50 points, 50th place = 1 point + songFrequency[key].totalPoints += (51 - song.order); + }); + + // Add a small delay between requests to be respectful to the server + await new Promise(resolve => setTimeout(resolve, 100)); + } catch (error) { + console.warn(`Skipping date ${dateObj.date} due to error: ${error.message}`); + continue; + } + } + + // Convert to array and sort by total points (descending) + const yearlySongs = Object.values(songFrequency) + .sort((a, b) => { + // Primary sort: total points + if (b.totalPoints !== a.totalPoints) { + return b.totalPoints - a.totalPoints; + } + // Secondary sort: highest position (lower is better) + if (a.highestPosition !== b.highestPosition) { + return a.highestPosition - b.highestPosition; + } + // Tertiary sort: number of appearances + return b.appearances - a.appearances; + }) + .slice(0, 50) // Get top 50 + .map((song, index) => ({ + order: index + 1, + title: song.title, + artist: song.artist, + totalPoints: song.totalPoints, + highestPosition: song.highestPosition, + appearances: song.appearances + })); + + console.log(`Calculated yearly top ${yearlySongs.length} songs for ${year}`); + return yearlySongs; + } catch (error) { + console.error(`Error calculating yearly top songs for ${year}:`, error.message); + throw new Error(`Failed to calculate yearly top songs for ${year}: ${error.message}`); + } + } + + // Validate date format (YYYY-MM-DD) + static validateDate(date) { + const dateRegex = /^\d{4}-\d{2}-\d{2}$/; + if (!dateRegex.test(date)) { + throw new Error('Invalid date format. Expected YYYY-MM-DD'); + } + + const parsedDate = new Date(date); + if (isNaN(parsedDate.getTime())) { + throw new Error('Invalid date'); + } + + return true; + } + + // Validate year format + static validateYear(year) { + const yearNum = parseInt(year); + if (isNaN(yearNum) || yearNum < 1970 || yearNum > new Date().getFullYear() + 1) { + throw new Error('Invalid year. Must be between 1970 and current year + 1'); + } + return yearNum; + } +} + +module.exports = ChartService; \ No newline at end of file diff --git a/backend/src/routes/chartRoutes.js b/backend/src/routes/chartRoutes.js new file mode 100644 index 0000000..d3ce73b --- /dev/null +++ b/backend/src/routes/chartRoutes.js @@ -0,0 +1,15 @@ +const express = require('express'); +const chartController = require('../controllers/chartController'); + +const router = express.Router(); + +// Get available dates for a specific year +router.get('/dates/:year', chartController.getChartDates); + +// Get chart data for a specific date +router.get('/data/:date', chartController.getChartData); + +// Get yearly top songs +router.get('/yearly-top/:year', chartController.getYearlyTopSongs); + +module.exports = router; \ No newline at end of file diff --git a/backend/src/server.js b/backend/src/server.js new file mode 100644 index 0000000..ac72fd0 --- /dev/null +++ b/backend/src/server.js @@ -0,0 +1,44 @@ +const express = require('express'); +const cors = require('cors'); +const helmet = require('helmet'); +const morgan = require('morgan'); +require('dotenv').config(); + +const chartRoutes = require('./routes/chartRoutes'); + +const app = express(); +const PORT = process.env.PORT || 3001; + +// Middleware +app.use(helmet()); +app.use(cors()); +app.use(morgan('combined')); +app.use(express.json()); +app.use(express.urlencoded({ extended: true })); + +// Routes +app.use('/api/chart', chartRoutes); + +// Health check endpoint +app.get('/api/health', (req, res) => { + res.json({ status: 'OK', timestamp: new Date().toISOString() }); +}); + +// Error handling middleware +app.use((err, req, res, next) => { + console.error(err.stack); + res.status(500).json({ + error: 'Something went wrong!', + message: process.env.NODE_ENV === 'development' ? err.message : 'Internal server error' + }); +}); + +// 404 handler +app.use('*', (req, res) => { + res.status(404).json({ error: 'Route not found' }); +}); + +app.listen(PORT, () => { + console.log(`Server running on port ${PORT}`); + console.log(`Health check: http://localhost:${PORT}/api/health`); +}); \ No newline at end of file diff --git a/docs/PRD.md b/docs/PRD.md new file mode 100644 index 0000000..b1acf81 --- /dev/null +++ b/docs/PRD.md @@ -0,0 +1,401 @@ +# Product Requirements Document (PRD) +## Music Charts Archive Scraper & Analytics Platform + +--- + +## 📋 **Executive Summary** + +A full-stack web application that scrapes, analyzes, and visualizes music chart data from the Music Charts Archive website. The platform provides both weekly chart views and comprehensive yearly rankings, enabling users to explore historical music trends and download data for further analysis. + +--- + +## 🎯 **Product Vision** + +Create a comprehensive music analytics platform that transforms raw chart data into actionable insights, making historical music trends accessible and analyzable for researchers, music enthusiasts, and data analysts. + +--- + +## 🎵 **Core Features** + +### **1. Data Scraping Engine** +- **Weekly Chart Scraping**: Extract song rankings from individual chart dates +- **Yearly Data Aggregation**: Collect and analyze data across all available dates for a year +- **Real-time Data Fetching**: Live scraping from Music Charts Archive website +- **Error Handling**: Graceful handling of missing data and network issues + +### **2. Weekly Chart View** +- **Date Selection**: Browse available chart dates by year +- **Chart Display**: View top 50 songs with rankings, titles, and artists +- **Data Export**: Download weekly chart data in JSON format +- **Responsive Design**: Mobile and desktop optimized interface + +### **3. Yearly Analytics** +- **Yearly Rankings**: Calculate top songs of the year based on: + - Total points (position-based scoring) + - Highest achieved position + - Number of appearances +- **Smart Algorithm**: Multi-factor ranking system +- **Yearly Export**: Download comprehensive yearly data + +### **4. Data Export System** +- **JSON Format**: Structured data export with metadata +- **File Naming**: Date/year-based file naming convention +- **Metadata Inclusion**: Chart date, total songs, formatted titles + +--- + +## 🔧 **Technical Architecture** + +### **Backend Requirements** + +#### **Core Technologies (Current: Node.js/Express)** +- **Server Framework**: Node.js/Express, Python/Flask, Java/Spring Boot, C#/.NET, Go/Gin +- **Web Scraping**: Cheerio (Node.js), BeautifulSoup (Python), Jsoup (Java), HtmlAgilityPack (C#), goquery (Go) +- **HTTP Client**: Axios (Node.js), requests (Python), OkHttp (Java), HttpClient (C#), net/http (Go) +- **Data Processing**: JavaScript, Python, Java, C#, Go + +#### **API Endpoints** +``` +GET /api/health +- Purpose: Health check endpoint +- Response: Status confirmation + +GET /api/chart/dates/:year +- Purpose: Get available chart dates for a year +- Parameters: year (number) +- Response: Array of date objects with date and formattedDate + +GET /api/chart/data/:date +- Purpose: Get chart data for specific date +- Parameters: date (YYYY-MM-DD format) +- Response: Array of song objects with order, title, artist + +GET /api/chart/yearly-top/:year +- Purpose: Get yearly top songs ranking +- Parameters: year (number) +- Response: Array of top 50 songs with order, title, artist +``` + +#### **Data Models** +```javascript +// Date Object +{ + date: "2024-01-20", + formattedDate: "Jan 20, 2024" +} + +// Song Object +{ + order: 1, + title: "Lovin On Me", + artist: "Jack Harlow" +} + +// Weekly Chart Export +{ + title: "January 20, 2024 - Top Songs", + date: "2024-01-20", + totalSongs: 50, + songs: [Song Object Array] +} + +// Yearly Chart Export +{ + year: 2024, + title: "Top Songs of 2024", + songs: [Song Object Array] +} +``` + +#### **Scraping Logic** +1. **Date Extraction**: Parse HTML for chart date links +2. **Song Data Extraction**: Parse table rows for song information +3. **Data Validation**: Ensure data integrity and completeness +4. **Error Recovery**: Skip problematic dates and continue processing + +#### **Yearly Ranking Algorithm** +```javascript +// Scoring System +- Position Points: 1st = 50 points, 50th = 1 point +- Highest Position: Track best position achieved +- Appearance Count: Number of weeks on charts + +// Sorting Priority +1. Total Points (descending) +2. Highest Position (ascending) +3. Appearance Count (descending) +``` + +### **Frontend Requirements** + +#### **Core Technologies (Current: React)** +- **UI Framework**: React, Vue.js, Angular, Svelte, Flutter (mobile), SwiftUI (iOS), Jetpack Compose (Android) +- **State Management**: React Hooks, Vuex, Redux, NgRx, Svelte stores +- **HTTP Client**: Axios, fetch API, HttpClient +- **Styling**: CSS3, SCSS, Tailwind CSS, Material-UI, Bootstrap + +#### **Component Architecture** +``` +App +├── Layout +├── YearSelector +├── ViewModeSelector (Weekly/Yearly) +├── DateList (Weekly mode) +├── ChartTable +├── YearlyTopSongs +├── DownloadButton +└── YearlyDownloadButton +``` + +#### **State Management** +```javascript +// Core State +{ + selectedYear: number, + selectedDate: string | null, + viewMode: 'weekly' | 'yearly', + dates: DateObject[], + chartData: SongObject[], + yearlySongs: SongObject[] +} + +// Loading States +{ + datesLoading: boolean, + dataLoading: boolean, + yearlyLoading: boolean +} + +// Error States +{ + datesError: string | null, + dataError: string | null, + yearlyError: string | null +} +``` + +#### **User Interface Requirements** +- **Responsive Design**: Mobile-first approach +- **Loading States**: Visual feedback during data fetching +- **Error Handling**: User-friendly error messages +- **Accessibility**: WCAG 2.1 compliance +- **Cross-browser Compatibility**: Modern browser support + +--- + +## 📱 **Mobile Platform Considerations** + +### **iOS (Swift/SwiftUI)** +```swift +// Data Models +struct ChartDate: Codable { + let date: String + let formattedDate: String +} + +struct Song: Codable { + let order: Int + let title: String + let artist: String +} + +// Network Layer +class ChartAPIService { + func fetchChartDates(year: Int) async throws -> [ChartDate] + func fetchChartData(date: String) async throws -> [Song] + func fetchYearlyTopSongs(year: Int) async throws -> [Song] +} + +// UI Components +struct YearSelector: View +struct ChartTableView: View +struct YearlyTopSongsView: View +struct DownloadButton: View +``` + +### **Android (Kotlin/Jetpack Compose)** +```kotlin +// Data Models +data class ChartDate( + val date: String, + val formattedDate: String +) + +data class Song( + val order: Int, + val title: String, + val artist: String +) + +// Network Layer +class ChartAPIService { + suspend fun fetchChartDates(year: Int): List + suspend fun fetchChartData(date: String): List + suspend fun fetchYearlyTopSongs(year: Int): List +} + +// UI Components +@Composable fun YearSelector() +@Composable fun ChartTable() +@Composable fun YearlyTopSongs() +@Composable fun DownloadButton() +``` + +--- + +## 🎵 **Data Flow** + +### **Weekly Chart Flow** +1. User selects year → Fetch available dates +2. User selects date → Fetch chart data +3. Display chart table → Enable download +4. User downloads → Generate JSON file + +### **Yearly Chart Flow** +1. User selects year → Fetch all dates for year +2. System scrapes all dates → Calculate rankings +3. Display yearly top songs → Enable download +4. User downloads → Generate yearly JSON file + +--- + +## 🛠 **Development Guidelines** + +### **Backend Development** +1. **Error Handling**: Implement comprehensive error handling +2. **Rate Limiting**: Respect website terms of service +3. **Caching**: Implement caching for frequently accessed data +4. **Logging**: Comprehensive logging for debugging +5. **Testing**: Unit tests for core algorithms + +### **Frontend Development** +1. **Component Reusability**: Create reusable UI components +2. **State Management**: Centralized state management +3. **Performance**: Optimize for large datasets +4. **User Experience**: Smooth loading and error states +5. **Accessibility**: Screen reader and keyboard navigation support + +### **Mobile Development** +1. **Offline Support**: Cache data for offline viewing +2. **Native Features**: Share functionality, file downloads +3. **Performance**: Optimize for mobile devices +4. **Platform Guidelines**: Follow iOS/Android design guidelines + +--- + +## 📊 **Success Metrics** + +### **Technical Metrics** +- **API Response Time**: < 2 seconds for chart data +- **Scraping Success Rate**: > 95% successful data extraction +- **Error Rate**: < 5% failed requests +- **Uptime**: > 99% availability + +### **User Experience Metrics** +- **Page Load Time**: < 3 seconds +- **User Engagement**: Time spent on platform +- **Download Rate**: Percentage of users downloading data +- **Error Recovery**: Successful error resolution rate + +--- + +## 🔒 **Security & Compliance** + +### **Data Protection** +- **Rate Limiting**: Prevent abuse of scraping endpoints +- **User Agent**: Proper identification in requests +- **Error Handling**: No sensitive data in error messages +- **CORS**: Proper cross-origin resource sharing + +### **Legal Considerations** +- **Terms of Service**: Respect Music Charts Archive terms +- **Data Usage**: Educational and research purposes +- **Attribution**: Proper credit to data source +- **Rate Limiting**: Responsible scraping practices + +--- + +## 🚀 **Future Enhancements** + +### **Phase 2 Features** +- **Historical Trends**: Visual charts showing song performance over time +- **Artist Analytics**: Artist-specific statistics and rankings +- **Genre Analysis**: Genre-based filtering and analysis +- **Advanced Filtering**: Date range, artist, song title filters + +### **Phase 3 Features** +- **User Accounts**: Save favorite charts and analyses +- **Social Features**: Share charts and insights +- **API Access**: Public API for developers +- **Data Visualization**: Interactive charts and graphs + +--- + +## 📝 **Implementation Checklist** + +### **Backend Setup** +- [ ] Choose server framework and language +- [ ] Set up web scraping library +- [ ] Implement API endpoints +- [ ] Create data models +- [ ] Implement yearly ranking algorithm +- [ ] Add error handling and logging +- [ ] Set up testing framework + +### **Frontend Setup** +- [ ] Choose UI framework +- [ ] Set up state management +- [ ] Create reusable components +- [ ] Implement API integration +- [ ] Add download functionality +- [ ] Implement responsive design +- [ ] Add loading and error states + +### **Mobile Setup (if applicable)** +- [ ] Set up mobile development environment +- [ ] Create data models +- [ ] Implement network layer +- [ ] Create UI components +- [ ] Add native features (download, share) +- [ ] Test on devices + +--- + +## 🎯 **Current Implementation Details** + +### **Tech Stack** +- **Backend**: Node.js, Express.js, Cheerio, Axios +- **Frontend**: React 18, Custom Hooks, CSS3 +- **Development**: npm, nodemon + +### **Project Structure** +``` +m/ +├── frontend/ # React frontend application +│ ├── src/ +│ │ ├── components/ # React components +│ │ ├── hooks/ # Custom React hooks +│ │ ├── services/ # API service layer +│ │ ├── App.jsx # Main app component +│ │ ├── index.js # Entry point +│ │ └── styles.css # Global styles +│ ├── public/ +│ └── package.json +└── backend/ # Node.js/Express backend API + ├── src/ + │ ├── routes/ # API routes + │ ├── controllers/ # Route controllers + │ ├── models/ # Data models & scraping logic + │ ├── middleware/ # Express middleware + │ └── server.js # Main server file + └── package.json +``` + +### **Key Files** +- `start.sh` - Startup script for both services +- `README.md` - Setup and usage instructions +- `PRD.md` - This product requirements document + +--- + +This PRD provides a comprehensive blueprint for recreating the Music Charts Archive Scraper in any technology stack, from web frameworks to mobile platforms. The modular architecture and clear data flow make it adaptable to different implementation approaches while maintaining the core functionality and user experience. \ No newline at end of file diff --git a/docs/charts/herse-songList-export.json b/docs/charts/herse-songList-export.json new file mode 100644 index 0000000..64d8e8f --- /dev/null +++ b/docs/charts/herse-songList-export.json @@ -0,0 +1,47812 @@ +[ + { + "songs": [ + { + "artist": "Steve Lacy", + "position": 1, + "title": "Bad Habit" + }, + { + "artist": "Nicky Youre & dazy", + "position": 2, + "title": "Sunroof" + }, + { + "artist": "Kate Bush", + "position": 3, + "title": "Running Up That Hill (A Deal With God)" + }, + { + "artist": "Zach Bryan", + "position": 4, + "title": "Something In The Orange" + }, + { + "artist": "Jelly Roll", + "position": 5, + "title": "Son Of A Sinner" + }, + { + "artist": "Imagine Dragons", + "position": 6, + "title": "Bones" + }, + { + "artist": "Imagine Dragons X JID", + "position": 7, + "title": "Enemy" + }, + { + "artist": "Stephen Sanchez", + "position": 8, + "title": "Until I Found You" + }, + { + "artist": "d4vd", + "position": 9, + "title": "Romantic Homicide" + }, + { + "artist": "GAYLE", + "position": 10, + "title": "abcdefu" + }, + { + "artist": "Steve Lacy", + "position": 11, + "title": "Static" + }, + { + "artist": "Zach Bryan", + "position": 12, + "title": "Oklahoma Smoke Show" + }, + { + "artist": "Foo Fighters", + "position": 13, + "title": "Everlong" + }, + { + "artist": "AJR", + "position": 14, + "title": "World's Smallest Violin" + }, + { + "artist": "Gorillaz Featuring Tame Impala & Bootie Brown", + "position": 15, + "title": "New Gold" + }, + { + "artist": "Cafune", + "position": 16, + "title": "Tek It" + }, + { + "artist": "Metallica", + "position": 17, + "title": "Master Of Puppets" + }, + { + "artist": "Koe Wetzel", + "position": 18, + "title": "Creeps" + }, + { + "artist": "Beach Weather", + "position": 19, + "title": "Sex, Drugs, Etc." + }, + { + "artist": "Noah Kahan", + "position": 20, + "title": "Stick Season" + }, + { + "artist": "Foo Fighters", + "position": 21, + "title": "My Hero" + }, + { + "artist": "Demi Lovato", + "position": 22, + "title": "29" + }, + { + "artist": "Elvis Presley", + "position": 23, + "title": "Suspicious Minds" + }, + { + "artist": "Pierce The Veil", + "position": 24, + "title": "Pass The Nirvana" + }, + { + "artist": "TALK", + "position": 25, + "title": "Run Away To Mars" + }, + { + "artist": "Billie Eilish", + "position": 26, + "title": "TV" + }, + { + "artist": "The 1975", + "position": 27, + "title": "I'm In Love With You" + }, + { + "artist": "Maneskin", + "position": 28, + "title": "Supermodel" + }, + { + "artist": "Imagine Dragons", + "position": 29, + "title": "Sharks" + }, + { + "artist": "Nessa Barrett", + "position": 30, + "title": "Die First" + }, + { + "artist": "Zach Williams", + "position": 31, + "title": "Heart Of God" + }, + { + "artist": "Billie Eilish", + "position": 32, + "title": "The 30th" + }, + { + "artist": "Falling In Reverse", + "position": 33, + "title": "Voices In My Head" + }, + { + "artist": "Gorillaz Featuring Thundercat", + "position": 34, + "title": "Cracker Island" + }, + { + "artist": "CORPSE, Scarlxrd & Kordhell", + "position": 35, + "title": "Misa Misa!" + }, + { + "artist": "Rex Orange County", + "position": 36, + "title": "Amazing" + }, + { + "artist": "Arctic Monkeys", + "position": 37, + "title": "There'd Better Be A Mirrorball" + }, + { + "artist": "Zach Bryan", + "position": 38, + "title": "Sun To Me" + }, + { + "artist": "Zach Bryan", + "position": 39, + "title": "Heavy Eyes" + }, + { + "artist": "Steve Lacy", + "position": 40, + "title": "Mercury" + }, + { + "artist": "Steve Lacy Featuring Foushee", + "position": 41, + "title": "Sunshine" + }, + { + "artist": "Shinedown", + "position": 42, + "title": "Daylight" + }, + { + "artist": "The Killers", + "position": 43, + "title": "Boy" + }, + { + "artist": "Suki Waterhouse", + "position": 44, + "title": "Good Looking" + }, + { + "artist": "Panic! At The Disco", + "position": 45, + "title": "Don't Let The Light Go Out" + }, + { + "artist": "Rex Orange County", + "position": 46, + "title": "The Shade" + }, + { + "artist": "Steve Lacy", + "position": 47, + "title": "Helmet" + }, + { + "artist": "Disturbed", + "position": 48, + "title": "Hey You" + }, + { + "artist": "AJR", + "position": 49, + "title": "I Won't" + }, + { + "artist": "Vance Joy", + "position": 50, + "title": "Clarity" + } + ], + "title": "2022 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Steve Lacy", + "position": 1, + "title": "Bad Habit" + }, + { + "artist": "Lizzo", + "position": 2, + "title": "About Damn Time" + }, + { + "artist": "Nicki Minaj", + "position": 3, + "title": "Super Freaky Girl" + }, + { + "artist": "Future Featuring Drake & Tems", + "position": 4, + "title": "Wait For U" + }, + { + "artist": "Beyonce", + "position": 5, + "title": "Break My Soul" + }, + { + "artist": "Jack Harlow", + "position": 6, + "title": "First Class" + }, + { + "artist": "Drake Featuring 21 Savage", + "position": 7, + "title": "Jimmy Cooks" + }, + { + "artist": "Lil Baby", + "position": 8, + "title": "Detox" + }, + { + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "position": 9, + "title": "Staying Alive" + }, + { + "artist": "Lil Baby", + "position": 10, + "title": "In A Minute" + }, + { + "artist": "Yeat", + "position": 11, + "title": "Talk" + }, + { + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "position": 12, + "title": "God Did" + }, + { + "artist": "Nardo Wick", + "position": 13, + "title": "Dah Dah DahDah" + }, + { + "artist": "Chris Brown", + "position": 14, + "title": "Under The Influence" + }, + { + "artist": "The Weeknd", + "position": 15, + "title": "Die For You" + }, + { + "artist": "Cardi B, Ye & Lil Durk", + "position": 16, + "title": "Hot Shit" + }, + { + "artist": "Tems", + "position": 17, + "title": "Free Mind" + }, + { + "artist": "SleazyWorld Go Featuring Lil Baby", + "position": 18, + "title": "Sleazy Flow" + }, + { + "artist": "Hitkidd & GloRilla", + "position": 19, + "title": "F.N.F. (Let's Go)" + }, + { + "artist": "Lil Tjay", + "position": 20, + "title": "Beat The Odds" + }, + { + "artist": "Drake", + "position": 21, + "title": "Sticky" + }, + { + "artist": "DJ Khaled Featuring Future & SZA", + "position": 22, + "title": "Beautiful" + }, + { + "artist": "Rod Wave", + "position": 23, + "title": "Alone" + }, + { + "artist": "Brent Faiyaz", + "position": 24, + "title": "All Mine" + }, + { + "artist": "Future", + "position": 25, + "title": "Puffin On Zootiez" + }, + { + "artist": "Quavo & Takeoff", + "position": 26, + "title": "Hotel Lobby (Unc And Phew)" + }, + { + "artist": "Steve Lacy", + "position": 27, + "title": "Static" + }, + { + "artist": "Armani White", + "position": 28, + "title": "Billie Eilish." + }, + { + "artist": "Beyonce", + "position": 29, + "title": "Alien Superstar" + }, + { + "artist": "DJ Khaled Featuring Future & Lil Baby", + "position": 30, + "title": "Big Time" + }, + { + "artist": "Beyonce", + "position": 31, + "title": "Cuff It" + }, + { + "artist": "Post Malone Featuring Roddy Ricch", + "position": 32, + "title": "Cooped Up" + }, + { + "artist": "City Girls & Usher", + "position": 33, + "title": "Good Love" + }, + { + "artist": "Ice Spice", + "position": 34, + "title": "Munch (Feelin' U)" + }, + { + "artist": "Diddy & Bryson Tiller", + "position": 35, + "title": "Gotta Move On" + }, + { + "artist": "DJ Khaled Featuring Juice WRLD", + "position": 36, + "title": "Juice WRLD Did" + }, + { + "artist": "GloRilla", + "position": 37, + "title": "Blessed" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 38, + "title": "Vette Motors" + }, + { + "artist": "Finesse2Tymes", + "position": 39, + "title": "Back End" + }, + { + "artist": "NAV, Travis Scott & Lil Baby", + "position": 40, + "title": "Never Sleep" + }, + { + "artist": "Moneybagg Yo", + "position": 41, + "title": "See Wat I'm Sayin" + }, + { + "artist": "Kendrick Lamar, Blxst & Amanda Reifer", + "position": 42, + "title": "Die Hard" + }, + { + "artist": "Pharrell Williams Featuring 21 Savage & Tyler, The Creator", + "position": 43, + "title": "Cash In Cash Out" + }, + { + "artist": "YG", + "position": 44, + "title": "Toxic" + }, + { + "artist": "Beyonce", + "position": 45, + "title": "Church Girl" + }, + { + "artist": "Rod Wave", + "position": 46, + "title": "Sweet Little Lies" + }, + { + "artist": "Chris Brown Featuring WizKid", + "position": 47, + "title": "Call Me Everyday" + }, + { + "artist": "Future", + "position": 48, + "title": "Love You Better" + }, + { + "artist": "Lil Baby, 42 Dugg & Veeze", + "position": 49, + "title": "U-Digg" + }, + { + "artist": "Rod Wave Featuring Jack Harlow", + "position": 50, + "title": "Yungen" + } + ], + "title": "2022 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Nicky Youre & dazy", + "position": 1, + "title": "Sunroof" + }, + { + "artist": "Harry Styles", + "position": 2, + "title": "Late Night Talking" + }, + { + "artist": "Harry Styles", + "position": 3, + "title": "As It Was" + }, + { + "artist": "Lizzo", + "position": 4, + "title": "About Damn Time" + }, + { + "artist": "Post Malone Featuring Doja Cat", + "position": 5, + "title": "I Like You (A Happier Song)" + }, + { + "artist": "Kate Bush", + "position": 6, + "title": "Running Up That Hill (A Deal With God)" + }, + { + "artist": "Doja Cat", + "position": 7, + "title": "Vegas" + }, + { + "artist": "OneRepublic", + "position": 8, + "title": "I Ain't Worried" + }, + { + "artist": "Steve Lacy", + "position": 9, + "title": "Bad Habit" + }, + { + "artist": "Jack Harlow", + "position": 10, + "title": "First Class" + }, + { + "artist": "Halsey", + "position": 11, + "title": "So Good" + }, + { + "artist": "Marshmello & Khalid", + "position": 12, + "title": "Numb" + }, + { + "artist": "Joji", + "position": 13, + "title": "Glimpse Of Us" + }, + { + "artist": "Charlie Puth Featuring Jung Kook", + "position": 14, + "title": "Left And Right" + }, + { + "artist": "Yung Gravy", + "position": 15, + "title": "Betty (Get Money)" + }, + { + "artist": "Lizzo", + "position": 16, + "title": "2 Be Loved (Am I Ready)" + }, + { + "artist": "Elton John & Britney Spears", + "position": 17, + "title": "Hold Me Closer" + }, + { + "artist": "Black Eyed Peas, Shakira + David Guetta", + "position": 18, + "title": "Don't You Worry" + }, + { + "artist": "Beyonce", + "position": 19, + "title": "Break My Soul" + }, + { + "artist": "Harry Styles", + "position": 20, + "title": "Music For A Sushi Restaurant" + }, + { + "artist": "Nicki Minaj", + "position": 21, + "title": "Super Freaky Girl" + }, + { + "artist": "Future Featuring Drake & Tems", + "position": 22, + "title": "Wait For U" + }, + { + "artist": "Jax", + "position": 23, + "title": "Victoria’s Secret" + }, + { + "artist": "Imagine Dragons", + "position": 24, + "title": "Bones" + }, + { + "artist": "Kane Brown", + "position": 25, + "title": "Grand" + }, + { + "artist": "Morgan Wallen", + "position": 26, + "title": "Wasted On You" + }, + { + "artist": "benny blanco, BTS & Snoop Dogg", + "position": 27, + "title": "Bad Decisions" + }, + { + "artist": "Sia", + "position": 28, + "title": "Unstoppable" + }, + { + "artist": "Stephen Sanchez", + "position": 29, + "title": "Until I Found You" + }, + { + "artist": "Pitbull + Zac Brown", + "position": 30, + "title": "Can't Stop Us Now" + }, + { + "artist": "The Weeknd", + "position": 31, + "title": "Die For You" + }, + { + "artist": "Rosa Linn", + "position": 32, + "title": "Snap" + }, + { + "artist": "Ellie Goulding Featuring Big Sean", + "position": 33, + "title": "Easy Lover" + }, + { + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "position": 34, + "title": "Staying Alive" + }, + { + "artist": "Kx5 Featuring Hayla", + "position": 35, + "title": "Escape" + }, + { + "artist": "BLACKPINK", + "position": 36, + "title": "Pink Venom" + }, + { + "artist": "Macklemore Featuring Windser", + "position": 37, + "title": "Maniac" + }, + { + "artist": "Louis Tomlinson", + "position": 38, + "title": "Bigger Than Me" + }, + { + "artist": "David Guetta & Bebe Rexha", + "position": 39, + "title": "I'm Good (Blue)" + }, + { + "artist": "Zedd, Maren Morris & BEAUZ", + "position": 40, + "title": "Make You Say" + } + ], + "title": "2022 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Harry Styles", + "position": 1, + "title": "As It Was" + }, + { + "artist": "Steve Lacy", + "position": 2, + "title": "Bad Habit" + }, + { + "artist": "Harry Styles", + "position": 3, + "title": "Late Night Talking" + }, + { + "artist": "Nicky Youre & dazy", + "position": 4, + "title": "Sunroof" + }, + { + "artist": "Lizzo", + "position": 5, + "title": "About Damn Time" + }, + { + "artist": "Post Malone Featuring Doja Cat", + "position": 6, + "title": "I Like You (A Happier Song)" + }, + { + "artist": "Nicki Minaj", + "position": 7, + "title": "Super Freaky Girl" + }, + { + "artist": "OneRepublic", + "position": 8, + "title": "I Ain't Worried" + }, + { + "artist": "Kate Bush", + "position": 9, + "title": "Running Up That Hill (A Deal With God)" + }, + { + "artist": "Morgan Wallen", + "position": 10, + "title": "You Proof" + }, + { + "artist": "Future Featuring Drake & Tems", + "position": 11, + "title": "Wait For U" + }, + { + "artist": "Bad Bunny & Chencho Corleone", + "position": 12, + "title": "Me Porto Bonito" + }, + { + "artist": "Bad Bunny", + "position": 13, + "title": "Titi Me Pregunto" + }, + { + "artist": "Luke Combs", + "position": 14, + "title": "The Kind Of Love We Make" + }, + { + "artist": "Beyonce", + "position": 15, + "title": "Break My Soul" + }, + { + "artist": "Jack Harlow", + "position": 16, + "title": "First Class" + }, + { + "artist": "Morgan Wallen", + "position": 17, + "title": "Wasted On You" + }, + { + "artist": "Glass Animals", + "position": 18, + "title": "Heat Waves" + }, + { + "artist": "Cole Swindell", + "position": 19, + "title": "She Had Me At Heads Carolina" + }, + { + "artist": "Doja Cat", + "position": 20, + "title": "Vegas" + }, + { + "artist": "Drake Featuring 21 Savage", + "position": 21, + "title": "Jimmy Cooks" + }, + { + "artist": "The Kid LAROI & Justin Bieber", + "position": 22, + "title": "Stay" + }, + { + "artist": "Elton John & Britney Spears", + "position": 23, + "title": "Hold Me Closer" + }, + { + "artist": "Tyler Hubbard", + "position": 24, + "title": "5 Foot 9" + }, + { + "artist": "Lil Baby", + "position": 25, + "title": "Detox" + }, + { + "artist": "Joji", + "position": 26, + "title": "Glimpse Of Us" + }, + { + "artist": "Jon Pardi", + "position": 27, + "title": "Last Night Lonely" + }, + { + "artist": "Bad Bunny", + "position": 28, + "title": "Moscow Mule" + }, + { + "artist": "Latto", + "position": 29, + "title": "Big Energy" + }, + { + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "position": 30, + "title": "Staying Alive" + }, + { + "artist": "Yung Gravy", + "position": 31, + "title": "Betty (Get Money)" + }, + { + "artist": "Zach Bryan", + "position": 32, + "title": "Something In The Orange" + }, + { + "artist": "Justin Bieber", + "position": 33, + "title": "Ghost" + }, + { + "artist": "Ed Sheeran", + "position": 34, + "title": "Shivers" + }, + { + "artist": "Lil Baby", + "position": 35, + "title": "In A Minute" + }, + { + "artist": "Bailey Zimmerman", + "position": 36, + "title": "Rock And A Hard Place" + }, + { + "artist": "Charlie Puth Featuring Jung Kook", + "position": 37, + "title": "Left And Right" + }, + { + "artist": "Bad Bunny", + "position": 38, + "title": "Efecto" + }, + { + "artist": "Jelly Roll", + "position": 39, + "title": "Son Of A Sinner" + }, + { + "artist": "Marshmello & Khalid", + "position": 40, + "title": "Numb" + }, + { + "artist": "Bailey Zimmerman", + "position": 41, + "title": "Fall In Love" + }, + { + "artist": "Yeat", + "position": 42, + "title": "Talk" + }, + { + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "position": 43, + "title": "God Did" + }, + { + "artist": "Karol G", + "position": 44, + "title": "Provenza" + }, + { + "artist": "Sia", + "position": 45, + "title": "Unstoppable" + }, + { + "artist": "David Guetta & Bebe Rexha", + "position": 46, + "title": "I'm Good (Blue)" + }, + { + "artist": "Em Beihold", + "position": 47, + "title": "Numb Little Bug" + }, + { + "artist": "Imagine Dragons", + "position": 48, + "title": "Bones" + }, + { + "artist": "Nardo Wick", + "position": 49, + "title": "Dah Dah DahDah" + }, + { + "artist": "Jax", + "position": 50, + "title": "Victoria’s Secret" + }, + { + "artist": "Karol G x Maldy", + "position": 51, + "title": "Gatubela" + }, + { + "artist": "The Weeknd", + "position": 52, + "title": "Die For You" + }, + { + "artist": "Burna Boy", + "position": 53, + "title": "Last Last" + }, + { + "artist": "Mitchell Tenpenny", + "position": 54, + "title": "Truth About You" + }, + { + "artist": "Cardi B, Ye & Lil Durk", + "position": 55, + "title": "Hot Shit" + }, + { + "artist": "Tems", + "position": 56, + "title": "Free Mind" + }, + { + "artist": "SleazyWorld Go Featuring Lil Baby", + "position": 57, + "title": "Sleazy Flow" + }, + { + "artist": "Halsey", + "position": 58, + "title": "So Good" + }, + { + "artist": "Justin Moore", + "position": 59, + "title": "With A Woman You Love" + }, + { + "artist": "Kane Brown", + "position": 60, + "title": "Like I Love Country Music" + }, + { + "artist": "Ingrid Andress With Sam Hunt", + "position": 61, + "title": "Wishful Drinking" + }, + { + "artist": "Bad Bunny & Rauw Alejandro", + "position": 62, + "title": "Party" + }, + { + "artist": "Rosalia", + "position": 63, + "title": "Despecha" + }, + { + "artist": "Hitkidd & GloRilla", + "position": 64, + "title": "F.N.F. (Let's Go)" + }, + { + "artist": "JVKE", + "position": 65, + "title": "Golden Hour" + }, + { + "artist": "Bad Bunny & Bomba Estereo", + "position": 66, + "title": "Ojitos Lindos" + }, + { + "artist": "BLACKPINK", + "position": 67, + "title": "Pink Venom" + }, + { + "artist": "Lil Tjay", + "position": 68, + "title": "Beat The Odds" + }, + { + "artist": "Drake", + "position": 69, + "title": "Sticky" + }, + { + "artist": "Gabby Barrett", + "position": 70, + "title": "Pick Me Up" + }, + { + "artist": "Nate Smith", + "position": 71, + "title": "Whiskey On You" + }, + { + "artist": "Bad Bunny", + "position": 72, + "title": "Despues de La Playa" + }, + { + "artist": "DJ Khaled Featuring Future & SZA", + "position": 73, + "title": "Beautiful" + }, + { + "artist": "Russell Dickerson & Jake Scott", + "position": 74, + "title": "She Likes It" + }, + { + "artist": "Stephen Sanchez", + "position": 75, + "title": "Until I Found You" + }, + { + "artist": "Carrie Underwood", + "position": 76, + "title": "Ghost Story" + }, + { + "artist": "d4vd", + "position": 77, + "title": "Romantic Homicide" + }, + { + "artist": "Lizzo", + "position": 78, + "title": "2 Be Loved (Am I Ready)" + }, + { + "artist": "Bailey Zimmerman", + "position": 79, + "title": "Where It Ends" + }, + { + "artist": "Rod Wave", + "position": 80, + "title": "Alone" + }, + { + "artist": "Bad Bunny", + "position": 81, + "title": "Neverita" + }, + { + "artist": "Brent Faiyaz", + "position": 82, + "title": "All Mine" + }, + { + "artist": "Bad Bunny & Jhay Cortez", + "position": 83, + "title": "Tarot" + }, + { + "artist": "Jordan Davis", + "position": 84, + "title": "What My World Spins Around" + }, + { + "artist": "Thomas Rhett Featuring Riley Green", + "position": 85, + "title": "Half Of Me" + }, + { + "artist": "Manuel Turizo", + "position": 86, + "title": "La Bachata" + }, + { + "artist": "Harry Styles", + "position": 87, + "title": "Music For A Sushi Restaurant" + }, + { + "artist": "Jackson Dean", + "position": 88, + "title": "Don't Come Lookin'" + }, + { + "artist": "Lee Brice", + "position": 89, + "title": "Soul" + }, + { + "artist": "benny blanco, BTS & Snoop Dogg", + "position": 90, + "title": "Bad Decisions" + }, + { + "artist": "Rema & Selena Gomez", + "position": 91, + "title": "Calm Down" + }, + { + "artist": "Future", + "position": 92, + "title": "Puffin On Zootiez" + }, + { + "artist": "Rosa Linn", + "position": 93, + "title": "Snap" + }, + { + "artist": "Quavo & Takeoff", + "position": 94, + "title": "Hotel Lobby (Unc And Phew)" + }, + { + "artist": "Bizarrap & Quevedo", + "position": 95, + "title": "Bzrp Music Sessions, Vol. 52" + }, + { + "artist": "Morgan Wallen", + "position": 96, + "title": "Thought You Should Know" + }, + { + "artist": "Luke Bryan", + "position": 97, + "title": "Country On" + }, + { + "artist": "Steve Lacy", + "position": 98, + "title": "Static" + }, + { + "artist": "Armani White", + "position": 99, + "title": "Billie Eilish." + }, + { + "artist": "Romeo Santos & Justin Timberlake", + "position": 100, + "title": "Sin Fin" + } + ], + "title": "2022 - Hot 100" + }, + { + "songs": [ + { + "artist": "Morgan Wallen", + "position": 1, + "title": "You Proof" + }, + { + "artist": "Luke Combs", + "position": 2, + "title": "The Kind Of Love We Make" + }, + { + "artist": "Morgan Wallen", + "position": 3, + "title": "Wasted On You" + }, + { + "artist": "Cole Swindell", + "position": 4, + "title": "She Had Me At Heads Carolina" + }, + { + "artist": "Tyler Hubbard", + "position": 5, + "title": "5 Foot 9" + }, + { + "artist": "Jon Pardi", + "position": 6, + "title": "Last Night Lonely" + }, + { + "artist": "Zach Bryan", + "position": 7, + "title": "Something In The Orange" + }, + { + "artist": "Bailey Zimmerman", + "position": 8, + "title": "Rock And A Hard Place" + }, + { + "artist": "Jelly Roll", + "position": 9, + "title": "Son Of A Sinner" + }, + { + "artist": "Bailey Zimmerman", + "position": 10, + "title": "Fall In Love" + }, + { + "artist": "Mitchell Tenpenny", + "position": 11, + "title": "Truth About You" + }, + { + "artist": "Justin Moore", + "position": 12, + "title": "With A Woman You Love" + }, + { + "artist": "Kane Brown", + "position": 13, + "title": "Like I Love Country Music" + }, + { + "artist": "Ingrid Andress With Sam Hunt", + "position": 14, + "title": "Wishful Drinking" + }, + { + "artist": "Gabby Barrett", + "position": 15, + "title": "Pick Me Up" + }, + { + "artist": "Nate Smith", + "position": 16, + "title": "Whiskey On You" + }, + { + "artist": "Russell Dickerson & Jake Scott", + "position": 17, + "title": "She Likes It" + }, + { + "artist": "Carrie Underwood", + "position": 18, + "title": "Ghost Story" + }, + { + "artist": "Bailey Zimmerman", + "position": 19, + "title": "Where It Ends" + }, + { + "artist": "Jordan Davis", + "position": 20, + "title": "What My World Spins Around" + }, + { + "artist": "Thomas Rhett Featuring Riley Green", + "position": 21, + "title": "Half Of Me" + }, + { + "artist": "Jackson Dean", + "position": 22, + "title": "Don't Come Lookin'" + }, + { + "artist": "Lee Brice", + "position": 23, + "title": "Soul" + }, + { + "artist": "Morgan Wallen", + "position": 24, + "title": "Thought You Should Know" + }, + { + "artist": "Luke Bryan", + "position": 25, + "title": "Country On" + }, + { + "artist": "Zach Bryan", + "position": 26, + "title": "Oklahoma Smoke Show" + }, + { + "artist": "Corey Kent", + "position": 27, + "title": "Wild As Her" + }, + { + "artist": "Old Dominion", + "position": 28, + "title": "No Hard Feelings" + }, + { + "artist": "HARDY Featuring Lainey Wilson", + "position": 29, + "title": "Wait In The Truck" + }, + { + "artist": "Chris Stapleton", + "position": 30, + "title": "Joy Of My Life" + }, + { + "artist": "Kelsea Ballerini", + "position": 31, + "title": "Heartfirst" + }, + { + "artist": "Jimmie Allen", + "position": 32, + "title": "Down Home" + }, + { + "artist": "Carly Pearce", + "position": 33, + "title": "What He Didn't Do" + }, + { + "artist": "Zac Brown Band", + "position": 34, + "title": "Out In The Middle" + }, + { + "artist": "BRELAND Featuring Lady A", + "position": 35, + "title": "Told You I Could Drink" + }, + { + "artist": "Hailey Whitters", + "position": 36, + "title": "Everything She Ain't" + }, + { + "artist": "David Morris", + "position": 37, + "title": "Dutton Ranch Freestyle" + }, + { + "artist": "Koe Wetzel", + "position": 38, + "title": "Creeps" + }, + { + "artist": "Jason Aldean", + "position": 39, + "title": "That's What Tequila Does" + }, + { + "artist": "Dustin Lynch", + "position": 40, + "title": "Party Mode" + }, + { + "artist": "Little Big Town", + "position": 41, + "title": "Hell Yeah" + }, + { + "artist": "Parker McCollum", + "position": 42, + "title": "Handle On You" + }, + { + "artist": "Walker Hayes", + "position": 43, + "title": "Y'all Life" + }, + { + "artist": "Drew Green", + "position": 44, + "title": "Good Ol' Man" + }, + { + "artist": "Luke Combs", + "position": 45, + "title": "Tomorrow Me" + }, + { + "artist": "Jordan Davis", + "position": 46, + "title": "Next Thing You Know" + }, + { + "artist": "Frank Ray", + "position": 47, + "title": "Country'd Look Good On You" + }, + { + "artist": "Lainey Wilson", + "position": 48, + "title": "Heart Like A Truck" + }, + { + "artist": "Sam Hunt", + "position": 49, + "title": "Water Under The Bridge" + }, + { + "artist": "Dylan Scott", + "position": 50, + "title": "Can't Have Mine" + } + ], + "title": "2022 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Billie Eilish", + "position": 1, + "title": "Happier Than Ever" + }, + { + "artist": "The Kid LAROI", + "position": 2, + "title": "Without You" + }, + { + "artist": "Glass Animals", + "position": 3, + "title": "Heat Waves" + }, + { + "artist": "Maneskin", + "position": 4, + "title": "Beggin'" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 5, + "title": "My Ex's Best Friend" + }, + { + "artist": "24kGoldn Featuring iann dior", + "position": 6, + "title": "Mood" + }, + { + "artist": "Elle King & Miranda Lambert", + "position": 7, + "title": "Drunk (And I Don't Wanna Go Home)" + }, + { + "artist": "Billie Eilish", + "position": 8, + "title": "NDA" + }, + { + "artist": "Tai Verdes", + "position": 9, + "title": "A-O-K" + }, + { + "artist": "Billie Eilish", + "position": 10, + "title": "Getting Older" + }, + { + "artist": "Billie Eilish", + "position": 11, + "title": "Billie Bossa Nova" + }, + { + "artist": "Billie Eilish", + "position": 12, + "title": "Oxytocin" + }, + { + "artist": "Fleetwood Mac", + "position": 13, + "title": "Dreams" + }, + { + "artist": "Billie Eilish", + "position": 14, + "title": "I Didn't Change My Number" + }, + { + "artist": "AJR", + "position": 15, + "title": "Way Less Sad" + }, + { + "artist": "Billie Eilish", + "position": 16, + "title": "Lost Cause" + }, + { + "artist": "Billie Eilish", + "position": 17, + "title": "Halley's Comet" + }, + { + "artist": "Billie Eilish", + "position": 18, + "title": "Your Power" + }, + { + "artist": "Billie Eilish", + "position": 19, + "title": "Goldwing" + }, + { + "artist": "Billie Eilish", + "position": 20, + "title": "Male Fantasy" + }, + { + "artist": "Olivia Rodrigo", + "position": 21, + "title": "Brutal" + }, + { + "artist": "Maneskin", + "position": 22, + "title": "I Wanna Be Your Slave" + }, + { + "artist": "Willow Featuring Travis Barker", + "position": 23, + "title": "transparentsoul" + }, + { + "artist": "Imagine Dragons", + "position": 24, + "title": "Follow You" + }, + { + "artist": "Billie Eilish", + "position": 25, + "title": "OverHeated" + }, + { + "artist": "Billie Eilish", + "position": 26, + "title": "Everybody Dies" + }, + { + "artist": "Billie Eilish", + "position": 27, + "title": "Not My Responsibility" + }, + { + "artist": "Surf Curse", + "position": 28, + "title": "Freaks" + }, + { + "artist": "Weezer", + "position": 29, + "title": "All My Favorite Songs" + }, + { + "artist": "twenty one pilots", + "position": 30, + "title": "Saturday" + }, + { + "artist": "Imagine Dragons", + "position": 31, + "title": "Wrecked" + }, + { + "artist": "Big Red Machine Featuring Taylor Swift", + "position": 32, + "title": "Renegade" + }, + { + "artist": "Lorde", + "position": 33, + "title": "Solar Power" + }, + { + "artist": "AURORA", + "position": 34, + "title": "Runaway" + }, + { + "artist": "Coldplay", + "position": 35, + "title": "Higher Power" + }, + { + "artist": "Vance Joy", + "position": 36, + "title": "Missing Piece" + }, + { + "artist": "girl in red", + "position": 37, + "title": "Serotonin" + }, + { + "artist": "PinkPantheress", + "position": 38, + "title": "Break It Off" + }, + { + "artist": "John Mayer", + "position": 39, + "title": "Last Train Home" + }, + { + "artist": "Rise Against", + "position": 40, + "title": "Nowhere Generation" + }, + { + "artist": "PinkPantheress", + "position": 41, + "title": "Passion" + }, + { + "artist": "Modest Mouse", + "position": 42, + "title": "We Are Between" + }, + { + "artist": "twenty one pilots", + "position": 43, + "title": "Shy Away" + }, + { + "artist": "Bleachers", + "position": 44, + "title": "Stop Making This Hurt" + }, + { + "artist": "Machine Gun Kelly Featuring Kellin Quinn", + "position": 45, + "title": "Love Race" + }, + { + "artist": "Lorde", + "position": 46, + "title": "Stoned At The Nail Salon" + }, + { + "artist": "Foo Fighters", + "position": 47, + "title": "Making A Fire" + }, + { + "artist": "bbno$ Featuring Rich Brian", + "position": 48, + "title": "Edamame" + }, + { + "artist": "Five Finger Death Punch", + "position": 49, + "title": "Darkness Settles In" + }, + { + "artist": "Clairo", + "position": 50, + "title": "Amoeba" + } + ], + "title": "2021 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Lil Nas X & Jack Harlow", + "position": 1, + "title": "Industry Baby" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 2, + "title": "Leave The Door Open" + }, + { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "position": 3, + "title": "Peaches" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 4, + "title": "Skate" + }, + { + "artist": "Giveon", + "position": 5, + "title": "Heartbreak Anniversary" + }, + { + "artist": "Doja Cat & The Weeknd", + "position": 6, + "title": "You Right" + }, + { + "artist": "Polo G", + "position": 7, + "title": "Rapstar" + }, + { + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "position": 8, + "title": "Every Chance I Get" + }, + { + "artist": "Masked Wolf", + "position": 9, + "title": "Astronaut In The Ocean" + }, + { + "artist": "Roddy Ricch", + "position": 10, + "title": "Late At Night" + }, + { + "artist": "Megan Thee Stallion", + "position": 11, + "title": "Thot Shit" + }, + { + "artist": "Post Malone", + "position": 12, + "title": "Motley Crew" + }, + { + "artist": "Doja Cat", + "position": 13, + "title": "Ain't Shit" + }, + { + "artist": "Moneybagg Yo", + "position": 14, + "title": "Wockesha" + }, + { + "artist": "BIA Featuring Nicki Minaj", + "position": 15, + "title": "Whole Lotta Money" + }, + { + "artist": "Drake Featuring Lil Baby", + "position": 16, + "title": "Wants And Needs" + }, + { + "artist": "Sleepy Hallow", + "position": 17, + "title": "2055" + }, + { + "artist": "Wizkid Featuring Tems", + "position": 18, + "title": "Essence" + }, + { + "artist": "Lil Tjay Featuring 6LACK", + "position": 19, + "title": "Calling My Phone" + }, + { + "artist": "Normani Featuring Cardi B", + "position": 20, + "title": "Wild Side" + }, + { + "artist": "Moneybagg Yo", + "position": 21, + "title": "Time Today" + }, + { + "artist": "Rod Wave", + "position": 22, + "title": "Tombstone" + }, + { + "artist": "DaBaby", + "position": 23, + "title": "Ball If I Want To" + }, + { + "artist": "J. Cole, 21 Savage & Morray", + "position": 24, + "title": "my.life" + }, + { + "artist": "Migos", + "position": 25, + "title": "Straightenin" + }, + { + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "position": 26, + "title": "Not Sober" + }, + { + "artist": "Smiley Featuring Drake", + "position": 27, + "title": "Over The Top" + }, + { + "artist": "H.E.R. Featuring Chris Brown", + "position": 28, + "title": "Come Through" + }, + { + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "position": 29, + "title": "Baddest" + }, + { + "artist": "Lil Baby, Lil Durk & Travis Scott", + "position": 30, + "title": "Hats Off" + }, + { + "artist": "Capella Grey", + "position": 31, + "title": "Gyalis" + }, + { + "artist": "MO3 X OG Bobby Billions", + "position": 32, + "title": "Outside" + }, + { + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "position": 33, + "title": "From The Garden" + }, + { + "artist": "City Girls", + "position": 34, + "title": "Twerkulator" + }, + { + "artist": "Tyler, The Creator Featuring YoungBoy Never Broke Again & Ty Dolla $ign", + "position": 35, + "title": "WUSYANAME" + }, + { + "artist": "Young Thug & Gunna", + "position": 36, + "title": "Ski" + }, + { + "artist": "DaBaby", + "position": 37, + "title": "Red Light Green Light" + }, + { + "artist": "Doja Cat", + "position": 38, + "title": "Woman" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 39, + "title": "Nevada" + }, + { + "artist": "T-Pain & Kehlani", + "position": 40, + "title": "I Like Dat" + }, + { + "artist": "42 Dugg & Roddy Ricch", + "position": 41, + "title": "4 Da Gang" + }, + { + "artist": "Brent Faiyaz Featuring Drake", + "position": 42, + "title": "Wasting Time" + }, + { + "artist": "42 Dugg Featuring Future", + "position": 43, + "title": "Maybach" + }, + { + "artist": "Trippie Redd & Playboi Carti", + "position": 44, + "title": "Miss The Rage" + }, + { + "artist": "Trippie Redd Featuring Lil Uzi Vert", + "position": 45, + "title": "Holy Smokes" + }, + { + "artist": "Wale Featuring Chris Brown", + "position": 46, + "title": "Angles" + }, + { + "artist": "Isaiah Rashad", + "position": 47, + "title": "RIP Young" + }, + { + "artist": "Cochise & $NOT", + "position": 48, + "title": "Tell Em" + }, + { + "artist": "J. Cole & Lil Baby", + "position": 49, + "title": "pride.is.the.devil" + }, + { + "artist": "EST Gee", + "position": 50, + "title": "Lick Back" + } + ], + "title": "2021 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Olivia Rodrigo", + "position": 1, + "title": "Good 4 U" + }, + { + "artist": "Olivia Rodrigo", + "position": 2, + "title": "Deja Vu" + }, + { + "artist": "Doja Cat Featuring SZA", + "position": 3, + "title": "Kiss Me More" + }, + { + "artist": "Lil Nas X", + "position": 4, + "title": "Montero (Call Me By Your Name)" + }, + { + "artist": "Ed Sheeran", + "position": 5, + "title": "Bad Habits" + }, + { + "artist": "Dua Lipa", + "position": 6, + "title": "Levitating" + }, + { + "artist": "The Kid LAROI & Justin Bieber", + "position": 7, + "title": "Stay" + }, + { + "artist": "BTS", + "position": 8, + "title": "Butter" + }, + { + "artist": "Marshmello X Jonas Brothers", + "position": 9, + "title": "Leave Before You Love Me" + }, + { + "artist": "The Weeknd", + "position": 10, + "title": "Save Your Tears" + }, + { + "artist": "Kali Uchis", + "position": 11, + "title": "Telepatia" + }, + { + "artist": "Regard x Troye Sivan x Tate McRae", + "position": 12, + "title": "You" + }, + { + "artist": "Duncan Laurence", + "position": 13, + "title": "Arcade" + }, + { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "position": 14, + "title": "Peaches" + }, + { + "artist": "Doja Cat & The Weeknd", + "position": 15, + "title": "You Right" + }, + { + "artist": "Giveon", + "position": 16, + "title": "Heartbreak Anniversary" + }, + { + "artist": "Dua Lipa", + "position": 17, + "title": "Love Again" + }, + { + "artist": "Ariana Grande", + "position": 18, + "title": "pov" + }, + { + "artist": "Camila Cabello", + "position": 19, + "title": "Don't Go Yet" + }, + { + "artist": "Tate McRae X Khalid", + "position": 20, + "title": "Working" + }, + { + "artist": "Tai Verdes", + "position": 21, + "title": "A-O-K" + }, + { + "artist": "Post Malone", + "position": 22, + "title": "Motley Crew" + }, + { + "artist": "Lil Nas X & Jack Harlow", + "position": 23, + "title": "Industry Baby" + }, + { + "artist": "Kane Brown X blackbear", + "position": 24, + "title": "Memory" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 25, + "title": "Skate" + }, + { + "artist": "The Weeknd", + "position": 26, + "title": "Take My Breath" + }, + { + "artist": "Billie Eilish", + "position": 27, + "title": "NDA" + }, + { + "artist": "Bella Poarch", + "position": 28, + "title": "Build A Bitch" + }, + { + "artist": "Maroon 5", + "position": 29, + "title": "Lost" + }, + { + "artist": "Bazzi", + "position": 30, + "title": "I Like That" + }, + { + "artist": "Pop Smoke Featuring Dua Lipa", + "position": 31, + "title": "Demeanor" + }, + { + "artist": "Olivia Rodrigo", + "position": 32, + "title": "Traitor" + }, + { + "artist": "Normani Featuring Cardi B", + "position": 33, + "title": "Wild Side" + }, + { + "artist": "Maneskin", + "position": 34, + "title": "Beggin'" + }, + { + "artist": "Tones And I", + "position": 35, + "title": "Cloudy Day" + }, + { + "artist": "twenty one pilots", + "position": 36, + "title": "Saturday" + }, + { + "artist": "Dixie Featuring Rubi Rose", + "position": 37, + "title": "Psycho" + }, + { + "artist": "Alessia Cara", + "position": 38, + "title": "Sweet Dream" + }, + { + "artist": "Tesher X Jason Derulo", + "position": 39, + "title": "Jalebi Baby" + }, + { + "artist": "Swedish House Mafia Featuring Ty Dolla $ign & 070 Shake", + "position": 40, + "title": "Lifetime" + } + ], + "title": "2021 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "The Kid LAROI & Justin Bieber", + "position": 1, + "title": "Stay" + }, + { + "artist": "Olivia Rodrigo", + "position": 2, + "title": "Good 4 U" + }, + { + "artist": "Dua Lipa Featuring DaBaby", + "position": 3, + "title": "Levitating" + }, + { + "artist": "BTS", + "position": 4, + "title": "Butter" + }, + { + "artist": "Ed Sheeran", + "position": 5, + "title": "Bad Habits" + }, + { + "artist": "Doja Cat Featuring SZA", + "position": 6, + "title": "Kiss Me More" + }, + { + "artist": "Lil Nas X & Jack Harlow", + "position": 7, + "title": "Industry Baby" + }, + { + "artist": "Lil Nas X", + "position": 8, + "title": "Montero (Call Me By Your Name)" + }, + { + "artist": "Olivia Rodrigo", + "position": 9, + "title": "Deja Vu" + }, + { + "artist": "The Weeknd & Ariana Grande", + "position": 10, + "title": "Save Your Tears" + }, + { + "artist": "Billie Eilish", + "position": 11, + "title": "Happier Than Ever" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 12, + "title": "Leave The Door Open" + }, + { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "position": 13, + "title": "Peaches" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 14, + "title": "Skate" + }, + { + "artist": "Walker Hayes", + "position": 15, + "title": "Fancy Like" + }, + { + "artist": "The Weeknd", + "position": 16, + "title": "Blinding Lights" + }, + { + "artist": "Giveon", + "position": 17, + "title": "Heartbreak Anniversary" + }, + { + "artist": "Doja Cat & The Weeknd", + "position": 18, + "title": "You Right" + }, + { + "artist": "Polo G", + "position": 19, + "title": "Rapstar" + }, + { + "artist": "Marshmello X Jonas Brothers", + "position": 20, + "title": "Leave Before You Love Me" + }, + { + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "position": 21, + "title": "Every Chance I Get" + }, + { + "artist": "The Kid LAROI", + "position": 22, + "title": "Without You" + }, + { + "artist": "Luke Combs", + "position": 23, + "title": "Forever After All" + }, + { + "artist": "Chase Rice Featuring Florida Georgia Line", + "position": 24, + "title": "Drinkin' Beer. Talkin' God. Amen." + }, + { + "artist": "Dan + Shay", + "position": 25, + "title": "Glad You Exist" + }, + { + "artist": "Nelly & Florida Georgia Line", + "position": 26, + "title": "Lil Bit" + }, + { + "artist": "BTS", + "position": 27, + "title": "Permission To Dance" + }, + { + "artist": "Masked Wolf", + "position": 28, + "title": "Astronaut In The Ocean" + }, + { + "artist": "Roddy Ricch", + "position": 29, + "title": "Late At Night" + }, + { + "artist": "Megan Thee Stallion", + "position": 30, + "title": "Thot Shit" + }, + { + "artist": "Glass Animals", + "position": 31, + "title": "Heat Waves" + }, + { + "artist": "Doja Cat", + "position": 32, + "title": "Need To Know" + }, + { + "artist": "Kali Uchis", + "position": 33, + "title": "Telepatia" + }, + { + "artist": "Maroon 5 Featuring Megan Thee Stallion", + "position": 34, + "title": "Beautiful Mistakes" + }, + { + "artist": "Luke Bryan", + "position": 35, + "title": "Waves" + }, + { + "artist": "Chris Young + Kane Brown", + "position": 36, + "title": "Famous Friends" + }, + { + "artist": "Aventura x Bad Bunny", + "position": 37, + "title": "Volvi" + }, + { + "artist": "Saweetie Featuring Doja Cat", + "position": 38, + "title": "Best Friend" + }, + { + "artist": "Post Malone", + "position": 39, + "title": "Motley Crew" + }, + { + "artist": "Cole Swindell", + "position": 40, + "title": "Single Saturday Night" + }, + { + "artist": "Doja Cat", + "position": 41, + "title": "Ain't Shit" + }, + { + "artist": "Moneybagg Yo", + "position": 42, + "title": "Wockesha" + }, + { + "artist": "BIA Featuring Nicki Minaj", + "position": 43, + "title": "Whole Lotta Money" + }, + { + "artist": "Maneskin", + "position": 44, + "title": "Beggin'" + }, + { + "artist": "Lainey Wilson", + "position": 45, + "title": "Things A Man Oughta Know" + }, + { + "artist": "Ryan Hurd With Maren Morris", + "position": 46, + "title": "Chasing After You" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 47, + "title": "My Ex's Best Friend" + }, + { + "artist": "24kGoldn Featuring iann dior", + "position": 48, + "title": "Mood" + }, + { + "artist": "Olivia Rodrigo", + "position": 49, + "title": "Traitor" + }, + { + "artist": "Duncan Laurence", + "position": 50, + "title": "Arcade" + }, + { + "artist": "Thomas Rhett", + "position": 51, + "title": "Country Again" + }, + { + "artist": "Jason Aldean & Carrie Underwood", + "position": 52, + "title": "If I Didn't Love You" + }, + { + "artist": "Sleepy Hallow", + "position": 53, + "title": "2055" + }, + { + "artist": "Wizkid Featuring Tems", + "position": 54, + "title": "Essence" + }, + { + "artist": "Bad Bunny", + "position": 55, + "title": "Yonaguni" + }, + { + "artist": "Rauw Alejandro", + "position": 56, + "title": "Todo de Ti" + }, + { + "artist": "Keith Urban Duet With P!nk", + "position": 57, + "title": "One Too Many" + }, + { + "artist": "Elle King & Miranda Lambert", + "position": 58, + "title": "Drunk (And I Don't Wanna Go Home)" + }, + { + "artist": "Billie Eilish", + "position": 59, + "title": "NDA" + }, + { + "artist": "Justin Moore", + "position": 60, + "title": "We Didn't Have Much" + }, + { + "artist": "Normani Featuring Cardi B", + "position": 61, + "title": "Wild Side" + }, + { + "artist": "Regard x Troye Sivan x Tate McRae", + "position": 62, + "title": "You" + }, + { + "artist": "Camila Cabello", + "position": 63, + "title": "Don't Go Yet" + }, + { + "artist": "Old Dominion", + "position": 64, + "title": "I Was On A Boat That Day" + }, + { + "artist": "Dua Lipa", + "position": 65, + "title": "Love Again" + }, + { + "artist": "Farruko", + "position": 66, + "title": "Pepas" + }, + { + "artist": "Tai Verdes", + "position": 67, + "title": "A-O-K" + }, + { + "artist": "Kane Brown X blackbear", + "position": 68, + "title": "Memory" + }, + { + "artist": "Billie Eilish", + "position": 69, + "title": "Getting Older" + }, + { + "artist": "Billie Eilish", + "position": 70, + "title": "Billie Bossa Nova" + }, + { + "artist": "Rod Wave", + "position": 71, + "title": "Tombstone" + }, + { + "artist": "Billie Eilish", + "position": 72, + "title": "Oxytocin" + }, + { + "artist": "DaBaby", + "position": 73, + "title": "Ball If I Want To" + }, + { + "artist": "J. Cole, 21 Savage & Morray", + "position": 74, + "title": "my.life" + }, + { + "artist": "Jason Aldean", + "position": 75, + "title": "Blame It On You" + }, + { + "artist": "Migos", + "position": 76, + "title": "Straightenin" + }, + { + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "position": 77, + "title": "Not Sober" + }, + { + "artist": "Smiley Featuring Drake", + "position": 78, + "title": "Over The Top" + }, + { + "artist": "Jameson Rodgers Featuring Luke Combs", + "position": 79, + "title": "Cold Beer Calling My Name" + }, + { + "artist": "Billie Eilish", + "position": 80, + "title": "I Didn't Change My Number" + }, + { + "artist": "AJR", + "position": 81, + "title": "Way Less Sad" + }, + { + "artist": "H.E.R. Featuring Chris Brown", + "position": 82, + "title": "Come Through" + }, + { + "artist": "Elvie Shane", + "position": 83, + "title": "My Boy" + }, + { + "artist": "Billie Eilish", + "position": 84, + "title": "Lost Cause" + }, + { + "artist": "Nio Garcia X J Balvin X Bad Bunny", + "position": 85, + "title": "AM" + }, + { + "artist": "Olivia Rodrigo", + "position": 86, + "title": "Favorite Crime" + }, + { + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "position": 87, + "title": "Baddest" + }, + { + "artist": "Lee Brice", + "position": 88, + "title": "Memory I Don't Mess With" + }, + { + "artist": "Chris Stapleton", + "position": 89, + "title": "You Should Probably Leave" + }, + { + "artist": "Billie Eilish", + "position": 90, + "title": "Halley's Comet" + }, + { + "artist": "Billie Eilish", + "position": 91, + "title": "My Future" + }, + { + "artist": "Bella Poarch", + "position": 92, + "title": "Build A Bitch" + }, + { + "artist": "Olivia Rodrigo", + "position": 93, + "title": "Happier" + }, + { + "artist": "Lil Baby, Lil Durk & Travis Scott", + "position": 94, + "title": "Hats Off" + }, + { + "artist": "Capella Grey", + "position": 95, + "title": "Gyalis" + }, + { + "artist": "Scotty McCreery", + "position": 96, + "title": "You Time" + }, + { + "artist": "Los Legendarios, Wisin & Jhay Cortez", + "position": 97, + "title": "Fiel" + }, + { + "artist": "MO3 X OG Bobby Billions", + "position": 98, + "title": "Outside" + }, + { + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "position": 99, + "title": "From The Garden" + }, + { + "artist": "Tate McRae X Khalid", + "position": 100, + "title": "Working" + } + ], + "title": "2021 - Hot 100" + }, + { + "songs": [ + { + "artist": "Walker Hayes", + "position": 1, + "title": "Fancy Like" + }, + { + "artist": "Luke Combs", + "position": 2, + "title": "Forever After All" + }, + { + "artist": "Chase Rice Featuring Florida Georgia Line", + "position": 3, + "title": "Drinkin' Beer. Talkin' God. Amen." + }, + { + "artist": "Dan + Shay", + "position": 4, + "title": "Glad You Exist" + }, + { + "artist": "Nelly & Florida Georgia Line", + "position": 5, + "title": "Lil Bit" + }, + { + "artist": "Luke Bryan", + "position": 6, + "title": "Waves" + }, + { + "artist": "Chris Young + Kane Brown", + "position": 7, + "title": "Famous Friends" + }, + { + "artist": "Cole Swindell", + "position": 8, + "title": "Single Saturday Night" + }, + { + "artist": "Lainey Wilson", + "position": 9, + "title": "Things A Man Oughta Know" + }, + { + "artist": "Ryan Hurd With Maren Morris", + "position": 10, + "title": "Chasing After You" + }, + { + "artist": "Thomas Rhett", + "position": 11, + "title": "Country Again" + }, + { + "artist": "Jason Aldean & Carrie Underwood", + "position": 12, + "title": "If I Didn't Love You" + }, + { + "artist": "Keith Urban Duet With P!nk", + "position": 13, + "title": "One Too Many" + }, + { + "artist": "Elle King & Miranda Lambert", + "position": 14, + "title": "Drunk (And I Don't Wanna Go Home)" + }, + { + "artist": "Justin Moore", + "position": 15, + "title": "We Didn't Have Much" + }, + { + "artist": "Old Dominion", + "position": 16, + "title": "I Was On A Boat That Day" + }, + { + "artist": "Kane Brown X blackbear", + "position": 17, + "title": "Memory" + }, + { + "artist": "Jameson Rodgers Featuring Luke Combs", + "position": 18, + "title": "Cold Beer Calling My Name" + }, + { + "artist": "Elvie Shane", + "position": 19, + "title": "My Boy" + }, + { + "artist": "Lee Brice", + "position": 20, + "title": "Memory I Don't Mess With" + }, + { + "artist": "Chris Stapleton", + "position": 21, + "title": "You Should Probably Leave" + }, + { + "artist": "Scotty McCreery", + "position": 22, + "title": "You Time" + }, + { + "artist": "Luke Combs", + "position": 23, + "title": "Cold As You" + }, + { + "artist": "Carly Pearce", + "position": 24, + "title": "Next Girl" + }, + { + "artist": "Kenny Chesney", + "position": 25, + "title": "Knowing You" + }, + { + "artist": "Jordan Davis Featuring Luke Bryan", + "position": 26, + "title": "Buy Dirt" + }, + { + "artist": "Dustin Lynch Featuring Lauren Alaina Or MacKenzie Porter", + "position": 27, + "title": "Thinking 'Bout You" + }, + { + "artist": "Parker McCollum", + "position": 28, + "title": "To Be Loved By You" + }, + { + "artist": "Morgan Wallen", + "position": 29, + "title": "Sand In My Boots" + }, + { + "artist": "Lady A", + "position": 30, + "title": "Like A Lady" + }, + { + "artist": "Jimmie Allen & Brad Paisley", + "position": 31, + "title": "Freedom Was A Highway" + }, + { + "artist": "Michael Ray", + "position": 32, + "title": "Whiskey And Rain" + }, + { + "artist": "Zac Brown Band", + "position": 33, + "title": "Same Boat" + }, + { + "artist": "Jon Pardi", + "position": 34, + "title": "Tequila Little Time" + }, + { + "artist": "Priscilla Block", + "position": 35, + "title": "Just About Over You" + }, + { + "artist": "Dierks Bentley, Breland & HARDY", + "position": 36, + "title": "Beers On Me" + }, + { + "artist": "Kelsea Ballerini Featuring Kenny Chesney", + "position": 37, + "title": "Half Of My Hometown" + }, + { + "artist": "Russell Dickerson", + "position": 38, + "title": "Home Sweet" + }, + { + "artist": "HARDY", + "position": 39, + "title": "Give Heaven Some Hell" + }, + { + "artist": "Chase Matthew", + "position": 40, + "title": "County Line" + }, + { + "artist": "Aaron Lewis", + "position": 41, + "title": "Am I The Only One" + }, + { + "artist": "Dan + Shay", + "position": 42, + "title": "Good Things" + }, + { + "artist": "Breland Featuring Keith Urban", + "position": 43, + "title": "Throw It Back" + }, + { + "artist": "Brett Young", + "position": 44, + "title": "Not Yet" + }, + { + "artist": "Kelsea Ballerini & LANY", + "position": 45, + "title": "I Quit Drinking" + }, + { + "artist": "Callista Clark", + "position": 46, + "title": "It's 'Cause I Am" + }, + { + "artist": "Garth Brooks", + "position": 47, + "title": "That's What Cowboys Do" + }, + { + "artist": "Mitchell Tenpenny", + "position": 48, + "title": "Truth About You" + }, + { + "artist": "Riley Green", + "position": 49, + "title": "If It Wasn't For Trucks" + }, + { + "artist": "Ingrid Andress", + "position": 50, + "title": "Lady Like" + } + ], + "title": "2021 - Country-Songs" + }, + { + "songs": [ + { + "artist": "24kGoldn Featuring iann dior", + "position": 1, + "title": "Mood" + }, + { + "artist": "Billie Eilish", + "position": 2, + "title": "Therefore I Am" + }, + { + "artist": "AJR", + "position": 3, + "title": "Bang!" + }, + { + "artist": "Juice WRLD x Marshmello", + "position": 4, + "title": "Come & Go" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 5, + "title": "My Ex's Best Friend" + }, + { + "artist": "Taylor Swift Featuring Bon Iver", + "position": 6, + "title": "Exile" + }, + { + "artist": "Clairo", + "position": 7, + "title": "Sofia" + }, + { + "artist": "Miley Cyrus", + "position": 8, + "title": "Plastic Hearts" + }, + { + "artist": "Machine Gun Kelly", + "position": 9, + "title": "Bloody Valentine" + }, + { + "artist": "Taylor Swift", + "position": 10, + "title": "Cardigan" + }, + { + "artist": "Wallows Featuring Clairo", + "position": 11, + "title": "Are You Bored Yet?" + }, + { + "artist": "Miley Cyrus Featuring Billy Idol", + "position": 12, + "title": "Night Crawling" + }, + { + "artist": "Miley Cyrus", + "position": 13, + "title": "WTF Do I Know" + }, + { + "artist": "Machine Gun Kelly & Halsey", + "position": 14, + "title": "Forget Me Too" + }, + { + "artist": "Glass Animals", + "position": 15, + "title": "Heat Waves" + }, + { + "artist": "Miley Cyrus", + "position": 16, + "title": "Gimme What I Want" + }, + { + "artist": "All Time Low Featuring blackbear", + "position": 17, + "title": "Monsters" + }, + { + "artist": "Miley Cyrus", + "position": 18, + "title": "High" + }, + { + "artist": "Miley Cyrus Featuring Joan Jett", + "position": 19, + "title": "Bad Karma" + }, + { + "artist": "BANNERS", + "position": 20, + "title": "Someone To You" + }, + { + "artist": "347aidan", + "position": 21, + "title": "Dancing In My Room" + }, + { + "artist": "Foo Fighters", + "position": 22, + "title": "Shame Shame" + }, + { + "artist": "Billie Eilish", + "position": 23, + "title": "My Future" + }, + { + "artist": "Royal & The Serpent", + "position": 24, + "title": "Overwhelmed" + }, + { + "artist": "Peach Tree Rascals", + "position": 25, + "title": "Mariposa" + }, + { + "artist": "Miley Cyrus", + "position": 26, + "title": "Zombie" + }, + { + "artist": "Taylor Swift", + "position": 27, + "title": "My Tears Ricochet" + }, + { + "artist": "Taylor Swift", + "position": 28, + "title": "August" + }, + { + "artist": "NEEDTOBREATHE", + "position": 29, + "title": "Who Am I" + }, + { + "artist": "AC/DC", + "position": 30, + "title": "Shot In The Dark" + }, + { + "artist": "Cannons", + "position": 31, + "title": "Fire For You" + }, + { + "artist": "Sista_Prod Featuring Subvrbs", + "position": 32, + "title": "Eyes Blue Like The Atlantic" + }, + { + "artist": "Taylor Swift", + "position": 33, + "title": "This Is Me Trying" + }, + { + "artist": "Taylor Swift", + "position": 34, + "title": "Mirrorball" + }, + { + "artist": "Penelope Scott", + "position": 35, + "title": "Rat" + }, + { + "artist": "Tai Verdes", + "position": 36, + "title": "Drugs" + }, + { + "artist": "Taylor Swift", + "position": 37, + "title": "Seven" + }, + { + "artist": "Machine Gun Kelly", + "position": 38, + "title": "Drunk Face" + }, + { + "artist": "Frances Forever", + "position": 39, + "title": "Space Girl" + }, + { + "artist": "Royal Blood", + "position": 40, + "title": "Trouble's Coming" + }, + { + "artist": "Tame Impala", + "position": 41, + "title": "Is It True" + }, + { + "artist": "Stellar", + "position": 42, + "title": "Ashes" + }, + { + "artist": "Bastille", + "position": 43, + "title": "Survivin'" + }, + { + "artist": "Tones And I", + "position": 44, + "title": "Fly Away" + }, + { + "artist": "Coldplay", + "position": 45, + "title": "Christmas Lights" + }, + { + "artist": "CORPSE", + "position": 46, + "title": "Miss You!" + }, + { + "artist": "Zach Bryan", + "position": 47, + "title": "Heading South" + }, + { + "artist": "ILLENIUM", + "position": 48, + "title": "Nightlight" + }, + { + "artist": "Taylor Swift", + "position": 49, + "title": "Mad Woman" + }, + { + "artist": "I Prevail Featuring Delaney Jane", + "position": 50, + "title": "Every Time You Leave" + } + ], + "title": "2020 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Drake Featuring Lil Durk", + "position": 1, + "title": "Laugh Now Cry Later" + }, + { + "artist": "The Weeknd", + "position": 2, + "title": "Blinding Lights" + }, + { + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "position": 3, + "title": "Lemonade" + }, + { + "artist": "Megan Thee Stallion", + "position": 4, + "title": "Body" + }, + { + "artist": "Chris Brown & Young Thug", + "position": 5, + "title": "Go Crazy" + }, + { + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "position": 6, + "title": "For The Night" + }, + { + "artist": "Cardi B Featuring Megan Thee Stallion", + "position": 7, + "title": "WAP" + }, + { + "artist": "DaBaby Featuring Roddy Ricch", + "position": 8, + "title": "Rockstar" + }, + { + "artist": "Moneybagg Yo", + "position": 9, + "title": "Said Sum" + }, + { + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "position": 10, + "title": "Whats Poppin" + }, + { + "artist": "Lil Nas X", + "position": 11, + "title": "Holiday" + }, + { + "artist": "Pop Smoke", + "position": 12, + "title": "What You Know Bout Love" + }, + { + "artist": "CJ", + "position": 13, + "title": "Whoopty" + }, + { + "artist": "Rod Wave Featuring ATR Son Son", + "position": 14, + "title": "Rags2Riches" + }, + { + "artist": "21 Savage & Metro Boomin Featuring Drake", + "position": 15, + "title": "Mr. Right Now" + }, + { + "artist": "Pop Smoke Featuring 50 Cent & Roddy Ricch", + "position": 16, + "title": "The Woo" + }, + { + "artist": "Jhene Aiko Featuring H.E.R.", + "position": 17, + "title": "B.S." + }, + { + "artist": "Pop Smoke Featuring Lil Tjay", + "position": 18, + "title": "Mood Swings" + }, + { + "artist": "BRS Kash", + "position": 19, + "title": "Throat Baby (Go Baby)" + }, + { + "artist": "King Von", + "position": 20, + "title": "Took Her To The O" + }, + { + "artist": "Megan Thee Stallion Featuring Young Thug", + "position": 21, + "title": "Don't Stop" + }, + { + "artist": "SZA Featuring Ty Dolla $ign", + "position": 22, + "title": "Hit Different" + }, + { + "artist": "Jack Harlow", + "position": 23, + "title": "Tyler Herro" + }, + { + "artist": "Saweetie Featuring Jhene Aiko", + "position": 24, + "title": "Back To The Streets" + }, + { + "artist": "Polo G", + "position": 25, + "title": "Martin & Gina" + }, + { + "artist": "Travis Scott Featuring Young Thug & M.I.A.", + "position": 26, + "title": "Franchise" + }, + { + "artist": "DaBaby", + "position": 27, + "title": "Practice" + }, + { + "artist": "Ne-Yo & Jeremih", + "position": 28, + "title": "U 2 Luv" + }, + { + "artist": "DJ Khaled Featuring Drake", + "position": 29, + "title": "Popstar" + }, + { + "artist": "Future & Lil Uzi Vert", + "position": 30, + "title": "Drankin N Smokin" + }, + { + "artist": "Money Man Featuring Lil Baby", + "position": 31, + "title": "24" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 32, + "title": "Kacey Talk" + }, + { + "artist": "DDG", + "position": 33, + "title": "Moonwalking In Calabasas" + }, + { + "artist": "H.E.R.", + "position": 34, + "title": "Damage" + }, + { + "artist": "21 Savage & Metro Boomin", + "position": 35, + "title": "Runnin" + }, + { + "artist": "DaBaby Featuring Young Thug", + "position": 36, + "title": "Blind" + }, + { + "artist": "Lil Yachty, Future & Playboi Carti", + "position": 37, + "title": "Flex Up" + }, + { + "artist": "Meek Mill Featuring Lil Durk", + "position": 38, + "title": "Pain Away" + }, + { + "artist": "Megan Thee Stallion Featuring DaBaby", + "position": 39, + "title": "Cry Baby" + }, + { + "artist": "DJ Chose Featuring BeatKing", + "position": 40, + "title": "Thick" + }, + { + "artist": "Pop Smoke Featuring A Boogie Wit da Hoodie", + "position": 41, + "title": "Hello" + }, + { + "artist": "K Camp Featuring Jacquees", + "position": 42, + "title": "What's On Your Mind" + }, + { + "artist": "Ty Dolla $ign Featuring Post Malone", + "position": 43, + "title": "Spicy" + }, + { + "artist": "Future & Lil Uzi Vert", + "position": 44, + "title": "That's It" + }, + { + "artist": "Yung Bleu Featuring Drake", + "position": 45, + "title": "You're Mines Still" + }, + { + "artist": "Juice WRLD & The Weeknd", + "position": 46, + "title": "Smile" + }, + { + "artist": "King Von Featuring Lil Durk", + "position": 47, + "title": "Crazy Story 2.0" + }, + { + "artist": "Kid LAROI & Juice WRLD", + "position": 48, + "title": "Go!" + }, + { + "artist": "Usher", + "position": 49, + "title": "Bad Habits" + }, + { + "artist": "Big Sean Featuring Post Malone", + "position": 50, + "title": "Wolves" + } + ], + "title": "2020 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "24kGoldn Featuring iann dior", + "position": 1, + "title": "Mood" + }, + { + "artist": "Ava Max", + "position": 2, + "title": "Kings & Queens" + }, + { + "artist": "Ariana Grande", + "position": 3, + "title": "Positions" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 4, + "title": "Holy" + }, + { + "artist": "Gabby Barrett Featuring Charlie Puth", + "position": 5, + "title": "I Hope" + }, + { + "artist": "BTS", + "position": 6, + "title": "Dynamite" + }, + { + "artist": "surf mesa Featuring Emilee", + "position": 7, + "title": "ily" + }, + { + "artist": "Kane Brown With Swae Lee & Khalid", + "position": 8, + "title": "Be Like That" + }, + { + "artist": "Dua Lipa Featuring DaBaby", + "position": 9, + "title": "Levitating" + }, + { + "artist": "AJR", + "position": 10, + "title": "Bang!" + }, + { + "artist": "Drake Featuring Lil Durk", + "position": 11, + "title": "Laugh Now Cry Later" + }, + { + "artist": "The Weeknd", + "position": 12, + "title": "Blinding Lights" + }, + { + "artist": "Jawsh 685 x Jason Derulo", + "position": 13, + "title": "Savage Love (Laxed - Siren Beat)" + }, + { + "artist": "Chris Brown & Young Thug", + "position": 14, + "title": "Go Crazy" + }, + { + "artist": "Sam Smith", + "position": 15, + "title": "Diamonds" + }, + { + "artist": "Billie Eilish", + "position": 16, + "title": "Therefore I Am" + }, + { + "artist": "Justin Bieber & benny blanco", + "position": 17, + "title": "Lonely" + }, + { + "artist": "Harry Styles", + "position": 18, + "title": "Golden" + }, + { + "artist": "Shawn Mendes & Justin Bieber", + "position": 19, + "title": "Monster" + }, + { + "artist": "Ariana Grande", + "position": 20, + "title": "34+35" + }, + { + "artist": "Zoe Wees", + "position": 21, + "title": "Control" + }, + { + "artist": "Bebe Rexha Featuring Doja Cat", + "position": 22, + "title": "Baby, I'm Jealous" + }, + { + "artist": "Jason Derulo", + "position": 23, + "title": "Take You Dancing" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 24, + "title": "My Ex's Best Friend" + }, + { + "artist": "Tate McRae", + "position": 25, + "title": "You Broke Me First." + }, + { + "artist": "Why Don't We", + "position": 26, + "title": "Fallin'" + }, + { + "artist": "Lil Nas X", + "position": 27, + "title": "Holiday" + }, + { + "artist": "Ritt Momney", + "position": 28, + "title": "Put Your Records On" + }, + { + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "position": 29, + "title": "Lemonade" + }, + { + "artist": "Miley Cyrus Featuring Dua Lipa", + "position": 30, + "title": "Prisoner" + }, + { + "artist": "Conan Gray", + "position": 31, + "title": "Heather" + }, + { + "artist": "Pop Smoke", + "position": 32, + "title": "What You Know Bout Love" + }, + { + "artist": "Zara Larsson", + "position": 33, + "title": "Wow" + }, + { + "artist": "The Weeknd", + "position": 34, + "title": "Save Your Tears" + }, + { + "artist": "Joel Corry X MNEK", + "position": 35, + "title": "Head & Heart" + }, + { + "artist": "Juice WRLD x Marshmello", + "position": 36, + "title": "Come & Go" + }, + { + "artist": "Shawn Mendes", + "position": 37, + "title": "Wonder" + }, + { + "artist": "G-Eazy Featuring blackbear", + "position": 38, + "title": "Hate The Way" + }, + { + "artist": "Maluma & The Weeknd", + "position": 39, + "title": "Hawai" + }, + { + "artist": "The Kid LAROI", + "position": 40, + "title": "So Done" + } + ], + "title": "2020 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "24kGoldn Featuring iann dior", + "position": 1, + "title": "Mood" + }, + { + "artist": "Mariah Carey", + "position": 2, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Ariana Grande", + "position": 3, + "title": "Positions" + }, + { + "artist": "Brenda Lee", + "position": 4, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Bad Bunny & Jhay Cortez", + "position": 5, + "title": "Dakiti" + }, + { + "artist": "Drake Featuring Lil Durk", + "position": 6, + "title": "Laugh Now Cry Later" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 7, + "title": "Holy" + }, + { + "artist": "Gabby Barrett Featuring Charlie Puth", + "position": 8, + "title": "I Hope" + }, + { + "artist": "Bobby Helms", + "position": 9, + "title": "Jingle Bell Rock" + }, + { + "artist": "BTS", + "position": 10, + "title": "Dynamite" + }, + { + "artist": "The Weeknd", + "position": 11, + "title": "Blinding Lights" + }, + { + "artist": "Andy Williams", + "position": 12, + "title": "It's The Most Wonderful Time Of The Year" + }, + { + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "position": 13, + "title": "Lemonade" + }, + { + "artist": "Megan Thee Stallion", + "position": 14, + "title": "Body" + }, + { + "artist": "Chris Brown & Young Thug", + "position": 15, + "title": "Go Crazy" + }, + { + "artist": "Jose Feliciano", + "position": 16, + "title": "Feliz Navidad" + }, + { + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "position": 17, + "title": "For The Night" + }, + { + "artist": "Nat King Cole", + "position": 18, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Ava Max", + "position": 19, + "title": "Kings & Queens" + }, + { + "artist": "Billie Eilish", + "position": 20, + "title": "Therefore I Am" + }, + { + "artist": "Wham!", + "position": 21, + "title": "Last Christmas" + }, + { + "artist": "Dean Martin", + "position": 22, + "title": "Let It Snow, Let It Snow, Let It Snow" + }, + { + "artist": "The Ronettes", + "position": 23, + "title": "Sleigh Ride" + }, + { + "artist": "Burl Ives", + "position": 24, + "title": "A Holly Jolly Christmas" + }, + { + "artist": "Ariana Grande", + "position": 25, + "title": "34+35" + }, + { + "artist": "Dua Lipa Featuring DaBaby", + "position": 26, + "title": "Levitating" + }, + { + "artist": "AJR", + "position": 27, + "title": "Bang!" + }, + { + "artist": "BTS", + "position": 28, + "title": "Life Goes On" + }, + { + "artist": "Jawsh 685 x Jason Derulo", + "position": 29, + "title": "Savage Love (Laxed - Siren Beat)" + }, + { + "artist": "Kelly Clarkson", + "position": 30, + "title": "Underneath The Tree" + }, + { + "artist": "Kane Brown With Swae Lee & Khalid", + "position": 31, + "title": "Be Like That" + }, + { + "artist": "Morgan Wallen", + "position": 32, + "title": "More Than My Hometown" + }, + { + "artist": "Cardi B Featuring Megan Thee Stallion", + "position": 33, + "title": "WAP" + }, + { + "artist": "Andy Williams", + "position": 34, + "title": "Happy Holiday / The Holiday Season" + }, + { + "artist": "DaBaby Featuring Roddy Ricch", + "position": 35, + "title": "Rockstar" + }, + { + "artist": "Gene Autry", + "position": 36, + "title": "Here Comes Santa Claus (Right Down Santa Claus Lane)" + }, + { + "artist": "Bing Crosby", + "position": 37, + "title": "White Christmas" + }, + { + "artist": "Shawn Mendes & Justin Bieber", + "position": 38, + "title": "Monster" + }, + { + "artist": "Michael Buble", + "position": 39, + "title": "It's Beginning To Look A Lot Like Christmas" + }, + { + "artist": "Gene Autry", + "position": 40, + "title": "Rudolph The Red-Nosed Reindeer" + }, + { + "artist": "Darlene Love", + "position": 41, + "title": "Christmas (Baby Please Come Home)" + }, + { + "artist": "Lewis Capaldi", + "position": 42, + "title": "Before You Go" + }, + { + "artist": "surf mesa Featuring Emilee", + "position": 43, + "title": "ily" + }, + { + "artist": "Moneybagg Yo", + "position": 44, + "title": "Said Sum" + }, + { + "artist": "Perry Como And The Fontane Sisters With Mitchell Ayres And His Orchestra", + "position": 45, + "title": "It's Beginning To Look A Lot Like Christmas" + }, + { + "artist": "Justin Bieber & benny blanco", + "position": 46, + "title": "Lonely" + }, + { + "artist": "Perry Como", + "position": 47, + "title": "(There's No Place Like) Home For The Holidays" + }, + { + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "position": 48, + "title": "Whats Poppin" + }, + { + "artist": "Blake Shelton Featuring Gwen Stefani", + "position": 49, + "title": "Happy Anywhere" + }, + { + "artist": "Harry Styles", + "position": 50, + "title": "Watermelon Sugar" + }, + { + "artist": "Lil Nas X", + "position": 51, + "title": "Holiday" + }, + { + "artist": "Pop Smoke", + "position": 52, + "title": "What You Know Bout Love" + }, + { + "artist": "Bad Bunny & ROSALIA", + "position": 53, + "title": "La Noche de Anoche" + }, + { + "artist": "Maluma & The Weeknd", + "position": 54, + "title": "Hawai" + }, + { + "artist": "Luke Combs", + "position": 55, + "title": "Better Together" + }, + { + "artist": "Chris Lane", + "position": 56, + "title": "Big, Big Plans" + }, + { + "artist": "Miley Cyrus", + "position": 57, + "title": "Midnight Sky" + }, + { + "artist": "Sam Smith", + "position": 58, + "title": "Diamonds" + }, + { + "artist": "Miley Cyrus Featuring Dua Lipa", + "position": 59, + "title": "Prisoner" + }, + { + "artist": "Bad Bunny", + "position": 60, + "title": "Te Mudaste" + }, + { + "artist": "Russell Dickerson", + "position": 61, + "title": "Love You Like I Used To" + }, + { + "artist": "Chris Stapleton", + "position": 62, + "title": "Starting Over" + }, + { + "artist": "Jon Pardi", + "position": 63, + "title": "Ain't Always The Cowboy" + }, + { + "artist": "Bad Bunny", + "position": 64, + "title": "Yo Visto Asi" + }, + { + "artist": "Trey Lewis", + "position": 65, + "title": "Dicked Down In Dallas" + }, + { + "artist": "Dan + Shay", + "position": 66, + "title": "I Should Probably Go To Bed" + }, + { + "artist": "Tate McRae", + "position": 67, + "title": "You Broke Me First." + }, + { + "artist": "Luke Combs", + "position": 68, + "title": "Forever After All" + }, + { + "artist": "CJ", + "position": 69, + "title": "Whoopty" + }, + { + "artist": "21 Savage & Metro Boomin Featuring Drake", + "position": 70, + "title": "Mr. Right Now" + }, + { + "artist": "Jhene Aiko Featuring H.E.R.", + "position": 71, + "title": "B.S." + }, + { + "artist": "Bad Bunny", + "position": 72, + "title": "Haciendo Que Me Amas" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 73, + "title": "My Ex's Best Friend" + }, + { + "artist": "Bad Bunny", + "position": 74, + "title": "Te Deseo Lo Mejor" + }, + { + "artist": "Kelly Clarkson & Brett Eldredge", + "position": 75, + "title": "Under The Mistletoe" + }, + { + "artist": "Morgan Wallen", + "position": 76, + "title": "7 Summers" + }, + { + "artist": "Shawn Mendes", + "position": 77, + "title": "Wonder" + }, + { + "artist": "Bad Bunny", + "position": 78, + "title": "Booker T" + }, + { + "artist": "Bad Bunny", + "position": 79, + "title": "El Mundo Es Mio" + }, + { + "artist": "Ariana Grande", + "position": 80, + "title": "pov" + }, + { + "artist": "Bad Bunny", + "position": 81, + "title": "Hoy Cobre" + }, + { + "artist": "Lady A", + "position": 82, + "title": "Champagne Night" + }, + { + "artist": "Justin Bieber", + "position": 83, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Morgan Wallen", + "position": 84, + "title": "Somebody's Problem" + }, + { + "artist": "BRS Kash", + "position": 85, + "title": "Throat Baby (Go Baby)" + }, + { + "artist": "Morgan Wallen", + "position": 86, + "title": "Still Goin Down" + }, + { + "artist": "Bad Bunny", + "position": 87, + "title": "Maldita Pobreza" + }, + { + "artist": "King Von", + "position": 88, + "title": "Took Her To The O" + }, + { + "artist": "Megan Thee Stallion Featuring Young Thug", + "position": 89, + "title": "Don't Stop" + }, + { + "artist": "SZA Featuring Ty Dolla $ign", + "position": 90, + "title": "Hit Different" + }, + { + "artist": "Jack Harlow", + "position": 91, + "title": "Tyler Herro" + }, + { + "artist": "Harry Styles", + "position": 92, + "title": "Golden" + }, + { + "artist": "Niko Moon", + "position": 93, + "title": "Good Time" + }, + { + "artist": "Bad Bunny", + "position": 94, + "title": "La Droga" + }, + { + "artist": "Carrie Underwood", + "position": 95, + "title": "Favorite Time Of Year" + }, + { + "artist": "Saweetie Featuring Jhene Aiko", + "position": 96, + "title": "Back To The Streets" + }, + { + "artist": "Polo G", + "position": 97, + "title": "Martin & Gina" + }, + { + "artist": "Kelsea Ballerini", + "position": 98, + "title": "Hole In The Bottle" + }, + { + "artist": "The Kid LAROI", + "position": 99, + "title": "So Done" + }, + { + "artist": "Karol G", + "position": 100, + "title": "Bichota" + } + ], + "title": "2020 - Hot 100" + }, + { + "songs": [ + { + "artist": "Gabby Barrett", + "position": 1, + "title": "I Hope" + }, + { + "artist": "Morgan Wallen", + "position": 2, + "title": "More Than My Hometown" + }, + { + "artist": "Blake Shelton Featuring Gwen Stefani", + "position": 3, + "title": "Happy Anywhere" + }, + { + "artist": "Parker McCollum", + "position": 4, + "title": "Pretty Heart" + }, + { + "artist": "Luke Combs", + "position": 5, + "title": "Better Together" + }, + { + "artist": "Chris Lane", + "position": 6, + "title": "Big, Big Plans" + }, + { + "artist": "Lee Brice", + "position": 7, + "title": "One Of Them Girls" + }, + { + "artist": "HARDY Featuring Lauren Alaina & Devin Dawson", + "position": 8, + "title": "One Beer" + }, + { + "artist": "Russell Dickerson", + "position": 9, + "title": "Love You Like I Used To" + }, + { + "artist": "Chris Stapleton", + "position": 10, + "title": "Starting Over" + }, + { + "artist": "Jon Pardi", + "position": 11, + "title": "Ain't Always The Cowboy" + }, + { + "artist": "Trey Lewis", + "position": 12, + "title": "Dicked Down In Dallas" + }, + { + "artist": "Dan + Shay", + "position": 13, + "title": "I Should Probably Go To Bed" + }, + { + "artist": "Luke Combs", + "position": 14, + "title": "Forever After All" + }, + { + "artist": "Kelly Clarkson & Brett Eldredge", + "position": 15, + "title": "Under The Mistletoe" + }, + { + "artist": "Morgan Wallen", + "position": 16, + "title": "7 Summers" + }, + { + "artist": "Lady A", + "position": 17, + "title": "Champagne Night" + }, + { + "artist": "Morgan Wallen", + "position": 18, + "title": "Somebody's Problem" + }, + { + "artist": "Morgan Wallen", + "position": 19, + "title": "Still Goin Down" + }, + { + "artist": "Niko Moon", + "position": 20, + "title": "Good Time" + }, + { + "artist": "Carrie Underwood", + "position": 21, + "title": "Favorite Time Of Year" + }, + { + "artist": "Kelsea Ballerini", + "position": 22, + "title": "Hole In The Bottle" + }, + { + "artist": "Kenny Chesney", + "position": 23, + "title": "Happy Does" + }, + { + "artist": "Thomas Rhett", + "position": 24, + "title": "What's Your Country Song" + }, + { + "artist": "Darius Rucker", + "position": 25, + "title": "Beers And Sunshine" + }, + { + "artist": "Carrie Underwood", + "position": 26, + "title": "Silent Night" + }, + { + "artist": "Florida Georgia Line", + "position": 27, + "title": "Long Live" + }, + { + "artist": "Gabby Barrett", + "position": 28, + "title": "The Good Ones" + }, + { + "artist": "Luke Bryan", + "position": 29, + "title": "Down To One" + }, + { + "artist": "Carrie Underwood & John Legend", + "position": 30, + "title": "Hallelujah" + }, + { + "artist": "Keith Urban Duet With P!nk", + "position": 31, + "title": "One Too Many" + }, + { + "artist": "Dustin Lynch", + "position": 32, + "title": "Momma's House" + }, + { + "artist": "Jordan Davis", + "position": 33, + "title": "Almost Maybes" + }, + { + "artist": "Dan + Shay", + "position": 34, + "title": "Take Me Home For Christmas" + }, + { + "artist": "Parmalee x Blanco Brown", + "position": 35, + "title": "Just The Way" + }, + { + "artist": "Morgan Wallen", + "position": 36, + "title": "Livin' The Dream" + }, + { + "artist": "Rascal Flatts", + "position": 37, + "title": "How They Remember You" + }, + { + "artist": "Eric Church", + "position": 38, + "title": "Hell Of A View" + }, + { + "artist": "Brett Young", + "position": 39, + "title": "Lady" + }, + { + "artist": "Sam Hunt", + "position": 40, + "title": "Breaking Up Was Easy In The 90's" + }, + { + "artist": "Dierks Bentley", + "position": 41, + "title": "Gone" + }, + { + "artist": "Little Big Town", + "position": 42, + "title": "Wine, Beer, Whiskey" + }, + { + "artist": "Miranda Lambert", + "position": 43, + "title": "Settling Down" + }, + { + "artist": "Tenille Arts", + "position": 44, + "title": "Somebody Like That" + }, + { + "artist": "Brothers Osborne", + "position": 45, + "title": "All Night" + }, + { + "artist": "Garth Brooks & Trisha Yearwood", + "position": 46, + "title": "Shallow" + }, + { + "artist": "Maren Morris", + "position": 47, + "title": "To Hell & Back" + }, + { + "artist": "Taylor Swift", + "position": 48, + "title": "Betty" + }, + { + "artist": "Nelly & Florida Georgia Line", + "position": 49, + "title": "Lil Bit" + }, + { + "artist": "Dylan Scott", + "position": 50, + "title": "Nobody" + } + ], + "title": "2020 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Panic! At The Disco", + "position": 1, + "title": "High Hopes" + }, + { + "artist": "Panic! At The Disco", + "position": 2, + "title": "Hey Look Ma, I Made It" + }, + { + "artist": "Marshmello, YUNGBLUD & blackbear", + "position": 3, + "title": "Tongue Tied" + }, + { + "artist": "Coldplay", + "position": 4, + "title": "Orphans" + }, + { + "artist": "twenty one pilots", + "position": 5, + "title": "The Hype" + }, + { + "artist": "Highly Suspect", + "position": 6, + "title": "16" + }, + { + "artist": "Machine Gun Kelly X YUNGBLUD X Travis Barker", + "position": 7, + "title": "I Think I'm OKAY" + }, + { + "artist": "Meg Myers", + "position": 8, + "title": "Running Up That Hill" + }, + { + "artist": "Weezer", + "position": 9, + "title": "The End Of The Game" + }, + { + "artist": "Ozzy Osbourne", + "position": 10, + "title": "Under The Graveyard" + }, + { + "artist": "Green Day", + "position": 11, + "title": "Father Of All..." + }, + { + "artist": "Cage The Elephant", + "position": 12, + "title": "Social Cues" + }, + { + "artist": "Rex Orange County", + "position": 13, + "title": "10/10" + }, + { + "artist": "Cory Marks Featuring Travis Tritt, Ivan Moody & Mick Mars", + "position": 14, + "title": "Outlaws & Outsiders" + }, + { + "artist": "Dermot Kennedy", + "position": 15, + "title": "Outnumbered" + }, + { + "artist": "Tool", + "position": 16, + "title": "Fear Inoculum" + }, + { + "artist": "White Reaper", + "position": 17, + "title": "Might Be Right" + }, + { + "artist": "girl in red", + "position": 18, + "title": "we fell in love in october" + }, + { + "artist": "Fall Out Boy Featuring Wyclef Jean", + "position": 19, + "title": "Dear Future Self (Hands Up)" + }, + { + "artist": "Local Natives", + "position": 20, + "title": "When Am I Gonna Lose You" + }, + { + "artist": "Bad Wolves", + "position": 21, + "title": "Killing Me Slowly" + }, + { + "artist": "AJR", + "position": 22, + "title": "Dear Winter" + }, + { + "artist": "The Black Keys", + "position": 23, + "title": "Go" + }, + { + "artist": "Neon Trees", + "position": 24, + "title": "Used To Like" + }, + { + "artist": "Blink-182", + "position": 25, + "title": "I Really Wish I Hated You" + }, + { + "artist": "Badflower", + "position": 26, + "title": "The Jester" + }, + { + "artist": "YUNGBLUD Featuring Dan Reynolds", + "position": 27, + "title": "Original Me" + }, + { + "artist": "Mumford & Sons", + "position": 28, + "title": "Blind Leading The Blind" + }, + { + "artist": "Tame Impala", + "position": 29, + "title": "It Might Be Time" + }, + { + "artist": "Papa Roach", + "position": 30, + "title": "Come Around" + }, + { + "artist": "Bring Me The Horizon", + "position": 31, + "title": "Ludens" + }, + { + "artist": "Dayglow", + "position": 32, + "title": "Can I Call You Tonight?" + }, + { + "artist": "Skillet", + "position": 33, + "title": "Legendary" + }, + { + "artist": "The Lumineers", + "position": 34, + "title": "Life In The City" + }, + { + "artist": "Dinosaur Pile-Up", + "position": 35, + "title": "Back Foot" + }, + { + "artist": "AWOLNATION", + "position": 36, + "title": "The Best" + }, + { + "artist": "ONE OK ROCK", + "position": 37, + "title": "Stand Out Fit In" + }, + { + "artist": "Rex Orange County", + "position": 38, + "title": "Pluto Projector" + }, + { + "artist": "I Prevail", + "position": 39, + "title": "Hurricane" + }, + { + "artist": "Coldplay", + "position": 40, + "title": "Everyday Life" + }, + { + "artist": "guardin", + "position": 41, + "title": "i think you're really cool" + }, + { + "artist": "The Unlikely Candidates", + "position": 42, + "title": "Novocaine" + }, + { + "artist": "Beach Bunny", + "position": 43, + "title": "Prom Queen" + }, + { + "artist": "YUNGBLUD", + "position": 44, + "title": "Parents" + }, + { + "artist": "Falling In Reverse", + "position": 45, + "title": "Popular Monster" + }, + { + "artist": "Cold War Kids", + "position": 46, + "title": "Complainer" + }, + { + "artist": "Beck", + "position": 47, + "title": "Uneventful Days" + }, + { + "artist": "HAIM", + "position": 48, + "title": "Now I'm In It" + }, + { + "artist": "X Ambassadors", + "position": 49, + "title": "Hold You Down" + }, + { + "artist": "Of Monsters And Men", + "position": 50, + "title": "Wars" + } + ], + "title": "2019 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Lizzo", + "position": 1, + "title": "Good As Hell" + }, + { + "artist": "Chris Brown Featuring Drake", + "position": 2, + "title": "No Guidance" + }, + { + "artist": "Lizzo", + "position": 3, + "title": "Truth Hurts" + }, + { + "artist": "Lil Nas X", + "position": 4, + "title": "Panini" + }, + { + "artist": "Arizona Zervas", + "position": 5, + "title": "Roxanne" + }, + { + "artist": "Travis Scott", + "position": 6, + "title": "HIGHEST IN THE ROOM" + }, + { + "artist": "Lil Baby", + "position": 7, + "title": "Woah" + }, + { + "artist": "DaBaby", + "position": 8, + "title": "BOP" + }, + { + "artist": "Mustard Featuring Roddy Ricch", + "position": 9, + "title": "Ballin'" + }, + { + "artist": "Young Thug Featuring Gunna", + "position": 10, + "title": "Hot" + }, + { + "artist": "Lil Tecca", + "position": 11, + "title": "Ran$om" + }, + { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "position": 12, + "title": "Bandit" + }, + { + "artist": "Wale Featuring Jeremih", + "position": 13, + "title": "On Chill" + }, + { + "artist": "Post Malone Featuring Young Thug", + "position": 14, + "title": "Goodbyes" + }, + { + "artist": "Lil Baby & DaBaby", + "position": 15, + "title": "Baby" + }, + { + "artist": "Summer Walker", + "position": 16, + "title": "Playing Games" + }, + { + "artist": "Chris Brown Featuring Gunna", + "position": 17, + "title": "Heat" + }, + { + "artist": "blackbear", + "position": 18, + "title": "Hot Girl Bummer" + }, + { + "artist": "NF", + "position": 19, + "title": "Time" + }, + { + "artist": "Tory Lanez & T-Pain", + "position": 20, + "title": "Jerry Sprunger" + }, + { + "artist": "Drake Featuring Rick Ross", + "position": 21, + "title": "Money In The Grave" + }, + { + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "position": 22, + "title": "Reply" + }, + { + "artist": "Doja Cat & Tyga", + "position": 23, + "title": "Juicy" + }, + { + "artist": "Kanye West", + "position": 24, + "title": "Follow God" + }, + { + "artist": "Rod Wave", + "position": 25, + "title": "Heart On Ice" + }, + { + "artist": "Jhene Aiko Featuring Big Sean", + "position": 26, + "title": "None Of Your Concern" + }, + { + "artist": "YNW Melly & 9lokknine", + "position": 27, + "title": "223's" + }, + { + "artist": "NLE Choppa", + "position": 28, + "title": "Camelot" + }, + { + "artist": "DaBaby", + "position": 29, + "title": "VIBEZ" + }, + { + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "position": 30, + "title": "Leave Em Alone" + }, + { + "artist": "DaBaby Featuring Offset", + "position": 31, + "title": "Baby Sitter" + }, + { + "artist": "Tory Lanez Featuring Chris Brown", + "position": 32, + "title": "The Take" + }, + { + "artist": "Post Malone Featuring DaBaby", + "position": 33, + "title": "Enemies" + }, + { + "artist": "Trevor Daniel", + "position": 34, + "title": "Falling" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 35, + "title": "Make No Sense" + }, + { + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "position": 36, + "title": "Hot Girl Summer" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 37, + "title": "Lonely Child" + }, + { + "artist": "Lil Mosey x Gunna", + "position": 38, + "title": "Stuck In A Dream" + }, + { + "artist": "Joji", + "position": 39, + "title": "Slow Dancing In The Dark" + }, + { + "artist": "Tory Lanez Featuring Snoop Dogg", + "position": 40, + "title": "Beauty In The Benz" + }, + { + "artist": "DaniLeigh Featuring Chris Brown", + "position": 41, + "title": "Easy" + }, + { + "artist": "Khalid", + "position": 42, + "title": "Up All Night" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 43, + "title": "Self Control" + }, + { + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "position": 44, + "title": "Hot Shower" + }, + { + "artist": "Trippie Redd Featuring DaBaby", + "position": 45, + "title": "Death" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 46, + "title": "Hot Now" + }, + { + "artist": "Summer Walker & Usher", + "position": 47, + "title": "Come Thru" + }, + { + "artist": "Tory Lanez Featuring Jagged Edge & Jermaine Dupri", + "position": 48, + "title": "The Trade" + }, + { + "artist": "Russ & BIA", + "position": 49, + "title": "BEST ON EARTH" + }, + { + "artist": "Alicia Keys Featuring Miguel", + "position": 50, + "title": "Show Me Love" + } + ], + "title": "2019 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Lizzo", + "position": 1, + "title": "Good As Hell" + }, + { + "artist": "Post Malone", + "position": 2, + "title": "Circles" + }, + { + "artist": "Lewis Capaldi", + "position": 3, + "title": "Someone You Loved" + }, + { + "artist": "Jonas Brothers", + "position": 4, + "title": "Only Human" + }, + { + "artist": "SHAED", + "position": 5, + "title": "Trampoline" + }, + { + "artist": "Ed Sheeran Featuring Khalid", + "position": 6, + "title": "Beautiful People" + }, + { + "artist": "Lizzo", + "position": 7, + "title": "Truth Hurts" + }, + { + "artist": "Maroon 5", + "position": 8, + "title": "Memories" + }, + { + "artist": "Selena Gomez", + "position": 9, + "title": "Lose You To Love Me" + }, + { + "artist": "Sam Smith", + "position": 10, + "title": "How Do You Sleep?" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 11, + "title": "Senorita" + }, + { + "artist": "NF", + "position": 12, + "title": "Time" + }, + { + "artist": "Lil Nas X", + "position": 13, + "title": "Panini" + }, + { + "artist": "Halsey", + "position": 14, + "title": "Graveyard" + }, + { + "artist": "Dan + Shay & Justin Bieber", + "position": 15, + "title": "10,000 Hours" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "Lover" + }, + { + "artist": "Marshmello & Kane Brown", + "position": 17, + "title": "One Thing Right" + }, + { + "artist": "Dua Lipa", + "position": 18, + "title": "Don't Start Now" + }, + { + "artist": "Tones And I", + "position": 19, + "title": "Dance Monkey" + }, + { + "artist": "Billie Eilish", + "position": 20, + "title": "All The Good Girls Go To Hell" + }, + { + "artist": "Niall Horan", + "position": 21, + "title": "Nice To Meet Ya" + }, + { + "artist": "Camila Cabello", + "position": 22, + "title": "Liar" + }, + { + "artist": "Why Don't We", + "position": 23, + "title": "What Am I" + }, + { + "artist": "blackbear", + "position": 24, + "title": "Hot Girl Bummer" + }, + { + "artist": "Saweetie", + "position": 25, + "title": "My Type" + }, + { + "artist": "Kesha Featuring Big Freedia", + "position": 26, + "title": "Raising Hell" + }, + { + "artist": "Diplo Presents Thomas Wesley With Jonas Brothers", + "position": 27, + "title": "Lonely" + }, + { + "artist": "5 Seconds Of Summer", + "position": 28, + "title": "Teeth" + }, + { + "artist": "French Montana Featuring Post Malone, Cardi B & Rvssian", + "position": 29, + "title": "Writing On The Wall" + }, + { + "artist": "Arizona Zervas", + "position": 30, + "title": "Roxanne" + }, + { + "artist": "AJ Mitchell & Ava Max", + "position": 31, + "title": "Slow Dance" + }, + { + "artist": "Travis Scott", + "position": 32, + "title": "HIGHEST IN THE ROOM" + }, + { + "artist": "Lauv Featuring Anne-Marie", + "position": 33, + "title": "fuck, i'm lonely" + }, + { + "artist": "Chris Brown Featuring Drake", + "position": 34, + "title": "No Guidance" + }, + { + "artist": "BTS Featuring Lauv", + "position": 35, + "title": "Make It Right" + }, + { + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "position": 36, + "title": "Take What You Want" + }, + { + "artist": "Loud Luxury And Bryce Vine", + "position": 37, + "title": "I'm Not Alright" + }, + { + "artist": "Charlie Puth", + "position": 38, + "title": "Mother" + }, + { + "artist": "Public", + "position": 39, + "title": "Make You Mine" + }, + { + "artist": "Zedd & Kehlani", + "position": 40, + "title": "Good Thing" + } + ], + "title": "2019 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Post Malone", + "position": 1, + "title": "Circles" + }, + { + "artist": "Lewis Capaldi", + "position": 2, + "title": "Someone You Loved" + }, + { + "artist": "Lizzo", + "position": 3, + "title": "Good As Hell" + }, + { + "artist": "Maroon 5", + "position": 4, + "title": "Memories" + }, + { + "artist": "Selena Gomez", + "position": 5, + "title": "Lose You To Love Me" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 6, + "title": "Senorita" + }, + { + "artist": "Chris Brown Featuring Drake", + "position": 7, + "title": "No Guidance" + }, + { + "artist": "Billie Eilish", + "position": 8, + "title": "everything i wanted" + }, + { + "artist": "Dan + Shay & Justin Bieber", + "position": 9, + "title": "10,000 Hours" + }, + { + "artist": "Lizzo", + "position": 10, + "title": "Truth Hurts" + }, + { + "artist": "Lil Nas X", + "position": 11, + "title": "Panini" + }, + { + "artist": "Arizona Zervas", + "position": 12, + "title": "Roxanne" + }, + { + "artist": "SHAED", + "position": 13, + "title": "Trampoline" + }, + { + "artist": "Travis Scott", + "position": 14, + "title": "HIGHEST IN THE ROOM" + }, + { + "artist": "Taylor Swift", + "position": 15, + "title": "Lover" + }, + { + "artist": "Lil Baby", + "position": 16, + "title": "Woah" + }, + { + "artist": "Billie Eilish", + "position": 17, + "title": "Bad Guy" + }, + { + "artist": "DaBaby", + "position": 18, + "title": "BOP" + }, + { + "artist": "Tones And I", + "position": 19, + "title": "Dance Monkey" + }, + { + "artist": "Mustard Featuring Roddy Ricch", + "position": 20, + "title": "Ballin'" + }, + { + "artist": "Young Thug Featuring Gunna", + "position": 21, + "title": "Hot" + }, + { + "artist": "Old Dominion", + "position": 22, + "title": "One Man Band" + }, + { + "artist": "Ed Sheeran Featuring Khalid", + "position": 23, + "title": "Beautiful People" + }, + { + "artist": "Jonas Brothers", + "position": 24, + "title": "Only Human" + }, + { + "artist": "Luke Combs", + "position": 25, + "title": "Even Though I'm Leaving" + }, + { + "artist": "Lil Tecca", + "position": 26, + "title": "Ran$om" + }, + { + "artist": "Lil Nas X Featuring Billy Ray Cyrus", + "position": 27, + "title": "Old Town Road" + }, + { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "position": 28, + "title": "Bandit" + }, + { + "artist": "Wale Featuring Jeremih", + "position": 29, + "title": "On Chill" + }, + { + "artist": "Ed Sheeran & Justin Bieber", + "position": 30, + "title": "I Don't Care" + }, + { + "artist": "Mariah Carey", + "position": 31, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Khalid", + "position": 32, + "title": "Talk" + }, + { + "artist": "Post Malone Featuring Young Thug", + "position": 33, + "title": "Goodbyes" + }, + { + "artist": "Lil Baby & DaBaby", + "position": 34, + "title": "Baby" + }, + { + "artist": "Sam Smith", + "position": 35, + "title": "How Do You Sleep?" + }, + { + "artist": "Summer Walker", + "position": 36, + "title": "Playing Games" + }, + { + "artist": "Chris Brown Featuring Gunna", + "position": 37, + "title": "Heat" + }, + { + "artist": "Jonas Brothers", + "position": 38, + "title": "Sucker" + }, + { + "artist": "Halsey", + "position": 39, + "title": "Graveyard" + }, + { + "artist": "DaBaby", + "position": 40, + "title": "Suge" + }, + { + "artist": "blackbear", + "position": 41, + "title": "Hot Girl Bummer" + }, + { + "artist": "Dua Lipa", + "position": 42, + "title": "Don't Start Now" + }, + { + "artist": "NF", + "position": 43, + "title": "Time" + }, + { + "artist": "Tory Lanez & T-Pain", + "position": 44, + "title": "Jerry Sprunger" + }, + { + "artist": "Marshmello & Kane Brown", + "position": 45, + "title": "One Thing Right" + }, + { + "artist": "Drake Featuring Rick Ross", + "position": 46, + "title": "Money In The Grave" + }, + { + "artist": "Lady Antebellum", + "position": 47, + "title": "What If I Never Get Over You" + }, + { + "artist": "Sam Smith & Normani", + "position": 48, + "title": "Dancing With A Stranger" + }, + { + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "position": 49, + "title": "Reply" + }, + { + "artist": "Maren Morris", + "position": 50, + "title": "The Bones" + }, + { + "artist": "Doja Cat & Tyga", + "position": 51, + "title": "Juicy" + }, + { + "artist": "Kanye West", + "position": 52, + "title": "Follow God" + }, + { + "artist": "Thomas Rhett", + "position": 53, + "title": "Remember You Young" + }, + { + "artist": "Rod Wave", + "position": 54, + "title": "Heart On Ice" + }, + { + "artist": "Jhene Aiko Featuring Big Sean", + "position": 55, + "title": "None Of Your Concern" + }, + { + "artist": "YNW Melly & 9lokknine", + "position": 56, + "title": "223's" + }, + { + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "position": 57, + "title": "Take What You Want" + }, + { + "artist": "NLE Choppa", + "position": 58, + "title": "Camelot" + }, + { + "artist": "DaBaby", + "position": 59, + "title": "VIBEZ" + }, + { + "artist": "Harry Styles", + "position": 60, + "title": "Watermelon Sugar" + }, + { + "artist": "Matt Stell", + "position": 61, + "title": "Prayed For You" + }, + { + "artist": "Sam Hunt", + "position": 62, + "title": "Kinfolks" + }, + { + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "position": 63, + "title": "Leave Em Alone" + }, + { + "artist": "DaBaby Featuring Offset", + "position": 64, + "title": "Baby Sitter" + }, + { + "artist": "Keith Urban", + "position": 65, + "title": "We Were" + }, + { + "artist": "Tory Lanez Featuring Chris Brown", + "position": 66, + "title": "The Take" + }, + { + "artist": "Jon Pardi", + "position": 67, + "title": "Heartache Medication" + }, + { + "artist": "Post Malone Featuring DaBaby", + "position": 68, + "title": "Enemies" + }, + { + "artist": "Ellie Goulding & Juice WRLD", + "position": 69, + "title": "Hate Me" + }, + { + "artist": "Dustin Lynch", + "position": 70, + "title": "Ridin' Roads" + }, + { + "artist": "Niall Horan", + "position": 71, + "title": "Nice To Meet Ya" + }, + { + "artist": "Camila Cabello", + "position": 72, + "title": "Liar" + }, + { + "artist": "Russell Dickerson", + "position": 73, + "title": "Every Little Thing" + }, + { + "artist": "Kenny Chesney", + "position": 74, + "title": "Tip Of My Tongue" + }, + { + "artist": "Trevor Daniel", + "position": 75, + "title": "Falling" + }, + { + "artist": "Billie Eilish", + "position": 76, + "title": "All The Good Girls Go To Hell" + }, + { + "artist": "Harry Styles", + "position": 77, + "title": "Lights Up" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 78, + "title": "Make No Sense" + }, + { + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "position": 79, + "title": "Hot Girl Summer" + }, + { + "artist": "Chris Lane", + "position": 80, + "title": "I Don't Know About You" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 81, + "title": "Lonely Child" + }, + { + "artist": "Lil Mosey x Gunna", + "position": 82, + "title": "Stuck In A Dream" + }, + { + "artist": "Kelsea Ballerini", + "position": 83, + "title": "homecoming queen?" + }, + { + "artist": "Chris Janson", + "position": 84, + "title": "Good Vibes" + }, + { + "artist": "Joji", + "position": 85, + "title": "Slow Dancing In The Dark" + }, + { + "artist": "J Balvin & Bad Bunny", + "position": 86, + "title": "La Cancion" + }, + { + "artist": "Tory Lanez Featuring Snoop Dogg", + "position": 87, + "title": "Beauty In The Benz" + }, + { + "artist": "DaniLeigh Featuring Chris Brown", + "position": 88, + "title": "Easy" + }, + { + "artist": "Khalid", + "position": 89, + "title": "Up All Night" + }, + { + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "position": 90, + "title": "Heartless" + }, + { + "artist": "Y2K & bbno$", + "position": 91, + "title": "Lalala" + }, + { + "artist": "Karol G & Nicki Minaj", + "position": 92, + "title": "Tusa" + }, + { + "artist": "Jason Aldean", + "position": 93, + "title": "We Back " + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 94, + "title": "Self Control" + }, + { + "artist": "Kane Brown", + "position": 95, + "title": "Homesick" + }, + { + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "position": 96, + "title": "Hot Shower" + }, + { + "artist": "Trippie Redd Featuring DaBaby", + "position": 97, + "title": "Death" + }, + { + "artist": "Ant Saunders", + "position": 98, + "title": "Yellow Hearts" + }, + { + "artist": "Blake Shelton Featuring Trace Adkins", + "position": 99, + "title": "Hell Right" + }, + { + "artist": "The Black Eyed Peas X J Balvin", + "position": 100, + "title": "RITMO (Bad Boys For Life)" + } + ], + "title": "2019 - Hot 100" + }, + { + "songs": [ + { + "artist": "Dan + Shay & Justin Bieber", + "position": 1, + "title": "10,000 Hours" + }, + { + "artist": "Old Dominion", + "position": 2, + "title": "One Man Band" + }, + { + "artist": "Luke Combs", + "position": 3, + "title": "Even Though I'm Leaving" + }, + { + "artist": "Marshmello & Kane Brown", + "position": 4, + "title": "One Thing Right" + }, + { + "artist": "Lady Antebellum", + "position": 5, + "title": "What If I Never Get Over You" + }, + { + "artist": "Maren Morris", + "position": 6, + "title": "The Bones" + }, + { + "artist": "Thomas Rhett", + "position": 7, + "title": "Remember You Young" + }, + { + "artist": "Matt Stell", + "position": 8, + "title": "Prayed For You" + }, + { + "artist": "Sam Hunt", + "position": 9, + "title": "Kinfolks" + }, + { + "artist": "Keith Urban", + "position": 10, + "title": "We Were" + }, + { + "artist": "Jon Pardi", + "position": 11, + "title": "Heartache Medication" + }, + { + "artist": "Dustin Lynch", + "position": 12, + "title": "Ridin' Roads" + }, + { + "artist": "Kenny Chesney", + "position": 13, + "title": "Tip Of My Tongue" + }, + { + "artist": "Kelsea Ballerini", + "position": 14, + "title": "homecoming queen?" + }, + { + "artist": "Blanco Brown", + "position": 15, + "title": "The Git Up" + }, + { + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "position": 16, + "title": "Heartless" + }, + { + "artist": "Jason Aldean", + "position": 17, + "title": "We Back " + }, + { + "artist": "Kane Brown", + "position": 18, + "title": "Homesick" + }, + { + "artist": "Blake Shelton Featuring Trace Adkins", + "position": 19, + "title": "Hell Right" + }, + { + "artist": "Luke Bryan", + "position": 20, + "title": "What She Wants Tonight" + }, + { + "artist": "Gabby Barrett", + "position": 21, + "title": "I Hope" + }, + { + "artist": "Miranda Lambert", + "position": 22, + "title": "It All Comes Out In The Wash" + }, + { + "artist": "Jimmie Allen", + "position": 23, + "title": "Make Me Want To" + }, + { + "artist": "Ingrid Andress", + "position": 24, + "title": "More Hearts Than Mine" + }, + { + "artist": "Garth Brooks & Blake Shelton", + "position": 25, + "title": "Dive Bar" + }, + { + "artist": "Jordan Davis", + "position": 26, + "title": "Slow Dance In A Parking Lot" + }, + { + "artist": "Luke Combs", + "position": 27, + "title": "Better Together" + }, + { + "artist": "Riley Green", + "position": 28, + "title": "I Wish Grandpas Never Died" + }, + { + "artist": "Ryan Hurd", + "position": 29, + "title": "To A T" + }, + { + "artist": "Brett Young", + "position": 30, + "title": "Catch" + }, + { + "artist": "Jake Owen", + "position": 31, + "title": "Homemade" + }, + { + "artist": "Morgan Wallen", + "position": 32, + "title": "Chasin' You" + }, + { + "artist": "Luke Combs & Brooks & Dunn", + "position": 33, + "title": "1, 2 Many" + }, + { + "artist": "Carly Pearce & Lee Brice", + "position": 34, + "title": "I Hope You're Happy Now" + }, + { + "artist": "Luke Combs", + "position": 35, + "title": "What You See Is What You Get" + }, + { + "artist": "Carrie Underwood", + "position": 36, + "title": "Drinking Alone" + }, + { + "artist": "Luke Combs", + "position": 37, + "title": "Refrigerator Door" + }, + { + "artist": "Luke Combs", + "position": 38, + "title": "Reasons" + }, + { + "artist": "Luke Combs", + "position": 39, + "title": "All Over Again" + }, + { + "artist": "Travis Denning", + "position": 40, + "title": "After A Few" + }, + { + "artist": "Luke Combs Featuring Eric Church", + "position": 41, + "title": "Does To Me" + }, + { + "artist": "Maddie & Tae", + "position": 42, + "title": "Die From A Broken Heart" + }, + { + "artist": "Michael Ray", + "position": 43, + "title": "Her World Or Mine" + }, + { + "artist": "Chris Young", + "position": 44, + "title": "Drowning" + }, + { + "artist": "Kane Brown", + "position": 45, + "title": "For My Daughter" + }, + { + "artist": "Luke Combs", + "position": 46, + "title": "Moon Over Mexico" + }, + { + "artist": "Luke Combs", + "position": 47, + "title": "Nothing Like You" + }, + { + "artist": "Luke Combs", + "position": 48, + "title": "Lovin' On You" + }, + { + "artist": "Caylee Hammack", + "position": 49, + "title": "Family Tree" + }, + { + "artist": "Eric Church", + "position": 50, + "title": "Monsters" + } + ], + "title": "2019 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Panic! At The Disco", + "position": 1, + "title": "High Hopes" + }, + { + "artist": "Imagine Dragons", + "position": 2, + "title": "Natural" + }, + { + "artist": "lovelytheband", + "position": 3, + "title": "Broken" + }, + { + "artist": "Queen", + "position": 4, + "title": "Bohemian Rhapsody" + }, + { + "artist": "Queen", + "position": 5, + "title": "Somebody To Love" + }, + { + "artist": "Queen", + "position": 6, + "title": "Another One Bites The Dust" + }, + { + "artist": "Queen", + "position": 7, + "title": "We Will Rock You" + }, + { + "artist": "Queen", + "position": 8, + "title": "Don't Stop Me Now" + }, + { + "artist": "twenty one pilots", + "position": 9, + "title": "My Blood" + }, + { + "artist": "Queen & David Bowie", + "position": 10, + "title": "Under Pressure" + }, + { + "artist": "Weezer", + "position": 11, + "title": "Africa" + }, + { + "artist": "Queen", + "position": 12, + "title": "Killer Queen" + }, + { + "artist": "Queen", + "position": 13, + "title": "We Are The Champions" + }, + { + "artist": "Imagine Dragons", + "position": 14, + "title": "Bad Liar" + }, + { + "artist": "Mumford & Sons", + "position": 15, + "title": "Guiding Light" + }, + { + "artist": "Imagine Dragons", + "position": 16, + "title": "Zero" + }, + { + "artist": "Queen", + "position": 17, + "title": "I Want To Break Free" + }, + { + "artist": "flora cash", + "position": 18, + "title": "You're Somebody Else" + }, + { + "artist": "Queen", + "position": 19, + "title": "Radio Ga Ga" + }, + { + "artist": "Queen", + "position": 20, + "title": "Crazy Little Thing Called Love" + }, + { + "artist": "Queen", + "position": 21, + "title": "Fat Bottomed Girls" + }, + { + "artist": "Panic! At The Disco", + "position": 22, + "title": "The Greatest Show" + }, + { + "artist": "Queen", + "position": 23, + "title": "Love Of My Life" + }, + { + "artist": "George Ezra", + "position": 24, + "title": "Shotgun" + }, + { + "artist": "Shinedown", + "position": 25, + "title": "Get Up" + }, + { + "artist": "The Revivalists", + "position": 26, + "title": "All My Friends" + }, + { + "artist": "The Interrupters", + "position": 27, + "title": "She's Kerosene" + }, + { + "artist": "Bad Wolves Featuring DIAMANTE", + "position": 28, + "title": "Hear Me Now" + }, + { + "artist": "Disturbed", + "position": 29, + "title": "Are You Ready" + }, + { + "artist": "Hozier", + "position": 30, + "title": "Movement" + }, + { + "artist": "The Struts", + "position": 31, + "title": "Body Talks" + }, + { + "artist": "The Glorious Sons", + "position": 32, + "title": "S.O.S. (Sawed Off Shotgun)" + }, + { + "artist": "Muse", + "position": 33, + "title": "Pressure" + }, + { + "artist": "Godsmack", + "position": 34, + "title": "When Legends Rise" + }, + { + "artist": "Queen", + "position": 35, + "title": "Hammer To Fall (Live Aid)" + }, + { + "artist": "Imagine Dragons", + "position": 36, + "title": "Machine" + }, + { + "artist": "The 1975", + "position": 37, + "title": "Love It If We Made It" + }, + { + "artist": "Queen", + "position": 38, + "title": "Radio Ga Ga (Live Aid)" + }, + { + "artist": "Slipknot", + "position": 39, + "title": "All Out Life" + }, + { + "artist": "Young The Giant", + "position": 40, + "title": "Superposition" + }, + { + "artist": "twenty one pilots", + "position": 41, + "title": "Chlorine" + }, + { + "artist": "Mumford & Sons", + "position": 42, + "title": "42" + }, + { + "artist": "Foster The People", + "position": 43, + "title": "Worst Nites" + }, + { + "artist": "lovelytheband", + "position": 44, + "title": "These Are My Friends" + }, + { + "artist": "Greta Van Fleet", + "position": 45, + "title": "When The Curtain Falls" + }, + { + "artist": "Ghost", + "position": 46, + "title": "Dance Macabre" + }, + { + "artist": "Queen", + "position": 47, + "title": "Ay-Oh (Live Aid)" + }, + { + "artist": "Bring Me The Horizon", + "position": 48, + "title": "Mantra" + }, + { + "artist": "Portugal. The Man", + "position": 49, + "title": "Tidal Wave" + }, + { + "artist": "Elle King", + "position": 50, + "title": "Shame" + } + ], + "title": "2018 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Travis Scott", + "position": 1, + "title": "Sicko Mode" + }, + { + "artist": "Sheck Wes", + "position": 2, + "title": "Mo Bamba" + }, + { + "artist": "Kodak Black Featuring Travis Scott & Offset", + "position": 3, + "title": "ZEZE" + }, + { + "artist": "Lil Baby & Gunna", + "position": 4, + "title": "Drip Too Hard" + }, + { + "artist": "Juice WRLD", + "position": 5, + "title": "Lucid Dreams" + }, + { + "artist": "Post Malone", + "position": 6, + "title": "Better Now" + }, + { + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "position": 7, + "title": "Wake Up In The Sky" + }, + { + "artist": "Ella Mai", + "position": 8, + "title": "Trip" + }, + { + "artist": "Post Malone & Swae Lee", + "position": 9, + "title": "Sunflower (Spider-Man: Into The Spider-Verse)" + }, + { + "artist": "Cardi B", + "position": 10, + "title": "Money" + }, + { + "artist": "Flipp Dinero", + "position": 11, + "title": "Leave Me Alone" + }, + { + "artist": "Khalid", + "position": 12, + "title": "Better" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "position": 13, + "title": "FEFE" + }, + { + "artist": "Drake", + "position": 14, + "title": "In My Feelings" + }, + { + "artist": "Lil Wayne", + "position": 15, + "title": "Uproar" + }, + { + "artist": "Drake", + "position": 16, + "title": "Nonstop" + }, + { + "artist": "Cardi B Featuring Kehlani", + "position": 17, + "title": "Ring" + }, + { + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "position": 18, + "title": "Dangerous" + }, + { + "artist": "NF", + "position": 19, + "title": "Lie" + }, + { + "artist": "XXXTENTACION", + "position": 20, + "title": "BAD!" + }, + { + "artist": "Juice WRLD", + "position": 21, + "title": "Armed And Dangerous" + }, + { + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "position": 22, + "title": "Arms Around You" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "position": 23, + "title": "MAMA" + }, + { + "artist": "6ix9ine Featuring Tory Lanez", + "position": 24, + "title": "KIKA" + }, + { + "artist": "YG Featuring 2 Chainz, Big Sean & Nicki Minaj", + "position": 25, + "title": "Big Bank" + }, + { + "artist": "6ix9ine Featuring Bobby Shmurda", + "position": 26, + "title": "STOOPID" + }, + { + "artist": "6ix9ine Featuring Lil Baby", + "position": 27, + "title": "TIC TOC" + }, + { + "artist": "Lil Baby", + "position": 28, + "title": "Close Friends" + }, + { + "artist": "Future & Juice WRLD", + "position": 29, + "title": "Fine China" + }, + { + "artist": "Trippie Redd", + "position": 30, + "title": "Topanga" + }, + { + "artist": "Yella Beezy", + "position": 31, + "title": "That's On Me" + }, + { + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "position": 32, + "title": "Smile (Living My Best Life)" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 33, + "title": "10 Freaky Girls" + }, + { + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "position": 34, + "title": "WAKA" + }, + { + "artist": "Trippie Redd Featuring Juice WRLD", + "position": 35, + "title": "1400 / 999 Freestyle" + }, + { + "artist": "French Montana Featuring Drake", + "position": 36, + "title": "No Stylist" + }, + { + "artist": "Tory Lanez & Rich The Kid", + "position": 37, + "title": "Talk To Me" + }, + { + "artist": "Pardison Fontaine Featuring Cardi B", + "position": 38, + "title": "Backin' It Up" + }, + { + "artist": "Tyga & Nicki Minaj", + "position": 39, + "title": "Dip" + }, + { + "artist": "Lil Baby & Gunna Featuring Drake", + "position": 40, + "title": "Never Recover" + }, + { + "artist": "Jacquees", + "position": 41, + "title": "You" + }, + { + "artist": "Metro Boomin Featuring Gunna", + "position": 42, + "title": "Space Cadet" + }, + { + "artist": "Daniel Caesar Featuring H.E.R.", + "position": 43, + "title": "Best Part" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 44, + "title": "Don't Come Out The House" + }, + { + "artist": "Kanye West & Lil Pump", + "position": 45, + "title": "I Love It" + }, + { + "artist": "Lil Mosey", + "position": 46, + "title": "Noticed" + }, + { + "artist": "Quavo", + "position": 47, + "title": "W O R K I N M E" + }, + { + "artist": "Eminem Featuring Joyner Lucas", + "position": 48, + "title": "Lucky You" + }, + { + "artist": "Amine", + "position": 49, + "title": "Reel It In" + }, + { + "artist": "6ix9ine Featuring DJ SPINKING", + "position": 50, + "title": "TATI" + } + ], + "title": "2018 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Marshmello & Bastille", + "position": 1, + "title": "Happier" + }, + { + "artist": "Panic! At The Disco", + "position": 2, + "title": "High Hopes" + }, + { + "artist": "Ariana Grande", + "position": 3, + "title": "Breathin" + }, + { + "artist": "5 Seconds Of Summer", + "position": 4, + "title": "Youngblood" + }, + { + "artist": "Khalid & Normani", + "position": 5, + "title": "Love Lies" + }, + { + "artist": "Halsey", + "position": 6, + "title": "Without Me" + }, + { + "artist": "Benny Blanco, Halsey & Khalid", + "position": 7, + "title": "Eastside" + }, + { + "artist": "NF", + "position": 8, + "title": "Lie" + }, + { + "artist": "Post Malone", + "position": 9, + "title": "Better Now" + }, + { + "artist": "Maroon 5 Featuring Cardi B", + "position": 10, + "title": "Girls Like You" + }, + { + "artist": "Ariana Grande", + "position": 11, + "title": "God Is A Woman" + }, + { + "artist": "Bazzi Featuring Camila Cabello", + "position": 12, + "title": "Beautiful" + }, + { + "artist": "Juice WRLD", + "position": 13, + "title": "Lucid Dreams" + }, + { + "artist": "Ariana Grande", + "position": 14, + "title": "Thank U, Next" + }, + { + "artist": "Post Malone & Swae Lee", + "position": 15, + "title": "Sunflower (Spider-Man: Into The Spider-Verse)" + }, + { + "artist": "lovelytheband", + "position": 16, + "title": "Broken" + }, + { + "artist": "Shawn Mendes X Zedd", + "position": 17, + "title": "Lost In Japan" + }, + { + "artist": "Camila Cabello", + "position": 18, + "title": "Consequences" + }, + { + "artist": "Silk City x Dua Lipa", + "position": 19, + "title": "Electricity" + }, + { + "artist": "Travis Scott", + "position": 20, + "title": "Sicko Mode" + }, + { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "position": 21, + "title": "Close To Me" + }, + { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "position": 22, + "title": "This Feeling" + }, + { + "artist": "Imagine Dragons", + "position": 23, + "title": "Natural" + }, + { + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "position": 24, + "title": "Taki Taki" + }, + { + "artist": "Labrinth, Sia & Diplo Present... LSD", + "position": 25, + "title": "Thunderclouds" + }, + { + "artist": "Khalid", + "position": 26, + "title": "Better" + }, + { + "artist": "Lady Gaga & Bradley Cooper", + "position": 27, + "title": "Shallow" + }, + { + "artist": "Alessia Cara", + "position": 28, + "title": "Trust My Lonely" + }, + { + "artist": "Dean Lewis", + "position": 29, + "title": "Be Alright" + }, + { + "artist": "Drake Featuring Michael Jackson", + "position": 30, + "title": "Don't Matter To Me" + }, + { + "artist": "Dan + Shay", + "position": 31, + "title": "Tequila" + }, + { + "artist": "Why Don't We", + "position": 32, + "title": "8 Letters" + }, + { + "artist": "Zara Larsson", + "position": 33, + "title": "Ruin My Life" + }, + { + "artist": "Loud Luxury Featuring Brando", + "position": 34, + "title": "Body" + }, + { + "artist": "twenty one pilots", + "position": 35, + "title": "My Blood" + }, + { + "artist": "DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo", + "position": 36, + "title": "No Brainer" + }, + { + "artist": "Bad Bunny Featuring Drake", + "position": 37, + "title": "MIA" + }, + { + "artist": "Steve Aoki Featuring BTS", + "position": 38, + "title": "Waste It On Me" + }, + { + "artist": "Lauv Featuring Julia Michaels", + "position": 39, + "title": "There's No Way" + }, + { + "artist": "Lukas Graham", + "position": 40, + "title": "Love Someone" + } + ], + "title": "2018 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Travis Scott", + "position": 1, + "title": "Sicko Mode" + }, + { + "artist": "Ariana Grande", + "position": 2, + "title": "Thank U, Next" + }, + { + "artist": "Marshmello & Bastille", + "position": 3, + "title": "Happier" + }, + { + "artist": "Halsey", + "position": 4, + "title": "Without Me" + }, + { + "artist": "Panic! At The Disco", + "position": 5, + "title": "High Hopes" + }, + { + "artist": "Sheck Wes", + "position": 6, + "title": "Mo Bamba" + }, + { + "artist": "Kodak Black Featuring Travis Scott & Offset", + "position": 7, + "title": "ZEZE" + }, + { + "artist": "Lil Baby & Gunna", + "position": 8, + "title": "Drip Too Hard" + }, + { + "artist": "Maroon 5 Featuring Cardi B", + "position": 9, + "title": "Girls Like You" + }, + { + "artist": "Juice WRLD", + "position": 10, + "title": "Lucid Dreams" + }, + { + "artist": "Post Malone", + "position": 11, + "title": "Better Now" + }, + { + "artist": "5 Seconds Of Summer", + "position": 12, + "title": "Youngblood" + }, + { + "artist": "Ariana Grande", + "position": 13, + "title": "Breathin" + }, + { + "artist": "Mariah Carey", + "position": 14, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "position": 15, + "title": "Wake Up In The Sky" + }, + { + "artist": "Ella Mai", + "position": 16, + "title": "Trip" + }, + { + "artist": "Post Malone & Swae Lee", + "position": 17, + "title": "Sunflower (Spider-Man: Into The Spider-Verse)" + }, + { + "artist": "Benny Blanco, Halsey & Khalid", + "position": 18, + "title": "Eastside" + }, + { + "artist": "Bad Bunny Featuring Drake", + "position": 19, + "title": "MIA" + }, + { + "artist": "Khalid & Normani", + "position": 20, + "title": "Love Lies" + }, + { + "artist": "Andy Williams", + "position": 21, + "title": "It's The Most Wonderful Time Of The Year" + }, + { + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "position": 22, + "title": "Taki Taki" + }, + { + "artist": "Brenda Lee", + "position": 23, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Cardi B", + "position": 24, + "title": "Money" + }, + { + "artist": "Imagine Dragons", + "position": 25, + "title": "Natural" + }, + { + "artist": "Burl Ives", + "position": 26, + "title": "A Holly Jolly Christmas" + }, + { + "artist": "Flipp Dinero", + "position": 27, + "title": "Leave Me Alone" + }, + { + "artist": "Lady Gaga & Bradley Cooper", + "position": 28, + "title": "Shallow" + }, + { + "artist": "Khalid", + "position": 29, + "title": "Better" + }, + { + "artist": "Bazzi Featuring Camila Cabello", + "position": 30, + "title": "Beautiful" + }, + { + "artist": "Cardi B, Bad Bunny & J Balvin", + "position": 31, + "title": "I Like It" + }, + { + "artist": "lovelytheband", + "position": 32, + "title": "Broken" + }, + { + "artist": "Bobby Helms", + "position": 33, + "title": "Jingle Bell Rock" + }, + { + "artist": "Ariana Grande", + "position": 34, + "title": "God Is A Woman" + }, + { + "artist": "Tyga Featuring Offset", + "position": 35, + "title": "Taste" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "position": 36, + "title": "FEFE" + }, + { + "artist": "Drake", + "position": 37, + "title": "In My Feelings" + }, + { + "artist": "Dan + Shay", + "position": 38, + "title": "Speechless" + }, + { + "artist": "Nat King Cole", + "position": 39, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Lil Wayne", + "position": 40, + "title": "Uproar" + }, + { + "artist": "Kane Brown", + "position": 41, + "title": "Lose It" + }, + { + "artist": "Luke Combs", + "position": 42, + "title": "She Got The Best Of Me " + }, + { + "artist": "Wham!", + "position": 43, + "title": "Last Christmas" + }, + { + "artist": "Lil Baby & Drake", + "position": 44, + "title": "Yes Indeed" + }, + { + "artist": "Dan + Shay", + "position": 45, + "title": "Tequila" + }, + { + "artist": "Drake", + "position": 46, + "title": "Nonstop" + }, + { + "artist": "Cardi B Featuring Kehlani", + "position": 47, + "title": "Ring" + }, + { + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "position": 48, + "title": "Dangerous" + }, + { + "artist": "Jimmie Allen", + "position": 49, + "title": "Best Shot" + }, + { + "artist": "Ella Mai", + "position": 50, + "title": "Boo'd Up" + }, + { + "artist": "NF", + "position": 51, + "title": "Lie" + }, + { + "artist": "Billie Eilish", + "position": 52, + "title": "When The Party's Over" + }, + { + "artist": "Mitchell Tenpenny", + "position": 53, + "title": "Drunk Me" + }, + { + "artist": "XXXTENTACION", + "position": 54, + "title": "BAD!" + }, + { + "artist": "Juice WRLD", + "position": 55, + "title": "Armed And Dangerous" + }, + { + "artist": "Shawn Mendes X Zedd", + "position": 56, + "title": "Lost In Japan" + }, + { + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "position": 57, + "title": "Arms Around You" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "position": 58, + "title": "MAMA" + }, + { + "artist": "6ix9ine Featuring Tory Lanez", + "position": 59, + "title": "KIKA" + }, + { + "artist": "Lauren Daigle", + "position": 60, + "title": "You Say" + }, + { + "artist": "6ix9ine Featuring Bobby Shmurda", + "position": 61, + "title": "STOOPID" + }, + { + "artist": "6ix9ine Featuring Lil Baby", + "position": 62, + "title": "TIC TOC" + }, + { + "artist": "Lil Baby", + "position": 63, + "title": "Close Friends" + }, + { + "artist": "Future & Juice WRLD", + "position": 64, + "title": "Fine China" + }, + { + "artist": "Dean Lewis", + "position": 65, + "title": "Be Alright" + }, + { + "artist": "Trippie Redd", + "position": 66, + "title": "Topanga" + }, + { + "artist": "Yella Beezy", + "position": 67, + "title": "That's On Me" + }, + { + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "position": 68, + "title": "Smile (Living My Best Life)" + }, + { + "artist": "Billie Eilish", + "position": 69, + "title": "Come Out And Play" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 70, + "title": "10 Freaky Girls" + }, + { + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "position": 71, + "title": "WAKA" + }, + { + "artist": "Trippie Redd Featuring Juice WRLD", + "position": 72, + "title": "1400 / 999 Freestyle" + }, + { + "artist": "French Montana Featuring Drake", + "position": 73, + "title": "No Stylist" + }, + { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "position": 74, + "title": "Burning Man" + }, + { + "artist": "Tory Lanez & Rich The Kid", + "position": 75, + "title": "Talk To Me" + }, + { + "artist": "Pardison Fontaine Featuring Cardi B", + "position": 76, + "title": "Backin' It Up" + }, + { + "artist": "Camila Cabello", + "position": 77, + "title": "Consequences" + }, + { + "artist": "Bebe Rexha", + "position": 78, + "title": "I'm A Mess" + }, + { + "artist": "Chris Young", + "position": 79, + "title": "Hangin' On" + }, + { + "artist": "Tyga & Nicki Minaj", + "position": 80, + "title": "Dip" + }, + { + "artist": "Dustin Lynch", + "position": 81, + "title": "Good Girl" + }, + { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "position": 82, + "title": "This Feeling" + }, + { + "artist": "Billie Eilish & Khalid", + "position": 83, + "title": "Lovely" + }, + { + "artist": "Anuel AA & Romeo Santos", + "position": 84, + "title": "Ella Quiere Beber" + }, + { + "artist": "Lil Baby & Gunna Featuring Drake", + "position": 85, + "title": "Never Recover" + }, + { + "artist": "6ix9ine Featuring Anuel AA", + "position": 86, + "title": "BEBE" + }, + { + "artist": "Maren Morris", + "position": 87, + "title": "Rich" + }, + { + "artist": "Thomas Rhett", + "position": 88, + "title": "Sixteen" + }, + { + "artist": "Russell Dickerson", + "position": 89, + "title": "Blue Tacoma" + }, + { + "artist": "Jacquees", + "position": 90, + "title": "You" + }, + { + "artist": "Metro Boomin Featuring Gunna", + "position": 91, + "title": "Space Cadet" + }, + { + "artist": "Kip Moore", + "position": 92, + "title": "Last Shot" + }, + { + "artist": "Daniel Caesar Featuring H.E.R.", + "position": 93, + "title": "Best Part" + }, + { + "artist": "Jason Aldean", + "position": 94, + "title": "Girl Like You" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 95, + "title": "Don't Come Out The House" + }, + { + "artist": "Billie Eilish", + "position": 96, + "title": "Ocean Eyes" + }, + { + "artist": "Kanye West & Lil Pump", + "position": 97, + "title": "I Love It" + }, + { + "artist": "Lil Peep & XXXTENTACION", + "position": 98, + "title": "Falling Down" + }, + { + "artist": "Lil Mosey", + "position": 99, + "title": "Noticed" + }, + { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "position": 100, + "title": "Close To Me" + } + ], + "title": "2018 - Hot 100" + }, + { + "songs": [ + { + "artist": "Dan + Shay", + "position": 1, + "title": "Speechless" + }, + { + "artist": "Kane Brown", + "position": 2, + "title": "Lose It" + }, + { + "artist": "Luke Combs", + "position": 3, + "title": "She Got The Best Of Me " + }, + { + "artist": "Dan + Shay", + "position": 4, + "title": "Tequila" + }, + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 5, + "title": "Meant To Be" + }, + { + "artist": "Jimmie Allen", + "position": 6, + "title": "Best Shot" + }, + { + "artist": "Mitchell Tenpenny", + "position": 7, + "title": "Drunk Me" + }, + { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "position": 8, + "title": "Burning Man" + }, + { + "artist": "Chris Young", + "position": 9, + "title": "Hangin' On" + }, + { + "artist": "Dustin Lynch", + "position": 10, + "title": "Good Girl" + }, + { + "artist": "Thomas Rhett", + "position": 11, + "title": "Sixteen" + }, + { + "artist": "Kip Moore", + "position": 12, + "title": "Last Shot" + }, + { + "artist": "Jason Aldean", + "position": 13, + "title": "Girl Like You" + }, + { + "artist": "Scotty McCreery", + "position": 14, + "title": "This Is It" + }, + { + "artist": "Chris Stapleton", + "position": 15, + "title": "Millionaire" + }, + { + "artist": "Blake Shelton", + "position": 16, + "title": "Turnin' Me On" + }, + { + "artist": "Eric Church", + "position": 17, + "title": "Desperate Man" + }, + { + "artist": "Jordan Davis", + "position": 18, + "title": "Take It From Me" + }, + { + "artist": "Luke Combs", + "position": 19, + "title": "Beautiful Crazy" + }, + { + "artist": "Jake Owen", + "position": 20, + "title": "Down To The Honkytonk" + }, + { + "artist": "Midland", + "position": 21, + "title": "Burn Out" + }, + { + "artist": "Luke Bryan", + "position": 22, + "title": "What Makes You Country" + }, + { + "artist": "Riley Green", + "position": 23, + "title": "There Was This Girl" + }, + { + "artist": "Tim McGraw", + "position": 24, + "title": "Neon Church" + }, + { + "artist": "Kelsea Ballerini", + "position": 25, + "title": "Miss Me More" + }, + { + "artist": "Jon Pardi", + "position": 26, + "title": "Night Shift" + }, + { + "artist": "Old Dominion", + "position": 27, + "title": "Make It Sweet" + }, + { + "artist": "Carrie Underwood", + "position": 28, + "title": "Love Wins" + }, + { + "artist": "Brett Young", + "position": 29, + "title": "Here Tonight" + }, + { + "artist": "Cody Johnson", + "position": 30, + "title": "On My Way To You" + }, + { + "artist": "Keith Urban", + "position": 31, + "title": "Never Comin Down" + }, + { + "artist": "Morgan Wallen", + "position": 32, + "title": "Whiskey Glasses" + }, + { + "artist": "Michael Ray", + "position": 33, + "title": "One That Got Away" + }, + { + "artist": "Lee Brice", + "position": 34, + "title": "Rumor" + }, + { + "artist": "Kenny Chesney Featuring Mindy Smith", + "position": 35, + "title": "Better Boat" + }, + { + "artist": "Tyler Rich", + "position": 36, + "title": "The Difference" + }, + { + "artist": "Florida Georgia Line", + "position": 37, + "title": "Talk You Out Of It" + }, + { + "artist": "Chris Lane", + "position": 38, + "title": "I Don't Know About You" + }, + { + "artist": "Eli Young Band", + "position": 39, + "title": "Love Ain't" + }, + { + "artist": "Rodney Atkins Featuring The Fisk Jubilee Singers", + "position": 40, + "title": "Caught Up In The Country" + }, + { + "artist": "Granger Smith", + "position": 41, + "title": "You're In It" + }, + { + "artist": "Chase Rice", + "position": 42, + "title": "Eyes On You" + }, + { + "artist": "Kane Brown", + "position": 43, + "title": "Homesick" + }, + { + "artist": "Brett Eldredge", + "position": 44, + "title": "Love Someone" + }, + { + "artist": "Kane Brown", + "position": 45, + "title": "Good As You" + }, + { + "artist": "Travis Denning", + "position": 46, + "title": "David Ashley Parker From Powder Springs" + }, + { + "artist": "Billy Currington", + "position": 47, + "title": "Bring It On Over" + }, + { + "artist": "Maddie & Tae", + "position": 48, + "title": "Die From A Broken Heart" + }, + { + "artist": "Rascal Flatts", + "position": 49, + "title": "Back To Life" + }, + { + "artist": "Maddie & Tae", + "position": 50, + "title": "Friends Don't" + } + ], + "title": "2018 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Imagine Dragons", + "position": 1, + "title": "Thunder" + }, + { + "artist": "Portugal. The Man", + "position": 2, + "title": "Feel It Still" + }, + { + "artist": "Imagine Dragons", + "position": 3, + "title": "Believer" + }, + { + "artist": "WALK THE MOON", + "position": 4, + "title": "One Foot" + }, + { + "artist": "The Revivalists", + "position": 5, + "title": "Wish I Knew You" + }, + { + "artist": "Theory Of A Deadman", + "position": 6, + "title": "Rx (Medicate)" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 7, + "title": "Walk On Water" + }, + { + "artist": "Imagine Dragons", + "position": 8, + "title": "Whatever It Takes" + }, + { + "artist": "AC/DC", + "position": 9, + "title": "Thunderstruck" + }, + { + "artist": "U2", + "position": 10, + "title": "You're The Best Thing About Me" + }, + { + "artist": "Five Finger Death Punch", + "position": 11, + "title": "Gone Away" + }, + { + "artist": "The Lumineers", + "position": 12, + "title": "Angela" + }, + { + "artist": "Alice Merton", + "position": 13, + "title": "No Roots" + }, + { + "artist": "Chloe Kohanski", + "position": 14, + "title": "Call Me" + }, + { + "artist": "Beck", + "position": 15, + "title": "Up All Night" + }, + { + "artist": "Foo Fighters", + "position": 16, + "title": "The Sky Is A Neighborhood" + }, + { + "artist": "AC/DC", + "position": 17, + "title": "Back In Black" + }, + { + "artist": "Led Zeppelin", + "position": 18, + "title": "Immigrant Song" + }, + { + "artist": "Vance Joy", + "position": 19, + "title": "Lay It On Me" + }, + { + "artist": "AC/DC", + "position": 20, + "title": "You Shook Me All Night Long" + }, + { + "artist": "Linkin Park", + "position": 21, + "title": "One More Light" + }, + { + "artist": "Gary Clark Jr.", + "position": 22, + "title": "Come Together" + }, + { + "artist": "AC/DC", + "position": 23, + "title": "Highway To Hell" + }, + { + "artist": "Foster The People", + "position": 24, + "title": "Sit Next To Me" + }, + { + "artist": "Portugal. The Man", + "position": 25, + "title": "Live In The Moment" + }, + { + "artist": "Fall Out Boy", + "position": 26, + "title": "Hold Me Tight Or Don't" + }, + { + "artist": "Nothing More", + "position": 27, + "title": "Go To War" + }, + { + "artist": "Five Finger Death Punch", + "position": 28, + "title": "Trouble" + }, + { + "artist": "Bastille", + "position": 29, + "title": "World Gone Mad" + }, + { + "artist": "Greta Van Fleet", + "position": 30, + "title": "Highway Tune" + }, + { + "artist": "Royal Blood", + "position": 31, + "title": "I Only Lie When I Love You" + }, + { + "artist": "Cold War Kids Featuring Bishop Briggs", + "position": 32, + "title": "So Tied Up" + }, + { + "artist": "U2", + "position": 33, + "title": "Get Out Of Your Own Way" + }, + { + "artist": "Skillet", + "position": 34, + "title": "The Resistance" + }, + { + "artist": "Noah Mac", + "position": 35, + "title": "Ordinary World" + }, + { + "artist": "Weezer", + "position": 36, + "title": "Happy Hour" + }, + { + "artist": "All That Remains", + "position": 37, + "title": "The Thunder Rolls" + }, + { + "artist": "Papa Roach", + "position": 38, + "title": "Born For Greatness" + }, + { + "artist": "Manchester Orchestra", + "position": 39, + "title": "The Gold" + }, + { + "artist": "The Dirty Heads", + "position": 40, + "title": "Vacation" + }, + { + "artist": "Welshly Arms", + "position": 41, + "title": "Legendary" + }, + { + "artist": "X Ambassadors", + "position": 42, + "title": "Ahead Of Myself" + }, + { + "artist": "Fall Out Boy", + "position": 43, + "title": "The Last Of The Real Ones" + }, + { + "artist": "The Score", + "position": 44, + "title": "Legend" + }, + { + "artist": "Marilyn Manson", + "position": 45, + "title": "Kill4me" + }, + { + "artist": "Seether", + "position": 46, + "title": "Betray And Degrade" + }, + { + "artist": "Bishop Briggs", + "position": 47, + "title": "Dream" + }, + { + "artist": "Two Feet", + "position": 48, + "title": "Go Fuck Yourself" + }, + { + "artist": "U2", + "position": 49, + "title": "American Soul" + }, + { + "artist": "Fozzy", + "position": 50, + "title": "Judas" + } + ], + "title": "2017 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Post Malone Featuring 21 Savage", + "position": 1, + "title": "Rockstar" + }, + { + "artist": "Lil Pump", + "position": 2, + "title": "Gucci Gang" + }, + { + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "position": 3, + "title": "No Limit" + }, + { + "artist": "Cardi B", + "position": 4, + "title": "Bodak Yellow (Money Moves)" + }, + { + "artist": "6ix9ine", + "position": 5, + "title": "Gummo" + }, + { + "artist": "Gucci Mane Featuring Migos", + "position": 6, + "title": "I Get The Bag" + }, + { + "artist": "Migos, Nicki Minaj & Cardi B", + "position": 7, + "title": "MotorSport" + }, + { + "artist": "Logic Featuring Alessia Cara & Khalid", + "position": 8, + "title": "1-800-273-8255" + }, + { + "artist": "G-Eazy & Halsey", + "position": 9, + "title": "Him & I" + }, + { + "artist": "NF", + "position": 10, + "title": "Let You Down" + }, + { + "artist": "Post Malone", + "position": 11, + "title": "I Fall Apart" + }, + { + "artist": "21 Savage", + "position": 12, + "title": "Bank Account" + }, + { + "artist": "Kendrick Lamar Featuring Zacari", + "position": 13, + "title": "Love." + }, + { + "artist": "Khalid", + "position": 14, + "title": "Young Dumb & Broke" + }, + { + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "position": 15, + "title": "The Way Life Goes" + }, + { + "artist": "Miguel Featuring Travis Scott", + "position": 16, + "title": "Sky Walker" + }, + { + "artist": "SZA", + "position": 17, + "title": "The Weekend" + }, + { + "artist": "A$AP Ferg", + "position": 18, + "title": "Plain Jane" + }, + { + "artist": "Offset & Metro Boomin", + "position": 19, + "title": "Ric Flair Drip" + }, + { + "artist": "YBN Nahmir", + "position": 20, + "title": "Rubbin Off The Paint" + }, + { + "artist": "Yo Gotti Featuring Nicki Minaj", + "position": 21, + "title": "Rake It Up" + }, + { + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "position": 22, + "title": "Pills And Automobiles" + }, + { + "artist": "Kodak Black Featuring XXXTENTACION", + "position": 23, + "title": "Roll In Peace" + }, + { + "artist": "GoldLink Featuring Brent Faiyaz & Shy Glizzy", + "position": 24, + "title": "Crew" + }, + { + "artist": "Kodak Black Featuring Lil Wayne", + "position": 25, + "title": "Codeine Dreaming" + }, + { + "artist": "Post Malone", + "position": 26, + "title": "Candy Paint" + }, + { + "artist": "N*E*R*D & Rihanna", + "position": 27, + "title": "Lemon" + }, + { + "artist": "6ix9ine", + "position": 28, + "title": "Kooda" + }, + { + "artist": "Lil Xan", + "position": 29, + "title": "Betrayed" + }, + { + "artist": "Famous Dex Featuring A$AP Rocky", + "position": 30, + "title": "Pick It Up" + }, + { + "artist": "Tay-K", + "position": 31, + "title": "The Race" + }, + { + "artist": "NAV Featuring Lil Uzi Vert", + "position": 32, + "title": "Wanted You" + }, + { + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "position": 33, + "title": "Ghostface Killers" + }, + { + "artist": "XXXTentacion Featuring Trippie Redd", + "position": 34, + "title": "F**k Love" + }, + { + "artist": "Tank", + "position": 35, + "title": "When We" + }, + { + "artist": "XXXTentacion", + "position": 36, + "title": "Jocelyn Flores" + }, + { + "artist": "Kodak Black", + "position": 37, + "title": "Transportin'" + }, + { + "artist": "Yo Gotti", + "position": 38, + "title": "Juice" + }, + { + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "position": 39, + "title": "Faking It" + }, + { + "artist": "Lil Uzi Vert", + "position": 40, + "title": "Sauce It Up" + }, + { + "artist": "Post Malone", + "position": 41, + "title": "Go Flex" + }, + { + "artist": "Eminem Featuring Beyonce", + "position": 42, + "title": "Walk On Water" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 43, + "title": "No Smoke" + }, + { + "artist": "Miguel Featuring J. Cole & Salaam Remi", + "position": 44, + "title": "Come Through And Chill" + }, + { + "artist": "Rich The Kid Featuring Kendrick Lamar", + "position": 45, + "title": "New Freezer" + }, + { + "artist": "Jaden Smith", + "position": 46, + "title": "Icon" + }, + { + "artist": "Wiz Khalifa Featuring Ty Dolla $ign", + "position": 47, + "title": "Something New" + }, + { + "artist": "Lil Baby", + "position": 48, + "title": "My Dawg" + }, + { + "artist": "The Weeknd", + "position": 49, + "title": "Die For You" + }, + { + "artist": "Machine Gun Kelly, X Ambassadors & Bebe Rexha", + "position": 50, + "title": "Home" + } + ], + "title": "2017 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Camila Cabello Featuring Young Thug", + "position": 1, + "title": "Havana" + }, + { + "artist": "Imagine Dragons", + "position": 2, + "title": "Thunder" + }, + { + "artist": "Halsey", + "position": 3, + "title": "Bad At Love" + }, + { + "artist": "Ed Sheeran Duet With Beyonce", + "position": 4, + "title": "Perfect" + }, + { + "artist": "Maroon 5 Featuring SZA", + "position": 5, + "title": "What Lovers Do" + }, + { + "artist": "Sam Smith", + "position": 6, + "title": "Too Good At Goodbyes" + }, + { + "artist": "Demi Lovato", + "position": 7, + "title": "Sorry Not Sorry" + }, + { + "artist": "Post Malone Featuring 21 Savage", + "position": 8, + "title": "Rockstar" + }, + { + "artist": "Dua Lipa", + "position": 9, + "title": "New Rules" + }, + { + "artist": "Portugal. The Man", + "position": 10, + "title": "Feel It Still" + }, + { + "artist": "Logic Featuring Alessia Cara & Khalid", + "position": 11, + "title": "1-800-273-8255" + }, + { + "artist": "Charlie Puth", + "position": 12, + "title": "How Long" + }, + { + "artist": "Liam Payne Featuring Quavo", + "position": 13, + "title": "Strip That Down" + }, + { + "artist": "Selena Gomez X Marshmello", + "position": 14, + "title": "Wolves" + }, + { + "artist": "Taylor Swift", + "position": 15, + "title": "...Ready For It?" + }, + { + "artist": "MAX Featuring gnash", + "position": 16, + "title": "Lights Down Low" + }, + { + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "position": 17, + "title": "End Game" + }, + { + "artist": "NF", + "position": 18, + "title": "Let You Down" + }, + { + "artist": "Macklemore Featuring Kesha", + "position": 19, + "title": "Good Old Days" + }, + { + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "position": 20, + "title": "Let Me Go" + }, + { + "artist": "Niall Horan", + "position": 21, + "title": "Too Much To Ask" + }, + { + "artist": "J Balvin & Willy William Featuring Beyonce", + "position": 22, + "title": "Mi Gente" + }, + { + "artist": "Khalid", + "position": 23, + "title": "Young Dumb & Broke" + }, + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 24, + "title": "Meant To Be" + }, + { + "artist": "P!nk", + "position": 25, + "title": "What About Us" + }, + { + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "position": 26, + "title": "Faking It" + }, + { + "artist": "WALK THE MOON", + "position": 27, + "title": "One Foot" + }, + { + "artist": "Sofi Tukker Featuring NERVO, The Knocks & Alisa Ueno", + "position": 28, + "title": "Best Friend" + }, + { + "artist": "G-Eazy & Halsey", + "position": 29, + "title": "Him & I" + }, + { + "artist": "Blackbear", + "position": 30, + "title": "Do Re Mi" + }, + { + "artist": "Lauv", + "position": 31, + "title": "I Like Me Better" + }, + { + "artist": "Zayn Featuring Sia", + "position": 32, + "title": "Dusk Till Dawn" + }, + { + "artist": "Marshmello Featuring Khalid", + "position": 33, + "title": "Silence" + }, + { + "artist": "Cheat Codes Featuring Fetty Wap & CVBZ", + "position": 34, + "title": "Feels Great" + }, + { + "artist": "Liam Payne", + "position": 35, + "title": "Bedroom Floor" + }, + { + "artist": "Kendrick Lamar Featuring Zacari", + "position": 36, + "title": "Love." + }, + { + "artist": "BTS Featuring Desiigner", + "position": 37, + "title": "MIC Drop" + }, + { + "artist": "Daya", + "position": 38, + "title": "New" + }, + { + "artist": "Taylor Swift", + "position": 39, + "title": "Look What You Made Me Do" + }, + { + "artist": "CNCO & Little Mix", + "position": 40, + "title": "Reggaeton Lento (Bailemos)" + } + ], + "title": "2017 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Ed Sheeran Duet With Beyonce", + "position": 1, + "title": "Perfect" + }, + { + "artist": "Post Malone Featuring 21 Savage", + "position": 2, + "title": "Rockstar" + }, + { + "artist": "Camila Cabello Featuring Young Thug", + "position": 3, + "title": "Havana" + }, + { + "artist": "Lil Pump", + "position": 4, + "title": "Gucci Gang" + }, + { + "artist": "Imagine Dragons", + "position": 5, + "title": "Thunder" + }, + { + "artist": "Sam Smith", + "position": 6, + "title": "Too Good At Goodbyes" + }, + { + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "position": 7, + "title": "No Limit" + }, + { + "artist": "Halsey", + "position": 8, + "title": "Bad At Love" + }, + { + "artist": "Cardi B", + "position": 9, + "title": "Bodak Yellow (Money Moves)" + }, + { + "artist": "Maroon 5 Featuring SZA", + "position": 10, + "title": "What Lovers Do" + }, + { + "artist": "Mariah Carey", + "position": 11, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Portugal. The Man", + "position": 12, + "title": "Feel It Still" + }, + { + "artist": "6ix9ine", + "position": 13, + "title": "Gummo" + }, + { + "artist": "Gucci Mane Featuring Migos", + "position": 14, + "title": "I Get The Bag" + }, + { + "artist": "Migos, Nicki Minaj & Cardi B", + "position": 15, + "title": "MotorSport" + }, + { + "artist": "Demi Lovato", + "position": 16, + "title": "Sorry Not Sorry" + }, + { + "artist": "Dua Lipa", + "position": 17, + "title": "New Rules" + }, + { + "artist": "J Balvin & Willy William Featuring Beyonce", + "position": 18, + "title": "Mi Gente" + }, + { + "artist": "Logic Featuring Alessia Cara & Khalid", + "position": 19, + "title": "1-800-273-8255" + }, + { + "artist": "Selena Gomez X Marshmello", + "position": 20, + "title": "Wolves" + }, + { + "artist": "G-Eazy & Halsey", + "position": 21, + "title": "Him & I" + }, + { + "artist": "NF", + "position": 22, + "title": "Let You Down" + }, + { + "artist": "Post Malone", + "position": 23, + "title": "I Fall Apart" + }, + { + "artist": "21 Savage", + "position": 24, + "title": "Bank Account" + }, + { + "artist": "Ed Sheeran", + "position": 25, + "title": "Shape Of You" + }, + { + "artist": "Charlie Puth", + "position": 26, + "title": "How Long" + }, + { + "artist": "Kendrick Lamar Featuring Zacari", + "position": 27, + "title": "Love." + }, + { + "artist": "Khalid", + "position": 28, + "title": "Young Dumb & Broke" + }, + { + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "position": 29, + "title": "The Way Life Goes" + }, + { + "artist": "Imagine Dragons", + "position": 30, + "title": "Believer" + }, + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 31, + "title": "Meant To Be" + }, + { + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "position": 32, + "title": "Despacito" + }, + { + "artist": "Marshmello Featuring Khalid", + "position": 33, + "title": "Silence" + }, + { + "artist": "French Montana Featuring Swae Lee", + "position": 34, + "title": "Unforgettable" + }, + { + "artist": "Miguel Featuring Travis Scott", + "position": 35, + "title": "Sky Walker" + }, + { + "artist": "Charlie Puth", + "position": 36, + "title": "Attention" + }, + { + "artist": "Brenda Lee", + "position": 37, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "SZA", + "position": 38, + "title": "The Weekend" + }, + { + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "position": 39, + "title": "End Game" + }, + { + "artist": "Bruno Mars", + "position": 40, + "title": "That's What I Like" + }, + { + "artist": "A$AP Ferg", + "position": 41, + "title": "Plain Jane" + }, + { + "artist": "Nat King Cole", + "position": 42, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Taylor Swift", + "position": 43, + "title": "...Ready For It?" + }, + { + "artist": "Offset & Metro Boomin", + "position": 44, + "title": "Ric Flair Drip" + }, + { + "artist": "Andy Williams", + "position": 45, + "title": "It's The Most Wonderful Time Of The Year" + }, + { + "artist": "Shawn Mendes", + "position": 46, + "title": "There's Nothing Holdin' Me Back" + }, + { + "artist": "Burl Ives", + "position": 47, + "title": "A Holly Jolly Christmas" + }, + { + "artist": "YBN Nahmir", + "position": 48, + "title": "Rubbin Off The Paint" + }, + { + "artist": "Post Malone Featuring Quavo", + "position": 49, + "title": "Congratulations" + }, + { + "artist": "Kendrick Lamar", + "position": 50, + "title": "Humble." + }, + { + "artist": "P!nk", + "position": 51, + "title": "What About Us" + }, + { + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "position": 52, + "title": "Pills And Automobiles" + }, + { + "artist": "Demi Lovato", + "position": 53, + "title": "Tell Me You Love Me" + }, + { + "artist": "LANCO", + "position": 54, + "title": "Greatest Love Story" + }, + { + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "position": 55, + "title": "Let Me Go" + }, + { + "artist": "Kodak Black Featuring XXXTENTACION", + "position": 56, + "title": "Roll In Peace" + }, + { + "artist": "Luke Bryan", + "position": 57, + "title": "Light It Up" + }, + { + "artist": "Kodak Black Featuring Lil Wayne", + "position": 58, + "title": "Codeine Dreaming" + }, + { + "artist": "Post Malone", + "position": 59, + "title": "Candy Paint" + }, + { + "artist": "N*E*R*D & Rihanna", + "position": 60, + "title": "Lemon" + }, + { + "artist": "6ix9ine", + "position": 61, + "title": "Kooda" + }, + { + "artist": "Brett Young", + "position": 62, + "title": "Like I Loved You" + }, + { + "artist": "Blake Shelton", + "position": 63, + "title": "I'll Name The Dogs" + }, + { + "artist": "Macklemore Featuring Kesha", + "position": 64, + "title": "Good Old Days" + }, + { + "artist": "Luke Combs", + "position": 65, + "title": "When It Rains It Pours" + }, + { + "artist": "MAX Featuring gnash", + "position": 66, + "title": "Lights Down Low" + }, + { + "artist": "Russell Dickerson", + "position": 67, + "title": "Yours" + }, + { + "artist": "Lil Xan", + "position": 68, + "title": "Betrayed" + }, + { + "artist": "Thomas Rhett", + "position": 69, + "title": "Unforgettable" + }, + { + "artist": "Eric Church", + "position": 70, + "title": "Round Here Buzz" + }, + { + "artist": "BTS Featuring Desiigner", + "position": 71, + "title": "MIC Drop" + }, + { + "artist": "Taylor Swift", + "position": 72, + "title": "Look What You Made Me Do" + }, + { + "artist": "Famous Dex Featuring A$AP Rocky", + "position": 73, + "title": "Pick It Up" + }, + { + "artist": "Tay-K", + "position": 74, + "title": "The Race" + }, + { + "artist": "Luis Fonsi & Demi Lovato", + "position": 75, + "title": "Echame La Culpa" + }, + { + "artist": "NAV Featuring Lil Uzi Vert", + "position": 76, + "title": "Wanted You" + }, + { + "artist": "Chris Young", + "position": 77, + "title": "Losing Sleep" + }, + { + "artist": "Zayn Featuring Sia", + "position": 78, + "title": "Dusk Till Dawn" + }, + { + "artist": "Kelly Clarkson", + "position": 79, + "title": "Love So Soft" + }, + { + "artist": "Maren Morris", + "position": 80, + "title": "I Could Use A Love Song" + }, + { + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "position": 81, + "title": "Ghostface Killers" + }, + { + "artist": "XXXTentacion Featuring Trippie Redd", + "position": 82, + "title": "F**k Love" + }, + { + "artist": "Becky G Featuring Bad Bunny", + "position": 83, + "title": "Mayores" + }, + { + "artist": "Walker Hayes", + "position": 84, + "title": "You Broke Up With Me" + }, + { + "artist": "Farruko, Nicki Minaj, Bad Bunny, 21 Savage & Rvssian", + "position": 85, + "title": "Krippy Kush" + }, + { + "artist": "Tank", + "position": 86, + "title": "When We" + }, + { + "artist": "XXXTentacion", + "position": 87, + "title": "Jocelyn Flores" + }, + { + "artist": "Old Dominion", + "position": 88, + "title": "Written In The Sand" + }, + { + "artist": "Niall Horan", + "position": 89, + "title": "Too Much To Ask" + }, + { + "artist": "Chris Stapleton", + "position": 90, + "title": "Broken Halos" + }, + { + "artist": "Devin Dawson", + "position": 91, + "title": "All On Me" + }, + { + "artist": "Kodak Black", + "position": 92, + "title": "Transportin'" + }, + { + "artist": "Yo Gotti", + "position": 93, + "title": "Juice" + }, + { + "artist": "Garth Brooks", + "position": 94, + "title": "Ask Me How I Know" + }, + { + "artist": "Romeo Santos Featuring Nicky Jam & Daddy Yankee", + "position": 95, + "title": "Bella y Sensual" + }, + { + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "position": 96, + "title": "Faking It" + }, + { + "artist": "Thomas Rhett", + "position": 97, + "title": "Marry Me" + }, + { + "artist": "Scotty McCreery", + "position": 98, + "title": "Five More Minutes" + }, + { + "artist": "Natti Natasha x Ozuna", + "position": 99, + "title": "Criminal" + }, + { + "artist": "Lil Uzi Vert", + "position": 100, + "title": "Sauce It Up" + } + ], + "title": "2017 - Hot 100" + }, + { + "songs": [ + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 1, + "title": "Meant To Be" + }, + { + "artist": "LANCO", + "position": 2, + "title": "Greatest Love Story" + }, + { + "artist": "Kane Brown Featuring Lauren Alaina", + "position": 3, + "title": "What Ifs" + }, + { + "artist": "Luke Combs", + "position": 4, + "title": "When It Rains It Pours" + }, + { + "artist": "Sam Hunt", + "position": 5, + "title": "Body Like A Back Road" + }, + { + "artist": "Luke Bryan", + "position": 6, + "title": "Light It Up" + }, + { + "artist": "Thomas Rhett", + "position": 7, + "title": "Unforgettable" + }, + { + "artist": "Blake Shelton", + "position": 8, + "title": "I'll Name The Dogs" + }, + { + "artist": "Brett Young", + "position": 9, + "title": "Like I Loved You" + }, + { + "artist": "Dustin Lynch", + "position": 10, + "title": "Small Town Boy" + }, + { + "artist": "Eric Church", + "position": 11, + "title": "Round Here Buzz" + }, + { + "artist": "Russell Dickerson", + "position": 12, + "title": "Yours" + }, + { + "artist": "Garth Brooks", + "position": 13, + "title": "Ask Me How I Know" + }, + { + "artist": "Chris Young", + "position": 14, + "title": "Losing Sleep" + }, + { + "artist": "Maren Morris", + "position": 15, + "title": "I Could Use A Love Song" + }, + { + "artist": "Walker Hayes", + "position": 16, + "title": "You Broke Up With Me" + }, + { + "artist": "Chris Janson", + "position": 17, + "title": "Fix A Drink" + }, + { + "artist": "Old Dominion", + "position": 18, + "title": "Written In The Sand" + }, + { + "artist": "Devin Dawson", + "position": 19, + "title": "All On Me" + }, + { + "artist": "Kelsea Ballerini", + "position": 20, + "title": "Legends" + }, + { + "artist": "Scotty McCreery", + "position": 21, + "title": "Five More Minutes" + }, + { + "artist": "Chris Stapleton", + "position": 22, + "title": "Broken Halos" + }, + { + "artist": "Keith Urban", + "position": 23, + "title": "Female" + }, + { + "artist": "Easton Corbin", + "position": 24, + "title": "A Girl Like You" + }, + { + "artist": "Miranda Lambert", + "position": 25, + "title": "Tin Man" + }, + { + "artist": "Thomas Rhett", + "position": 26, + "title": "Marry Me" + }, + { + "artist": "Aaron Watson", + "position": 27, + "title": "Outta Style" + }, + { + "artist": "Kane Brown", + "position": 28, + "title": "Heaven" + }, + { + "artist": "Brett Eldredge", + "position": 29, + "title": "The Long Way" + }, + { + "artist": "Granger Smith", + "position": 30, + "title": "Happens Like That" + }, + { + "artist": "Tim McGraw & Faith Hill", + "position": 31, + "title": "The Rest Of Our Life" + }, + { + "artist": "Jordan Davis", + "position": 32, + "title": "Singles You Up" + }, + { + "artist": "Lee Brice", + "position": 33, + "title": "Boy" + }, + { + "artist": "Midland", + "position": 34, + "title": "Make A Little" + }, + { + "artist": "Florida Georgia Line", + "position": 35, + "title": "Smooth" + }, + { + "artist": "High Valley", + "position": 36, + "title": "She's With Me" + }, + { + "artist": "Big & Rich", + "position": 37, + "title": "California" + }, + { + "artist": "Kane Brown", + "position": 38, + "title": "Found You" + }, + { + "artist": "Chris Lane Featuring Tori Kelly", + "position": 39, + "title": "Take Back Home Girl" + }, + { + "artist": "Morgan Wallen Featuring Florida Georgia Line", + "position": 40, + "title": "Up Down" + }, + { + "artist": "Cole Swindell", + "position": 41, + "title": "Stay Downtown" + }, + { + "artist": "Brantley Gilbert", + "position": 42, + "title": "Ones That Like Me" + }, + { + "artist": "Michael Ray", + "position": 43, + "title": "Get To You" + }, + { + "artist": "Darius Rucker", + "position": 44, + "title": "For The First Time" + }, + { + "artist": "Chase Rice", + "position": 45, + "title": "Three Chords & The Truth" + }, + { + "artist": "Little Big Town", + "position": 46, + "title": "When Someone Stops Loving You" + }, + { + "artist": "David Lee Murphy & Kenny Chesney", + "position": 47, + "title": "Everything's Gonna Be Alright" + }, + { + "artist": "Dylan Scott", + "position": 48, + "title": "Hooked" + }, + { + "artist": "Red Marlow", + "position": 49, + "title": "The Dance" + }, + { + "artist": "Taylor Swift", + "position": 50, + "title": "New Year's Day" + } + ], + "title": "2017 - Country-Songs" + }, + { + "songs": [ + { + "artist": "twenty one pilots", + "position": 1, + "title": "Heathens" + }, + { + "artist": "twenty one pilots", + "position": 2, + "title": "Ride" + }, + { + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "position": 3, + "title": "Sucker For Pain" + }, + { + "artist": "Coldplay", + "position": 4, + "title": "Hymn For The Weekend" + }, + { + "artist": "X Ambassadors", + "position": 5, + "title": "Unsteady" + }, + { + "artist": "Disturbed", + "position": 6, + "title": "The Sound Of Silence" + }, + { + "artist": "Kings Of Leon", + "position": 7, + "title": "Waste A Moment" + }, + { + "artist": "The Lumineers", + "position": 8, + "title": "Ophelia" + }, + { + "artist": "Fitz And The Tantrums", + "position": 9, + "title": "HandClap" + }, + { + "artist": "twenty one pilots", + "position": 10, + "title": "Cancer" + }, + { + "artist": "Bastille", + "position": 11, + "title": "Good Grief" + }, + { + "artist": "Kaleo", + "position": 12, + "title": "Way Down We Go" + }, + { + "artist": "Bishop Briggs", + "position": 13, + "title": "River" + }, + { + "artist": "Blink-182", + "position": 14, + "title": "Bored To Death" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 15, + "title": "Dark Necessities" + }, + { + "artist": "Green Day", + "position": 16, + "title": "Bang Bang" + }, + { + "artist": "The Head And The Heart", + "position": 17, + "title": "All We Ever Knew" + }, + { + "artist": "Cage The Elephant", + "position": 18, + "title": "Trouble" + }, + { + "artist": "Panic! At The Disco", + "position": 19, + "title": "Bohemian Rhapsody" + }, + { + "artist": "Metallica", + "position": 20, + "title": "Hardwired" + }, + { + "artist": "Beck", + "position": 21, + "title": "Wow" + }, + { + "artist": "Green Day", + "position": 22, + "title": "Revolution Radio" + }, + { + "artist": "Skillet", + "position": 23, + "title": "Feel Invincible" + }, + { + "artist": "The Fray", + "position": 24, + "title": "Singing Low" + }, + { + "artist": "Phantogram", + "position": 25, + "title": "You Don't Get Me High Anymore" + } + ], + "title": "2016 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Rihanna", + "position": 1, + "title": "Needed Me" + }, + { + "artist": "D.R.A.M. Featuring Lil Yachty", + "position": 2, + "title": "Broccoli" + }, + { + "artist": "Drake Featuring WizKid & Kyla", + "position": 3, + "title": "One Dance" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 4, + "title": "Too Good" + }, + { + "artist": "Tory Lanez", + "position": 5, + "title": "Luv" + }, + { + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "position": 6, + "title": "Sucker For Pain" + }, + { + "artist": "Desiigner", + "position": 7, + "title": "Panda" + }, + { + "artist": "DJ Khaled Featuring Drake", + "position": 8, + "title": "For Free" + }, + { + "artist": "Drake", + "position": 9, + "title": "Controlla" + }, + { + "artist": "Desiigner", + "position": 10, + "title": "Tiimmy Turner" + }, + { + "artist": "Usher Featuring Young Thug", + "position": 11, + "title": "No Limit" + }, + { + "artist": "Kanye West", + "position": 12, + "title": "Fade" + }, + { + "artist": "Young Thug And Travis Scott Featuring Quavo", + "position": 13, + "title": "Pick Up The Phone" + }, + { + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "position": 14, + "title": "Chill Bill" + }, + { + "artist": "Lil Uzi Vert", + "position": 15, + "title": "Money Longer" + }, + { + "artist": "Kanye West", + "position": 16, + "title": "Father Stretch My Hands Pt. 1" + }, + { + "artist": "Kent Jones", + "position": 17, + "title": "Don't Mind" + }, + { + "artist": "DJ Khaled Featuring Jay Z & Future", + "position": 18, + "title": "I Got The Keys" + }, + { + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "position": 19, + "title": "No Problem" + }, + { + "artist": "ScHoolboy Q Featuring Kanye West", + "position": 20, + "title": "THat Part" + }, + { + "artist": "Young M.A", + "position": 21, + "title": "OOOUUU" + }, + { + "artist": "Dae Dae", + "position": 22, + "title": "Wat U Mean (Aye, Aye, Aye)" + }, + { + "artist": "Aminé", + "position": 23, + "title": "Caroline" + }, + { + "artist": "Kehlani", + "position": 24, + "title": "Gangsta" + }, + { + "artist": "Post Malone Featuring Justin Bieber", + "position": 25, + "title": "Deja Vu" + } + ], + "title": "2016 - Hot R & B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Major Lazer Featuring Justin Bieber & MO", + "position": 1, + "title": "Cold Water" + }, + { + "artist": "The Chainsmokers Featuring Halsey", + "position": 2, + "title": "Closer" + }, + { + "artist": "Adele", + "position": 3, + "title": "Send My Love (To Your New Lover)" + }, + { + "artist": "Shawn Mendes", + "position": 4, + "title": "Treat You Better" + }, + { + "artist": "Sia Featuring Sean Paul", + "position": 5, + "title": "Cheap Thrills" + }, + { + "artist": "twenty one pilots", + "position": 6, + "title": "Ride" + }, + { + "artist": "Ariana Grande", + "position": 7, + "title": "Into You" + }, + { + "artist": "Calvin Harris Featuring Rihanna", + "position": 8, + "title": "This Is What You Came For" + }, + { + "artist": "twenty one pilots", + "position": 9, + "title": "Heathens" + }, + { + "artist": "Kiiara", + "position": 10, + "title": "Gold" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 11, + "title": "Too Good" + }, + { + "artist": "Charlie Puth Featuring Selena Gomez", + "position": 12, + "title": "We Don't Talk Anymore" + }, + { + "artist": "Daya", + "position": 13, + "title": "Sit Still, Look Pretty" + }, + { + "artist": "DJ Snake Featuring Justin Bieber", + "position": 14, + "title": "Let Me Love You" + }, + { + "artist": "Drake Featuring WizKid & Kyla", + "position": 15, + "title": "One Dance" + }, + { + "artist": "Kungs vs Cookin' On 3 Burners", + "position": 16, + "title": "This Girl" + }, + { + "artist": "Justin Timberlake", + "position": 17, + "title": "Can't Stop The Feeling!" + }, + { + "artist": "Rihanna", + "position": 18, + "title": "Needed Me" + }, + { + "artist": "gnash Featuring Olivia O'Brien", + "position": 19, + "title": "I Hate U I Love U" + }, + { + "artist": "Lukas Graham", + "position": 20, + "title": "Mama Said" + } + ], + "title": "2016 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Kelsea Ballerini", + "position": 1, + "title": "Peter Pan" + }, + { + "artist": "Kenny Chesney Featuring P!nk", + "position": 2, + "title": "Setting The World On Fire" + }, + { + "artist": "Dierks Bentley Featuring Elle King", + "position": 3, + "title": "Different For Girls" + }, + { + "artist": "Florida Georgia Line", + "position": 4, + "title": "H.O.L.Y." + }, + { + "artist": "Billy Currington", + "position": 5, + "title": "It Don't Hurt Like It Used To" + }, + { + "artist": "Sam Hunt", + "position": 6, + "title": "Make You Miss Me" + }, + { + "artist": "Miranda Lambert", + "position": 7, + "title": "Vice" + }, + { + "artist": "Cole Swindell", + "position": 8, + "title": "Middle Of A Memory" + }, + { + "artist": "Tucker Beathard", + "position": 9, + "title": "Rock On" + }, + { + "artist": "Jason Aldean", + "position": 10, + "title": "A Little More Summertime" + }, + { + "artist": "William Michael Morgan", + "position": 11, + "title": "I Met A Girl" + }, + { + "artist": "Keith Urban", + "position": 12, + "title": "Blue Ain't Your Color" + }, + { + "artist": "Blake Shelton", + "position": 13, + "title": "She's Got A Way With Words" + }, + { + "artist": "Luke Bryan", + "position": 14, + "title": "Move" + }, + { + "artist": "LoCash", + "position": 15, + "title": "I Know Somebody" + }, + { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "position": 16, + "title": "May We All" + }, + { + "artist": "Brett Young", + "position": 17, + "title": "Sleep Without You" + }, + { + "artist": "Justin Moore", + "position": 18, + "title": "You Look Like I Need A Drink" + }, + { + "artist": "Jason Aldean", + "position": 19, + "title": "Lights Come On" + }, + { + "artist": "Carrie Underwood", + "position": 20, + "title": "Church Bells" + }, + { + "artist": "Old Dominion", + "position": 21, + "title": "Song For Another Time" + }, + { + "artist": "Maren Morris", + "position": 22, + "title": "80s Mercedes" + }, + { + "artist": "Brett Eldredge", + "position": 23, + "title": "Wanna Be That Song" + }, + { + "artist": "Zac Brown Band", + "position": 24, + "title": "Castaway" + }, + { + "artist": "Tim McGraw", + "position": 25, + "title": "How I'll Always Be" + } + ], + "title": "2016 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "The Chainsmokers Featuring Halsey", + "position": 1, + "title": "Closer" + }, + { + "artist": "twenty one pilots", + "position": 2, + "title": "Heathens" + }, + { + "artist": "Major Lazer Featuring Justin Bieber & MO", + "position": 3, + "title": "Cold Water" + }, + { + "artist": "Sia Featuring Sean Paul", + "position": 4, + "title": "Cheap Thrills" + }, + { + "artist": "The Chainsmokers Featuring Daya", + "position": 5, + "title": "Don't Let Me Down" + }, + { + "artist": "DJ Snake Featuring Justin Bieber", + "position": 6, + "title": "Let Me Love You" + }, + { + "artist": "Calvin Harris Featuring Rihanna", + "position": 7, + "title": "This Is What You Came For" + }, + { + "artist": "Shawn Mendes", + "position": 8, + "title": "Treat You Better" + }, + { + "artist": "twenty one pilots", + "position": 9, + "title": "Ride" + }, + { + "artist": "Adele", + "position": 10, + "title": "Send My Love (To Your New Lover)" + }, + { + "artist": "Rihanna", + "position": 11, + "title": "Needed Me" + }, + { + "artist": "D.R.A.M. Featuring Lil Yachty", + "position": 12, + "title": "Broccoli" + }, + { + "artist": "Charlie Puth Featuring Selena Gomez", + "position": 13, + "title": "We Don't Talk Anymore" + }, + { + "artist": "Drake Featuring WizKid & Kyla", + "position": 14, + "title": "One Dance" + }, + { + "artist": "Lady Gaga", + "position": 15, + "title": "Perfect Illusion" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 16, + "title": "Too Good" + }, + { + "artist": "Ariana Grande", + "position": 17, + "title": "Into You" + }, + { + "artist": "Justin Timberlake", + "position": 18, + "title": "Can't Stop The Feeling!" + }, + { + "artist": "Ariana Grande Featuring Nicki Minaj", + "position": 19, + "title": "Side To Side" + }, + { + "artist": "Kiiara", + "position": 20, + "title": "Gold" + }, + { + "artist": "Tory Lanez", + "position": 21, + "title": "Luv" + }, + { + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "position": 22, + "title": "Sucker For Pain" + }, + { + "artist": "gnash Featuring Olivia O'Brien", + "position": 23, + "title": "I Hate U I Love U" + }, + { + "artist": "Sia Featuring Kendrick Lamar", + "position": 24, + "title": "The Greatest" + }, + { + "artist": "Desiigner", + "position": 25, + "title": "Panda" + }, + { + "artist": "Coldplay", + "position": 26, + "title": "Hymn For The Weekend" + }, + { + "artist": "DJ Khaled Featuring Drake", + "position": 27, + "title": "For Free" + }, + { + "artist": "Flume Featuring Kai", + "position": 28, + "title": "Never Be Like You" + }, + { + "artist": "X Ambassadors", + "position": 29, + "title": "Unsteady" + }, + { + "artist": "Drake", + "position": 30, + "title": "Controlla" + }, + { + "artist": "Kungs vs Cookin' On 3 Burners", + "position": 31, + "title": "This Girl" + }, + { + "artist": "Daya", + "position": 32, + "title": "Sit Still, Look Pretty" + }, + { + "artist": "Hailee Steinfeld & Grey Featuring Zedd", + "position": 33, + "title": "Starving" + }, + { + "artist": "Desiigner", + "position": 34, + "title": "Tiimmy Turner" + }, + { + "artist": "Fifth Harmony Featuring Ty Dolla $ign", + "position": 35, + "title": "Work From Home" + }, + { + "artist": "P!nk", + "position": 36, + "title": "Just Like Fire" + }, + { + "artist": "Usher Featuring Young Thug", + "position": 37, + "title": "No Limit" + }, + { + "artist": "twenty one pilots", + "position": 38, + "title": "Stressed Out" + }, + { + "artist": "Kelsea Ballerini", + "position": 39, + "title": "Peter Pan" + }, + { + "artist": "Kenny Chesney Featuring P!nk", + "position": 40, + "title": "Setting The World On Fire" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 41, + "title": "Work" + }, + { + "artist": "Dierks Bentley Featuring Elle King", + "position": 42, + "title": "Different For Girls" + }, + { + "artist": "Mike Posner", + "position": 43, + "title": "I Took A Pill In Ibiza" + }, + { + "artist": "Future Featuring The Weeknd", + "position": 44, + "title": "Low Life" + }, + { + "artist": "Lukas Graham", + "position": 45, + "title": "7 Years" + }, + { + "artist": "Lukas Graham", + "position": 46, + "title": "Mama Said" + }, + { + "artist": "Kanye West", + "position": 47, + "title": "Fade" + }, + { + "artist": "Young Thug And Travis Scott Featuring Quavo", + "position": 48, + "title": "Pick Up The Phone" + }, + { + "artist": "Florida Georgia Line", + "position": 49, + "title": "H.O.L.Y." + }, + { + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "position": 50, + "title": "Chill Bill" + }, + { + "artist": "Martin Garrix & Bebe Rexha", + "position": 51, + "title": "In The Name Of Love" + }, + { + "artist": "Fifth Harmony Featuring Fetty Wap", + "position": 52, + "title": "All In My Head (Flex)" + }, + { + "artist": "Meghan Trainor", + "position": 53, + "title": "Me Too" + }, + { + "artist": "Lil Uzi Vert", + "position": 54, + "title": "Money Longer" + }, + { + "artist": "Billy Currington", + "position": 55, + "title": "It Don't Hurt Like It Used To" + }, + { + "artist": "Kanye West", + "position": 56, + "title": "Father Stretch My Hands Pt. 1" + }, + { + "artist": "Sam Hunt", + "position": 57, + "title": "Make You Miss Me" + }, + { + "artist": "Kent Jones", + "position": 58, + "title": "Don't Mind" + }, + { + "artist": "DJ Khaled Featuring Jay Z & Future", + "position": 59, + "title": "I Got The Keys" + }, + { + "artist": "Miranda Lambert", + "position": 60, + "title": "Vice" + }, + { + "artist": "Marc E. Bassy Featuring G-Eazy", + "position": 61, + "title": "You & Me" + }, + { + "artist": "Alessia Cara", + "position": 62, + "title": "Scars To Your Beautiful" + }, + { + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "position": 63, + "title": "No Problem" + }, + { + "artist": "Cole Swindell", + "position": 64, + "title": "Middle Of A Memory" + }, + { + "artist": "Tucker Beathard", + "position": 65, + "title": "Rock On" + }, + { + "artist": "ScHoolboy Q Featuring Kanye West", + "position": 66, + "title": "THat Part" + }, + { + "artist": "Young M.A", + "position": 67, + "title": "OOOUUU" + }, + { + "artist": "Dae Dae", + "position": 68, + "title": "Wat U Mean (Aye, Aye, Aye)" + }, + { + "artist": "Jason Aldean", + "position": 69, + "title": "A Little More Summertime" + }, + { + "artist": "Amin�", + "position": 70, + "title": "Caroline" + }, + { + "artist": "William Michael Morgan", + "position": 71, + "title": "I Met A Girl" + }, + { + "artist": "Katy Perry", + "position": 72, + "title": "Rise" + }, + { + "artist": "Keith Urban", + "position": 73, + "title": "Blue Ain't Your Color" + }, + { + "artist": "Kehlani", + "position": 74, + "title": "Gangsta" + }, + { + "artist": "Post Malone Featuring Justin Bieber", + "position": 75, + "title": "Deja Vu" + }, + { + "artist": "Britney Spears Featuring G-Eazy", + "position": 76, + "title": "Make Me..." + }, + { + "artist": "YG Featuring Drake & Kamaiyah", + "position": 77, + "title": "Why You Always Hatin?" + }, + { + "artist": "Skrillex & Rick Ross", + "position": 78, + "title": "Purple Lamborghini" + }, + { + "artist": "Blake Shelton", + "position": 79, + "title": "She's Got A Way With Words" + }, + { + "artist": "Luke Bryan", + "position": 80, + "title": "Move" + }, + { + "artist": "DJ ESCO Featuring Future & Lil Uzi Vert", + "position": 81, + "title": "Too Much Sauce" + }, + { + "artist": "PARTYNEXTDOOR Featuring Drake", + "position": 82, + "title": "Come And See Me" + }, + { + "artist": "Lil Yachty", + "position": 83, + "title": "1 Night" + }, + { + "artist": "Wale", + "position": 84, + "title": "My PYT" + }, + { + "artist": "LoCash", + "position": 85, + "title": "I Know Somebody" + }, + { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "position": 86, + "title": "May We All" + }, + { + "artist": "Drake", + "position": 87, + "title": "Childs Play" + }, + { + "artist": "Beyonce", + "position": 88, + "title": "Hold Up" + }, + { + "artist": "Brett Young", + "position": 89, + "title": "Sleep Without You" + }, + { + "artist": "Jake Owen", + "position": 90, + "title": "American Country Love Song" + }, + { + "artist": "Justin Moore", + "position": 91, + "title": "You Look Like I Need A Drink" + }, + { + "artist": "Nicky Jam", + "position": 92, + "title": "With You Tonight / Hasta El Amanecer" + }, + { + "artist": "DJ Drama Featuring Chris Brown, Skeme & Lyquin", + "position": 93, + "title": "Wishing" + }, + { + "artist": "Chris Brown", + "position": 94, + "title": "Grass Ain't Greener" + }, + { + "artist": "DJ Khaled Featuring Nicki Minaj, Chris Brown & August Alsina", + "position": 95, + "title": "Do You Mind" + }, + { + "artist": "Rae Sremmurd Featuring Gucci Mane", + "position": 96, + "title": "Black Beatles" + }, + { + "artist": "French Montana Featuring Drake", + "position": 97, + "title": "No Shopping" + }, + { + "artist": "21 Savage & Metro Boomin Featuring Future", + "position": 98, + "title": "X" + }, + { + "artist": "Lil Uzi Vert", + "position": 99, + "title": "You Was Right" + }, + { + "artist": "Grace Featuring G-Eazy", + "position": 100, + "title": "You Don't Own Me" + } + ], + "title": "2016 - Hot 100" + }, + { + "songs": [ + { + "artist": "Drake", + "position": 1, + "title": "Hotline Bling" + }, + { + "artist": "The Weeknd", + "position": 2, + "title": "The Hills" + }, + { + "artist": "Alessia Cara", + "position": 3, + "title": "Here" + }, + { + "artist": "Fetty Wap Featuring Remy Boyz", + "position": 4, + "title": "679" + }, + { + "artist": "Drake & Future", + "position": 5, + "title": "Jumpman" + }, + { + "artist": "The Weeknd", + "position": 6, + "title": "Can't Feel My Face" + }, + { + "artist": "Travi$ Scott", + "position": 7, + "title": "Antidote" + }, + { + "artist": "The Weeknd", + "position": 8, + "title": "In The Night" + }, + { + "artist": "Bryson Tiller", + "position": 9, + "title": "Don't" + }, + { + "artist": "Post Malone", + "position": 10, + "title": "White Iverson" + }, + { + "artist": "Tory Lanez", + "position": 11, + "title": "Say It" + }, + { + "artist": "Future Featuring Drake", + "position": 12, + "title": "Where Ya At" + }, + { + "artist": "G-Eazy x Bebe Rexha", + "position": 13, + "title": "Me, Myself & I" + }, + { + "artist": "Fetty Wap", + "position": 14, + "title": "Again" + }, + { + "artist": "iLoveMemphis", + "position": 15, + "title": "Hit The Quan" + }, + { + "artist": "DeJ Loaf Featuring Big Sean", + "position": 16, + "title": "Back Up" + }, + { + "artist": "Fetty Wap Featuring Monty", + "position": 17, + "title": "My Way" + }, + { + "artist": "Bryson Tiller", + "position": 18, + "title": "Exchange" + }, + { + "artist": "Missy Elliott Featuring Pharrell Williams", + "position": 19, + "title": "WTF (Where They From)" + }, + { + "artist": "DLOW", + "position": 20, + "title": "Bet You Can't Do It Like Me" + }, + { + "artist": "Nelly Featuring Jeremih", + "position": 21, + "title": "The Fix" + }, + { + "artist": "Drake & Future", + "position": 22, + "title": "Big Rings" + }, + { + "artist": "Drake", + "position": 23, + "title": "Back To Back" + }, + { + "artist": "Yo Gotti", + "position": 24, + "title": "Down In The DM" + }, + { + "artist": "Young Thug", + "position": 25, + "title": "Best Friend" + } + ], + "title": "2015 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Elle King", + "position": 1, + "title": "Ex's & Oh's" + }, + { + "artist": "twenty one pilots", + "position": 2, + "title": "Stressed Out" + }, + { + "artist": "Coldplay", + "position": 3, + "title": "Adventure Of A Lifetime" + }, + { + "artist": "X Ambassadors", + "position": 4, + "title": "Renegades" + }, + { + "artist": "WALK THE MOON", + "position": 5, + "title": "Shut Up And Dance" + }, + { + "artist": "Fall Out Boy", + "position": 6, + "title": "Irresistible" + }, + { + "artist": "Stone Temple Pilots", + "position": 7, + "title": "Plush" + }, + { + "artist": "Fall Out Boy", + "position": 8, + "title": "Uma Thurman" + }, + { + "artist": "Stone Temple Pilots", + "position": 9, + "title": "Interstate Love Song" + }, + { + "artist": "James Bay", + "position": 10, + "title": "Let It Go" + }, + { + "artist": "Nathaniel Rateliff & The Night Sweats", + "position": 11, + "title": "S.O.B." + }, + { + "artist": "Stone Temple Pilots", + "position": 12, + "title": "Creep" + }, + { + "artist": "Coldplay", + "position": 13, + "title": "Everglow" + }, + { + "artist": "Panic! At The Disco", + "position": 14, + "title": "Emperor's New Clothes" + }, + { + "artist": "Coleman Hell", + "position": 15, + "title": "2 Heads" + }, + { + "artist": "Panic! At The Disco", + "position": 16, + "title": "Victorious" + }, + { + "artist": "Vance Joy", + "position": 17, + "title": "Fire And The Flood" + }, + { + "artist": "Disturbed", + "position": 18, + "title": "The Sound Of Silence" + }, + { + "artist": "X Ambassadors", + "position": 19, + "title": "Unsteady" + }, + { + "artist": "Coldplay", + "position": 20, + "title": "Hymn For The Weekend" + }, + { + "artist": "Bring Me The Horizon", + "position": 21, + "title": "Throne" + }, + { + "artist": "Cage The Elephant", + "position": 22, + "title": "Mess Around" + }, + { + "artist": "Death Cab For Cutie", + "position": 23, + "title": "The Ghosts Of Beverly Drive" + }, + { + "artist": "Disturbed", + "position": 24, + "title": "The Light" + }, + { + "artist": "Shinedown", + "position": 25, + "title": "Cut The Cord" + } + ], + "title": "2015 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Adele", + "position": 1, + "title": "Hello" + }, + { + "artist": "Justin Bieber", + "position": 2, + "title": "Sorry" + }, + { + "artist": "Selena Gomez", + "position": 3, + "title": "Same Old Love" + }, + { + "artist": "Alessia Cara", + "position": 4, + "title": "Here" + }, + { + "artist": "Ellie Goulding", + "position": 5, + "title": "On My Mind" + }, + { + "artist": "Meghan Trainor Featuring John Legend", + "position": 6, + "title": "Like I'm Gonna Lose You" + }, + { + "artist": "Drake", + "position": 7, + "title": "Hotline Bling" + }, + { + "artist": "Shawn Mendes", + "position": 8, + "title": "Stitches" + }, + { + "artist": "Elle King", + "position": 9, + "title": "Ex's & Oh's" + }, + { + "artist": "The Weeknd", + "position": 10, + "title": "In The Night" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Wildest Dreams" + }, + { + "artist": "Demi Lovato", + "position": 12, + "title": "Confident" + }, + { + "artist": "One Direction", + "position": 13, + "title": "Perfect" + }, + { + "artist": "Justin Bieber", + "position": 14, + "title": "What Do You Mean?" + }, + { + "artist": "Daya", + "position": 15, + "title": "Hide Away" + }, + { + "artist": "The Weeknd", + "position": 16, + "title": "The Hills" + }, + { + "artist": "The Chainsmokers Featuring ROZES", + "position": 17, + "title": "Roses" + }, + { + "artist": "Ariana Grande", + "position": 18, + "title": "Focus" + }, + { + "artist": "twenty one pilots", + "position": 19, + "title": "Stressed Out" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 20, + "title": "I Know What You Did Last Summer" + } + ], + "title": "2015 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Thomas Rhett", + "position": 1, + "title": "Die A Happy Man" + }, + { + "artist": "Sam Hunt", + "position": 2, + "title": "Break Up In A Small Town" + }, + { + "artist": "Cam", + "position": 3, + "title": "Burning House" + }, + { + "artist": "Blake Shelton", + "position": 4, + "title": "Gonna" + }, + { + "artist": "Chris Young", + "position": 5, + "title": "I'm Comin' Over" + }, + { + "artist": "Brothers Osborne", + "position": 6, + "title": "Stay A Little Longer" + }, + { + "artist": "Jason Aldean", + "position": 7, + "title": "Gonna Know We Were Here" + }, + { + "artist": "Luke Bryan Featuring Karen Fairchild", + "position": 8, + "title": "Home Alone Tonight" + }, + { + "artist": "Dan + Shay", + "position": 9, + "title": "Nothin' Like You" + }, + { + "artist": "Jana Kramer", + "position": 10, + "title": "I Got The Boy" + }, + { + "artist": "Tim McGraw", + "position": 11, + "title": "Top Of The World" + }, + { + "artist": "LoCash", + "position": 12, + "title": "I Love This Life" + }, + { + "artist": "Luke Bryan", + "position": 13, + "title": "Strip It Down" + }, + { + "artist": "Carrie Underwood", + "position": 14, + "title": "Smoke Break" + }, + { + "artist": "Kelsea Ballerini", + "position": 15, + "title": "Dibs" + }, + { + "artist": "Parmalee", + "position": 16, + "title": "Already Callin' You Mine" + }, + { + "artist": "Granger Smith", + "position": 17, + "title": "Backroad Song" + }, + { + "artist": "Zac Brown Band", + "position": 18, + "title": "Beautiful Drug" + }, + { + "artist": "Randy Houser", + "position": 19, + "title": "We Went" + }, + { + "artist": "Chris Stapleton", + "position": 20, + "title": "Tennessee Whiskey" + }, + { + "artist": "Eric Church", + "position": 21, + "title": "Mr. Misunderstood" + }, + { + "artist": "Keith Urban", + "position": 22, + "title": "Break On Me." + }, + { + "artist": "Brad Paisley", + "position": 23, + "title": "Country Nation" + }, + { + "artist": "Kenny Chesney", + "position": 24, + "title": "Save It For A Rainy Day" + }, + { + "artist": "Emily Ann Roberts", + "position": 25, + "title": "9 To 5" + } + ], + "title": "2015 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Adele", + "position": 1, + "title": "Hello" + }, + { + "artist": "Justin Bieber", + "position": 2, + "title": "Sorry" + }, + { + "artist": "Drake", + "position": 3, + "title": "Hotline Bling" + }, + { + "artist": "Justin Bieber", + "position": 4, + "title": "What Do You Mean?" + }, + { + "artist": "Justin Bieber", + "position": 5, + "title": "Love Yourself" + }, + { + "artist": "The Weeknd", + "position": 6, + "title": "The Hills" + }, + { + "artist": "Shawn Mendes", + "position": 7, + "title": "Stitches" + }, + { + "artist": "Alessia Cara", + "position": 8, + "title": "Here" + }, + { + "artist": "Selena Gomez", + "position": 9, + "title": "Same Old Love" + }, + { + "artist": "Meghan Trainor Featuring John Legend", + "position": 10, + "title": "Like I'm Gonna Lose You" + }, + { + "artist": "Fetty Wap Featuring Remy Boyz", + "position": 11, + "title": "679" + }, + { + "artist": "Elle King", + "position": 12, + "title": "Ex's & Oh's" + }, + { + "artist": "Ellie Goulding", + "position": 13, + "title": "On My Mind" + }, + { + "artist": "Drake & Future", + "position": 14, + "title": "Jumpman" + }, + { + "artist": "The Weeknd", + "position": 15, + "title": "Can't Feel My Face" + }, + { + "artist": "Travi$ Scott", + "position": 16, + "title": "Antidote" + }, + { + "artist": "Major Lazer & DJ Snake Featuring M0", + "position": 17, + "title": "Lean On" + }, + { + "artist": "Taylor Swift", + "position": 18, + "title": "Wildest Dreams" + }, + { + "artist": "The Weeknd", + "position": 19, + "title": "In The Night" + }, + { + "artist": "Bryson Tiller", + "position": 20, + "title": "Don't" + }, + { + "artist": "Jordan Smith", + "position": 21, + "title": "Somebody To Love" + }, + { + "artist": "Mariah Carey", + "position": 22, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Post Malone", + "position": 23, + "title": "White Iverson" + }, + { + "artist": "Ariana Grande", + "position": 24, + "title": "Focus" + }, + { + "artist": "Thomas Rhett", + "position": 25, + "title": "Die A Happy Man" + }, + { + "artist": "Silento", + "position": 26, + "title": "Watch Me" + }, + { + "artist": "Fetty Wap", + "position": 27, + "title": "Trap Queen" + }, + { + "artist": "twenty one pilots", + "position": 28, + "title": "Stressed Out" + }, + { + "artist": "The Chainsmokers Featuring ROZES", + "position": 29, + "title": "Roses" + }, + { + "artist": "Tory Lanez", + "position": 30, + "title": "Say It" + }, + { + "artist": "Demi Lovato", + "position": 31, + "title": "Confident" + }, + { + "artist": "One Direction", + "position": 32, + "title": "Perfect" + }, + { + "artist": "R. City Featuring Adam Levine", + "position": 33, + "title": "Locked Away" + }, + { + "artist": "Sam Hunt", + "position": 34, + "title": "Break Up In A Small Town" + }, + { + "artist": "Future Featuring Drake", + "position": 35, + "title": "Where Ya At" + }, + { + "artist": "G-Eazy x Bebe Rexha", + "position": 36, + "title": "Me, Myself & I" + }, + { + "artist": "J. Cole", + "position": 37, + "title": "No Role Modelz" + }, + { + "artist": "Skrillex & Diplo With Justin Bieber", + "position": 38, + "title": "Where Are U Now" + }, + { + "artist": "Coldplay", + "position": 39, + "title": "Adventure Of A Lifetime" + }, + { + "artist": "Selena Gomez Featuring A$AP Rocky", + "position": 40, + "title": "Good For You" + }, + { + "artist": "Wiz Khalifa Featuring Charlie Puth", + "position": 41, + "title": "See You Again" + }, + { + "artist": "Fetty Wap", + "position": 42, + "title": "Again" + }, + { + "artist": "OMI", + "position": 43, + "title": "Cheerleader" + }, + { + "artist": "Brenda Lee", + "position": 44, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "iLoveMemphis", + "position": 45, + "title": "Hit The Quan" + }, + { + "artist": "One Direction", + "position": 46, + "title": "Drag Me Down" + }, + { + "artist": "Cam", + "position": 47, + "title": "Burning House" + }, + { + "artist": "Daya", + "position": 48, + "title": "Hide Away" + }, + { + "artist": "DeJ Loaf Featuring Big Sean", + "position": 49, + "title": "Back Up" + }, + { + "artist": "X Ambassadors", + "position": 50, + "title": "Renegades" + }, + { + "artist": "Justin Bieber", + "position": 51, + "title": "I'll Show You" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 52, + "title": "I Know What You Did Last Summer" + }, + { + "artist": "Bryson Tiller", + "position": 53, + "title": "Exchange" + }, + { + "artist": "Blake Shelton", + "position": 54, + "title": "Gonna" + }, + { + "artist": "Flo Rida", + "position": 55, + "title": "My House" + }, + { + "artist": "Gwen Stefani", + "position": 56, + "title": "Used To Love You" + }, + { + "artist": "Missy Elliott Featuring Pharrell Williams", + "position": 57, + "title": "WTF (Where They From)" + }, + { + "artist": "Rudimental Featuring Ed Sheeran", + "position": 58, + "title": "Lay It All On Me" + }, + { + "artist": "Brothers Osborne", + "position": 59, + "title": "Stay A Little Longer" + }, + { + "artist": "DLOW", + "position": 60, + "title": "Bet You Can't Do It Like Me" + }, + { + "artist": "Rachel Platten", + "position": 61, + "title": "Stand By You" + }, + { + "artist": "Nelly Featuring Jeremih", + "position": 62, + "title": "The Fix" + }, + { + "artist": "DNCE", + "position": 63, + "title": "Cake By The Ocean" + }, + { + "artist": "Drake & Future", + "position": 64, + "title": "Big Rings" + }, + { + "artist": "Jason Aldean", + "position": 65, + "title": "Gonna Know We Were Here" + }, + { + "artist": "Drake", + "position": 66, + "title": "Back To Back" + }, + { + "artist": "Luke Bryan Featuring Karen Fairchild", + "position": 67, + "title": "Home Alone Tonight" + }, + { + "artist": "Yo Gotti", + "position": 68, + "title": "Down In The DM" + }, + { + "artist": "Dan + Shay", + "position": 69, + "title": "Nothin' Like You" + }, + { + "artist": "Justin Bieber Featuring Halsey", + "position": 70, + "title": "The Feeling" + }, + { + "artist": "Jana Kramer", + "position": 71, + "title": "I Got The Boy" + }, + { + "artist": "Young Thug", + "position": 72, + "title": "Best Friend" + }, + { + "artist": "Tim McGraw", + "position": 73, + "title": "Top Of The World" + }, + { + "artist": "LoCash", + "position": 74, + "title": "I Love This Life" + }, + { + "artist": "Charlie Puth", + "position": 75, + "title": "One Call Away" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring Eric Nally, Melle Mel, Kool Moe Dee & Grandmaster Caz", + "position": 76, + "title": "Downtown" + }, + { + "artist": "Selena Gomez", + "position": 77, + "title": "Hands To Myself" + }, + { + "artist": "Adele", + "position": 78, + "title": "When We Were Young" + }, + { + "artist": "Rae Sremmurd", + "position": 79, + "title": "Come Get Her" + }, + { + "artist": "Luke Bryan", + "position": 80, + "title": "Strip It Down" + }, + { + "artist": "Ty Dolla $ign Featuring Future & Rae Sremmurd", + "position": 81, + "title": "Blase" + }, + { + "artist": "Halsey", + "position": 82, + "title": "New Americana" + }, + { + "artist": "Carrie Underwood", + "position": 83, + "title": "Smoke Break" + }, + { + "artist": "Fall Out Boy", + "position": 84, + "title": "Irresistible" + }, + { + "artist": "Justin Bieber", + "position": 85, + "title": "Purpose" + }, + { + "artist": "Kelsea Ballerini", + "position": 86, + "title": "Dibs" + }, + { + "artist": "Lil Dicky Featuring Fetty Wap & Rich Homie Quan", + "position": 87, + "title": "$ave Dat Money" + }, + { + "artist": "Drake", + "position": 88, + "title": "Right Hand" + }, + { + "artist": "Dawin", + "position": 89, + "title": "Dessert" + }, + { + "artist": "Justin Bieber", + "position": 90, + "title": "Mark My Words" + }, + { + "artist": "Parmalee", + "position": 91, + "title": "Already Callin' You Mine" + }, + { + "artist": "Big Sean Featuring Chris Brown & Ty Dolla $ign", + "position": 92, + "title": "Play No Games" + }, + { + "artist": "Granger Smith", + "position": 93, + "title": "Backroad Song" + }, + { + "artist": "G-Eazy", + "position": 94, + "title": "Random" + }, + { + "artist": "Justin Bieber", + "position": 95, + "title": "Company" + }, + { + "artist": "Justin Bieber Featuring Big Sean", + "position": 96, + "title": "No Pressure" + }, + { + "artist": "Rick Ross Featuring Chris Brown", + "position": 97, + "title": "Sorry" + }, + { + "artist": "G-Eazy Featuring Chris Brown & Tory Lanez", + "position": 98, + "title": "Drifting" + }, + { + "artist": "Chris Brown", + "position": 99, + "title": "Liquor" + }, + { + "artist": "Zac Brown Band", + "position": 100, + "title": "Beautiful Drug" + } + ], + "title": "2015 - Hot 100" + }, + { + "songs": [ + { + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "position": 1, + "title": "Only" + }, + { + "artist": "Big Sean Featuring E-40", + "position": 2, + "title": "I Don't F**k With You" + }, + { + "artist": "I LOVE MAKONNEN Featuring Drake", + "position": 3, + "title": "Tuesday" + }, + { + "artist": "Beyonce", + "position": 4, + "title": "7/11" + }, + { + "artist": "Rae Sremmurd", + "position": 5, + "title": "No Type" + }, + { + "artist": "Bobby Shmurda", + "position": 6, + "title": "Hot Boy" + }, + { + "artist": "O.T. Genasis", + "position": 7, + "title": "CoCo" + }, + { + "artist": "Iggy Azalea Featuring M0", + "position": 8, + "title": "Beg For It" + }, + { + "artist": "Jeremih Featuring YG", + "position": 9, + "title": "Don't Tell 'Em" + }, + { + "artist": "Iggy Azalea Featuring Rita Ora", + "position": 10, + "title": "Black Widow" + }, + { + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "position": 11, + "title": "Lifestyle" + }, + { + "artist": "Usher Featuring Juicy J", + "position": 12, + "title": "I Don't Mind" + }, + { + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "position": 13, + "title": "Hold You Down" + }, + { + "artist": "DeJ Loaf", + "position": 14, + "title": "Try Me" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 15, + "title": "Touchin, Lovin" + }, + { + "artist": "Chris Brown Featuring Usher & Rick Ross", + "position": 16, + "title": "New Flame" + }, + { + "artist": "Nicki Minaj", + "position": 17, + "title": "Anaconda" + }, + { + "artist": "Drake", + "position": 18, + "title": "0 To 100 / The Catch Up" + }, + { + "artist": "Rae Sremmurd", + "position": 19, + "title": "No Flex Zone" + }, + { + "artist": "J. Cole", + "position": 20, + "title": "Wet Dreamz" + }, + { + "artist": "The Weeknd", + "position": 21, + "title": "Often" + }, + { + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "position": 22, + "title": "***Flawless" + }, + { + "artist": "August Alsina", + "position": 23, + "title": "No Love" + }, + { + "artist": "Ne-Yo Featuring Juicy J", + "position": 24, + "title": "She Knows" + }, + { + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "position": 25, + "title": "G.D.F.R." + } + ], + "title": "2014 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Hozier", + "position": 1, + "title": "Take Me To Church" + }, + { + "artist": "Fall Out Boy", + "position": 2, + "title": "Centuries" + }, + { + "artist": "Vance Joy", + "position": 3, + "title": "Riptide" + }, + { + "artist": "Milky Chance", + "position": 4, + "title": "Stolen Dance" + }, + { + "artist": "Imagine Dragons", + "position": 5, + "title": "I Bet My Life" + }, + { + "artist": "WALK THE MOON", + "position": 6, + "title": "Shut Up And Dance" + }, + { + "artist": "Lorde", + "position": 7, + "title": "Yellow Flicker Beat" + }, + { + "artist": "Coldplay", + "position": 8, + "title": "A Sky Full Of Stars" + }, + { + "artist": "The White Buffalo & The Forest Rangers", + "position": 9, + "title": "Come Join The Murder" + }, + { + "artist": "Foo Fighters", + "position": 10, + "title": "Something From Nothing" + }, + { + "artist": "Matt McAndrew", + "position": 11, + "title": "I Still Haven't Found What I'm Looking For" + }, + { + "artist": "Fall Out Boy", + "position": 12, + "title": "Immortals" + }, + { + "artist": "alt-J", + "position": 13, + "title": "Left Hand Free" + }, + { + "artist": "George Ezra", + "position": 14, + "title": "Budapest" + }, + { + "artist": "Cage The Elephant", + "position": 15, + "title": "Cigarette Daydreams" + }, + { + "artist": "MisterWives", + "position": 16, + "title": "Reflections" + }, + { + "artist": "Hozier", + "position": 17, + "title": "From Eden" + }, + { + "artist": "Royal Blood", + "position": 18, + "title": "Figure It Out" + }, + { + "artist": "Matt McAndrew", + "position": 19, + "title": "The Blower's Daughter" + }, + { + "artist": "Bring Me The Horizon", + "position": 20, + "title": "Drown" + }, + { + "artist": "Matt McAndrew", + "position": 21, + "title": "Take Me To Church" + }, + { + "artist": "Hozier", + "position": 22, + "title": "Work Song" + }, + { + "artist": "Five Finger Death Punch", + "position": 23, + "title": "Wrong Side Of Heaven" + }, + { + "artist": "Bastille", + "position": 24, + "title": "Flaws" + }, + { + "artist": "Vance Joy", + "position": 25, + "title": "Mess Is Mine" + } + ], + "title": "2014 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Taylor Swift", + "position": 1, + "title": "Blank Space" + }, + { + "artist": "Maroon 5", + "position": 2, + "title": "Animals" + }, + { + "artist": "Calvin Harris Featuring John Newman", + "position": 3, + "title": "Blame" + }, + { + "artist": "Ed Sheeran", + "position": 4, + "title": "Don't" + }, + { + "artist": "Nick Jonas", + "position": 5, + "title": "Jealous" + }, + { + "artist": "Mr. Probz", + "position": 6, + "title": "Waves" + }, + { + "artist": "Ariana Grande & The Weeknd", + "position": 7, + "title": "Love Me Harder" + }, + { + "artist": "Sam Smith", + "position": 8, + "title": "I'm Not The Only One" + }, + { + "artist": "Tove Lo", + "position": 9, + "title": "Habits (Stay High)" + }, + { + "artist": "Hozier", + "position": 10, + "title": "Take Me To Church" + }, + { + "artist": "Selena Gomez", + "position": 11, + "title": "The Heart Wants What It Wants" + }, + { + "artist": "Taylor Swift", + "position": 12, + "title": "Shake It Off" + }, + { + "artist": "Iggy Azalea Featuring M0", + "position": 13, + "title": "Beg For It" + }, + { + "artist": "Mark Ronson Featuring Bruno Mars", + "position": 14, + "title": "Uptown Funk!" + }, + { + "artist": "Meghan Trainor", + "position": 15, + "title": "Lips Are Movin" + }, + { + "artist": "Alesso Featuring Tove Lo", + "position": 16, + "title": "Heroes (We Could Be)" + }, + { + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "position": 17, + "title": "Bang Bang" + }, + { + "artist": "Fall Out Boy", + "position": 18, + "title": "Centuries" + }, + { + "artist": "Jeremih Featuring YG", + "position": 19, + "title": "Don't Tell 'Em" + }, + { + "artist": "Jason Derulo", + "position": 20, + "title": "Trumpets" + } + ], + "title": "2014 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Tim McGraw", + "position": 1, + "title": "Shotgun Rider" + }, + { + "artist": "Carrie Underwood", + "position": 2, + "title": "Something In The Water" + }, + { + "artist": "Eric Church", + "position": 3, + "title": "Talladega" + }, + { + "artist": "Brad Paisley", + "position": 4, + "title": "Perfect Storm" + }, + { + "artist": "Blake Shelton Featuring Ashley Monroe", + "position": 5, + "title": "Lonely Tonight" + }, + { + "artist": "Florida Georgia Line", + "position": 6, + "title": "Sun Daze" + }, + { + "artist": "Craig Wayne Boyd", + "position": 7, + "title": "The Old Rugged Cross" + }, + { + "artist": "Luke Bryan", + "position": 8, + "title": "I See You" + }, + { + "artist": "Maddie & Tae", + "position": 9, + "title": "Girl In A Country Song" + }, + { + "artist": "Sam Hunt", + "position": 10, + "title": "Leave The Night On" + }, + { + "artist": "Keith Urban", + "position": 11, + "title": "Somewhere In My Car" + }, + { + "artist": "Kenny Chesney", + "position": 12, + "title": "Til It's Gone" + }, + { + "artist": "Parmalee", + "position": 13, + "title": "Close Your Eyes" + }, + { + "artist": "RaeLynn", + "position": 14, + "title": "God Made Girls" + }, + { + "artist": "Lee Brice", + "position": 15, + "title": "Drinking Class" + }, + { + "artist": "Thomas Rhett", + "position": 16, + "title": "Make Me Wanna" + }, + { + "artist": "Brett Eldredge", + "position": 17, + "title": "Mean To Me" + }, + { + "artist": "Jason Aldean", + "position": 18, + "title": "Just Gettin' Started" + }, + { + "artist": "Randy Houser", + "position": 19, + "title": "Like A Cowboy" + }, + { + "artist": "Jason Aldean", + "position": 20, + "title": "Burnin' It Down" + }, + { + "artist": "Florida Georgia Line", + "position": 21, + "title": "Dirt" + }, + { + "artist": "Darius Rucker", + "position": 22, + "title": "Homegrown Honey" + }, + { + "artist": "Blake Shelton", + "position": 23, + "title": "Neon Light" + }, + { + "artist": "Chris Young", + "position": 24, + "title": "Lonely Eyes" + }, + { + "artist": "Chase Bryant", + "position": 25, + "title": "Take It On Back" + } + ], + "title": "2014 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Taylor Swift", + "position": 1, + "title": "Blank Space" + }, + { + "artist": "Hozier", + "position": 2, + "title": "Take Me To Church" + }, + { + "artist": "Mark Ronson Featuring Bruno Mars", + "position": 3, + "title": "Uptown Funk!" + }, + { + "artist": "Meghan Trainor", + "position": 4, + "title": "Lips Are Movin" + }, + { + "artist": "Sam Smith", + "position": 5, + "title": "I'm Not The Only One" + }, + { + "artist": "Ed Sheeran", + "position": 6, + "title": "Thinking Out Loud" + }, + { + "artist": "Meghan Trainor", + "position": 7, + "title": "All About That Bass" + }, + { + "artist": "Maroon 5", + "position": 8, + "title": "Animals" + }, + { + "artist": "Ariana Grande & The Weeknd", + "position": 9, + "title": "Love Me Harder" + }, + { + "artist": "Taylor Swift", + "position": 10, + "title": "Shake It Off" + }, + { + "artist": "Nick Jonas", + "position": 11, + "title": "Jealous" + }, + { + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "position": 12, + "title": "Only" + }, + { + "artist": "Selena Gomez", + "position": 13, + "title": "The Heart Wants What It Wants" + }, + { + "artist": "Big Sean Featuring E-40", + "position": 14, + "title": "I Don't F**k With You" + }, + { + "artist": "Tove Lo", + "position": 15, + "title": "Habits (Stay High)" + }, + { + "artist": "I LOVE MAKONNEN Featuring Drake", + "position": 16, + "title": "Tuesday" + }, + { + "artist": "Ed Sheeran", + "position": 17, + "title": "Don't" + }, + { + "artist": "Mr. Probz", + "position": 18, + "title": "Waves" + }, + { + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "position": 19, + "title": "Bang Bang" + }, + { + "artist": "Beyonce", + "position": 20, + "title": "7/11" + }, + { + "artist": "Calvin Harris Featuring John Newman", + "position": 21, + "title": "Blame" + }, + { + "artist": "Rae Sremmurd", + "position": 22, + "title": "No Type" + }, + { + "artist": "James Newton Howard Featuring Jennifer Lawrence", + "position": 23, + "title": "The Hanging Tree" + }, + { + "artist": "Bobby Shmurda", + "position": 24, + "title": "Hot Boy" + }, + { + "artist": "Sam Smith", + "position": 25, + "title": "Stay With Me" + }, + { + "artist": "Fall Out Boy", + "position": 26, + "title": "Centuries" + }, + { + "artist": "O.T. Genasis", + "position": 27, + "title": "CoCo" + }, + { + "artist": "Iggy Azalea Featuring M0", + "position": 28, + "title": "Beg For It" + }, + { + "artist": "Jeremih Featuring YG", + "position": 29, + "title": "Don't Tell 'Em" + }, + { + "artist": "Iggy Azalea Featuring Rita Ora", + "position": 30, + "title": "Black Widow" + }, + { + "artist": "Jason Derulo", + "position": 31, + "title": "Trumpets" + }, + { + "artist": "Vance Joy", + "position": 32, + "title": "Riptide" + }, + { + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "position": 33, + "title": "Lifestyle" + }, + { + "artist": "Sia", + "position": 34, + "title": "Chandelier" + }, + { + "artist": "Alesso Featuring Tove Lo", + "position": 35, + "title": "Heroes (We Could Be)" + }, + { + "artist": "Clean Bandit Featuring Jess Glynne", + "position": 36, + "title": "Rather Be" + }, + { + "artist": "Usher Featuring Juicy J", + "position": 37, + "title": "I Don't Mind" + }, + { + "artist": "Carrie Underwood", + "position": 38, + "title": "Something In The Water" + }, + { + "artist": "Tim McGraw", + "position": 39, + "title": "Shotgun Rider" + }, + { + "artist": "Mariah Carey", + "position": 40, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Fergie", + "position": 41, + "title": "L.A.LOVE (la la)" + }, + { + "artist": "Milky Chance", + "position": 42, + "title": "Stolen Dance" + }, + { + "artist": "MAGIC!", + "position": 43, + "title": "Rude" + }, + { + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "position": 44, + "title": "Hold You Down" + }, + { + "artist": "DeJ Loaf", + "position": 45, + "title": "Try Me" + }, + { + "artist": "Echosmith", + "position": 46, + "title": "Cool Kids" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 47, + "title": "Touchin, Lovin" + }, + { + "artist": "Pentatonix", + "position": 48, + "title": "Mary, Did You Know?" + }, + { + "artist": "Chris Brown Featuring Usher & Rick Ross", + "position": 49, + "title": "New Flame" + }, + { + "artist": "T.I. Featuring Young Thug", + "position": 50, + "title": "About The Money" + }, + { + "artist": "Eric Church", + "position": 51, + "title": "Talladega" + }, + { + "artist": "Brad Paisley", + "position": 52, + "title": "Perfect Storm" + }, + { + "artist": "One Direction", + "position": 53, + "title": "Night Changes" + }, + { + "artist": "Blake Shelton Featuring Ashley Monroe", + "position": 54, + "title": "Lonely Tonight" + }, + { + "artist": "Nicki Minaj", + "position": 55, + "title": "Anaconda" + }, + { + "artist": "Ed Sheeran", + "position": 56, + "title": "Make It Rain" + }, + { + "artist": "Ella Henderson", + "position": 57, + "title": "Ghost" + }, + { + "artist": "Florida Georgia Line", + "position": 58, + "title": "Sun Daze" + }, + { + "artist": "Craig Wayne Boyd", + "position": 59, + "title": "The Old Rugged Cross" + }, + { + "artist": "David Guetta Featuring Sam Martin", + "position": 60, + "title": "Dangerous" + }, + { + "artist": "Luke Bryan", + "position": 61, + "title": "I See You" + }, + { + "artist": "Maddie & Tae", + "position": 62, + "title": "Girl In A Country Song" + }, + { + "artist": "Imagine Dragons", + "position": 63, + "title": "I Bet My Life" + }, + { + "artist": "Ariana Grande", + "position": 64, + "title": "Santa Tell Me" + }, + { + "artist": "Keith Urban", + "position": 65, + "title": "Somewhere In My Car" + }, + { + "artist": "Rae Sremmurd", + "position": 66, + "title": "No Flex Zone" + }, + { + "artist": "OneRepublic", + "position": 67, + "title": "I Lived" + }, + { + "artist": "Kenny Chesney", + "position": 68, + "title": "Til It's Gone" + }, + { + "artist": "Parmalee", + "position": 69, + "title": "Close Your Eyes" + }, + { + "artist": "One Direction", + "position": 70, + "title": "Steal My Girl" + }, + { + "artist": "RaeLynn", + "position": 71, + "title": "God Made Girls" + }, + { + "artist": "Lee Brice", + "position": 72, + "title": "Drinking Class" + }, + { + "artist": "J. Cole", + "position": 73, + "title": "Wet Dreamz" + }, + { + "artist": "The Weeknd", + "position": 74, + "title": "Often" + }, + { + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "position": 75, + "title": "***Flawless" + }, + { + "artist": "Taylor Swift", + "position": 76, + "title": "Style" + }, + { + "artist": "Colbie Caillat", + "position": 77, + "title": "Try" + }, + { + "artist": "August Alsina", + "position": 78, + "title": "No Love" + }, + { + "artist": "Lillywood & Robin Schulz", + "position": 79, + "title": "Prayer In C" + }, + { + "artist": "Thomas Rhett", + "position": 80, + "title": "Make Me Wanna" + }, + { + "artist": "Matt McAndrew", + "position": 81, + "title": "Make It Rain" + }, + { + "artist": "Brett Eldredge", + "position": 82, + "title": "Mean To Me" + }, + { + "artist": "WALK THE MOON", + "position": 83, + "title": "Shut Up And Dance" + }, + { + "artist": "Jason Aldean", + "position": 84, + "title": "Just Gettin' Started" + }, + { + "artist": "Ne-Yo Featuring Juicy J", + "position": 85, + "title": "She Knows" + }, + { + "artist": "Lorde", + "position": 86, + "title": "Yellow Flicker Beat" + }, + { + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "position": 87, + "title": "G.D.F.R." + }, + { + "artist": "Pitbull Featuring John Ryan", + "position": 88, + "title": "Fireball" + }, + { + "artist": "Nico & Vinz", + "position": 89, + "title": "In Your Arms" + }, + { + "artist": "Sam Smith", + "position": 90, + "title": "Have Yourself A Merry Little Christmas" + }, + { + "artist": "Randy Houser", + "position": 91, + "title": "Like A Cowboy" + }, + { + "artist": "Kid Ink Featuring Usher & Tinashe", + "position": 92, + "title": "Body Language" + }, + { + "artist": "The White Buffalo & The Forest Rangers", + "position": 93, + "title": "Come Join The Murder" + }, + { + "artist": "Fifth Harmony", + "position": 94, + "title": "Sledgehammer" + }, + { + "artist": "J. Cole", + "position": 95, + "title": "No Role Modelz" + }, + { + "artist": "Jessie J Featuring 2 Chainz", + "position": 96, + "title": "Burnin' Up" + }, + { + "artist": "Darius Rucker", + "position": 97, + "title": "Homegrown Honey" + }, + { + "artist": "Chris Jamison", + "position": 98, + "title": "When I Was Your Man" + }, + { + "artist": "Blake Shelton", + "position": 99, + "title": "Neon Light" + }, + { + "artist": "Charli XCX", + "position": 100, + "title": "Break The Rules" + } + ], + "title": "2014 - Hot 100" + }, + { + "songs": [ + { + "artist": "Eminem Featuring Rihanna", + "position": 1, + "title": "The Monster" + }, + { + "artist": "Drake Featuring Majid Jordan", + "position": 2, + "title": "Hold On, We're Going Home" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "position": 3, + "title": "White Walls" + }, + { + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "position": 4, + "title": "23" + }, + { + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "position": 5, + "title": "My Hitta" + }, + { + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "position": 6, + "title": "Blurred Lines" + }, + { + "artist": "Jay Z Featuring Justin Timberlake", + "position": 7, + "title": "Holy Grail" + }, + { + "artist": "Chris Brown Featuring Nicki Minaj", + "position": 8, + "title": "Love More" + }, + { + "artist": "Sevyn Streeter Featuring Chris Brown", + "position": 9, + "title": "It Won't Stop" + }, + { + "artist": "Eminem", + "position": 10, + "title": "Rap God" + }, + { + "artist": "Kid Ink Featuring Chris Brown", + "position": 11, + "title": "Show Me" + }, + { + "artist": "Drake Featuring 2 Chainz & Big Sean", + "position": 12, + "title": "All Me" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 13, + "title": "Confident" + }, + { + "artist": "Sage The Gemini Featuring IamSu!", + "position": 14, + "title": "Gas Pedal" + }, + { + "artist": "John Legend", + "position": 15, + "title": "All Of Me" + }, + { + "artist": "Jay Z", + "position": 16, + "title": "Tom Ford" + }, + { + "artist": "Justin Timberlake", + "position": 17, + "title": "TKO" + }, + { + "artist": "August Alsina Featuring Trinidad James", + "position": 18, + "title": "I Luv This Sh*t" + }, + { + "artist": "B.o.B Featuring 2 Chainz", + "position": 19, + "title": "HeadBand" + }, + { + "artist": "Drake", + "position": 20, + "title": "The Language" + }, + { + "artist": "Kanye West", + "position": 21, + "title": "Bound 2" + }, + { + "artist": "Sage The Gemini", + "position": 22, + "title": "Red Nose" + }, + { + "artist": "Big Sean Featuring Lil Wayne & Jhene Aiko", + "position": 23, + "title": "Beware" + }, + { + "artist": "Eminem", + "position": 24, + "title": "Berzerk" + }, + { + "artist": "Future", + "position": 25, + "title": "Honest" + } + ], + "title": "2013 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Lorde", + "position": 1, + "title": "Royals" + }, + { + "artist": "Imagine Dragons", + "position": 2, + "title": "Demons" + }, + { + "artist": "Passenger", + "position": 3, + "title": "Let Her Go" + }, + { + "artist": "The Neighbourhood", + "position": 4, + "title": "Sweater Weather" + }, + { + "artist": "Lorde", + "position": 5, + "title": "Team" + }, + { + "artist": "Bastille", + "position": 6, + "title": "Pompeii" + }, + { + "artist": "Imagine Dragons", + "position": 7, + "title": "Radioactive" + }, + { + "artist": "American Authors", + "position": 8, + "title": "Best Day Of My Life" + }, + { + "artist": "AWOLNATION", + "position": 9, + "title": "Sail" + }, + { + "artist": "Capital Cities", + "position": 10, + "title": "Safe And Sound" + }, + { + "artist": "Fall Out Boy", + "position": 11, + "title": "Alone Together" + }, + { + "artist": "Arctic Monkeys", + "position": 12, + "title": "Do I Wanna Know?" + }, + { + "artist": "The Fray", + "position": 13, + "title": "Love Don't Die" + }, + { + "artist": "Fitz And The Tantrums", + "position": 14, + "title": "Out Of My League" + }, + { + "artist": "Lorde", + "position": 15, + "title": "Tennis Court" + }, + { + "artist": "Cage The Elephant", + "position": 16, + "title": "Come A Little Closer" + }, + { + "artist": "Will Champlin", + "position": 17, + "title": "Carry On" + }, + { + "artist": "Ed Sheeran", + "position": 18, + "title": "I See Fire" + }, + { + "artist": "Goo Goo Dolls", + "position": 19, + "title": "Come To Me" + }, + { + "artist": "Zach Sobiech", + "position": 20, + "title": "Clouds" + }, + { + "artist": "John Mayer Featuring Katy Perry", + "position": 21, + "title": "Who You Love" + }, + { + "artist": "Pearl Jam", + "position": 22, + "title": "Sirens" + }, + { + "artist": "James Wolpert", + "position": 23, + "title": "With Or Without You" + }, + { + "artist": "Panic! At The Disco Featuring Lolo", + "position": 24, + "title": "Miss Jackson" + }, + { + "artist": "The Neighbourhood", + "position": 25, + "title": "Afraid" + } + ], + "title": "2013 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Eminem Featuring Rihanna", + "position": 1, + "title": "The Monster" + }, + { + "artist": "OneRepublic", + "position": 2, + "title": "Counting Stars" + }, + { + "artist": "Imagine Dragons", + "position": 3, + "title": "Demons" + }, + { + "artist": "Pitbull Featuring Ke$ha", + "position": 4, + "title": "Timber" + }, + { + "artist": "Avicii", + "position": 5, + "title": "Wake Me Up!" + }, + { + "artist": "Miley Cyrus", + "position": 6, + "title": "Wrecking Ball" + }, + { + "artist": "Zedd Featuring Hayley Williams", + "position": 7, + "title": "Stay The Night" + }, + { + "artist": "Lorde", + "position": 8, + "title": "Royals" + }, + { + "artist": "Katy Perry", + "position": 9, + "title": "Unconditionally" + }, + { + "artist": "Lady Gaga Featuring R. Kelly", + "position": 10, + "title": "Do What U Want" + }, + { + "artist": "The Neighbourhood", + "position": 11, + "title": "Sweater Weather" + }, + { + "artist": "Drake Featuring Majid Jordan", + "position": 12, + "title": "Hold On, We're Going Home" + }, + { + "artist": "Passenger", + "position": 13, + "title": "Let Her Go" + }, + { + "artist": "Ellie Goulding", + "position": 14, + "title": "Burn" + }, + { + "artist": "One Direction", + "position": 15, + "title": "Story Of My Life" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "position": 16, + "title": "White Walls" + }, + { + "artist": "Lady Gaga", + "position": 17, + "title": "Applause" + }, + { + "artist": "Jason Derulo", + "position": 18, + "title": "Marry Me" + }, + { + "artist": "Katy Perry", + "position": 19, + "title": "Roar" + }, + { + "artist": "Selena Gomez", + "position": 20, + "title": "Slow Down" + } + ], + "title": "2013 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Florida Georgia Line", + "position": 1, + "title": "Stay" + }, + { + "artist": "Parmalee", + "position": 2, + "title": "Carolina" + }, + { + "artist": "Luke Bryan", + "position": 3, + "title": "Drink A Beer" + }, + { + "artist": "Eli Young Band", + "position": 4, + "title": "Drunk Last Night" + }, + { + "artist": "David Nail", + "position": 5, + "title": "Whatever She's Got" + }, + { + "artist": "Cassadee Pope", + "position": 6, + "title": "Wasting All These Tears" + }, + { + "artist": "Zac Brown Band", + "position": 7, + "title": "Sweet Annie" + }, + { + "artist": "Cole Swindell", + "position": 8, + "title": "Chillin' It" + }, + { + "artist": "Luke Bryan", + "position": 9, + "title": "That's My Kind Of Night" + }, + { + "artist": "Keith Urban And Miranda Lambert", + "position": 10, + "title": "We Were Us" + }, + { + "artist": "The Band Perry", + "position": 11, + "title": "Don't Let Me Be Lonely" + }, + { + "artist": "Jason Aldean", + "position": 12, + "title": "When She Says Baby" + }, + { + "artist": "Eric Paslay", + "position": 13, + "title": "Friday Night" + }, + { + "artist": "Darius Rucker", + "position": 14, + "title": "Radio" + }, + { + "artist": "Jon Pardi", + "position": 15, + "title": "Up All Night" + }, + { + "artist": "Lady Antebellum", + "position": 16, + "title": "Compass" + }, + { + "artist": "Blake Shelton", + "position": 17, + "title": "Mine Would Be You" + }, + { + "artist": "Hunter Hayes Featuring Jason Mraz", + "position": 18, + "title": "Everybody's Got Somebody But Me" + }, + { + "artist": "Scotty McCreery", + "position": 19, + "title": "See You Tonight" + }, + { + "artist": "Frankie Ballard", + "position": 20, + "title": "Helluva Life" + }, + { + "artist": "Danielle Bradbery", + "position": 21, + "title": "The Heart Of Dixie" + }, + { + "artist": "Tim McGraw", + "position": 22, + "title": "Southern Girl" + }, + { + "artist": "Eric Church", + "position": 23, + "title": "The Outsiders" + }, + { + "artist": "Dierks Bentley", + "position": 24, + "title": "I Hold On" + }, + { + "artist": "Dan + Shay", + "position": 25, + "title": "19 You + Me" + } + ], + "title": "2013 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Eminem Featuring Rihanna", + "position": 1, + "title": "The Monster" + }, + { + "artist": "Pitbull Featuring Ke$ha", + "position": 2, + "title": "Timber" + }, + { + "artist": "OneRepublic", + "position": 3, + "title": "Counting Stars" + }, + { + "artist": "A Great Big World & Christina Aguilera", + "position": 4, + "title": "Say Something" + }, + { + "artist": "Lorde", + "position": 5, + "title": "Royals" + }, + { + "artist": "Imagine Dragons", + "position": 6, + "title": "Demons" + }, + { + "artist": "Avicii", + "position": 7, + "title": "Wake Me Up!" + }, + { + "artist": "Miley Cyrus", + "position": 8, + "title": "Wrecking Ball" + }, + { + "artist": "Passenger", + "position": 9, + "title": "Let Her Go" + }, + { + "artist": "One Direction", + "position": 10, + "title": "Story Of My Life" + }, + { + "artist": "Drake Featuring Majid Jordan", + "position": 11, + "title": "Hold On, We're Going Home" + }, + { + "artist": "Katy Perry", + "position": 12, + "title": "Roar" + }, + { + "artist": "Ellie Goulding", + "position": 13, + "title": "Burn" + }, + { + "artist": "The Neighbourhood", + "position": 14, + "title": "Sweater Weather" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "position": 15, + "title": "White Walls" + }, + { + "artist": "Lady Gaga Featuring R. Kelly", + "position": 16, + "title": "Do What U Want" + }, + { + "artist": "Katy Perry", + "position": 17, + "title": "Unconditionally" + }, + { + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "position": 18, + "title": "23" + }, + { + "artist": "Zedd Featuring Hayley Williams", + "position": 19, + "title": "Stay The Night" + }, + { + "artist": "Lady Gaga", + "position": 20, + "title": "Applause" + }, + { + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "position": 21, + "title": "My Hitta" + }, + { + "artist": "Katy Perry Featuring Juicy J", + "position": 22, + "title": "Dark Horse" + }, + { + "artist": "Lorde", + "position": 23, + "title": "Team" + }, + { + "artist": "Bastille", + "position": 24, + "title": "Pompeii" + }, + { + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "position": 25, + "title": "Blurred Lines" + }, + { + "artist": "Jason Derulo", + "position": 26, + "title": "Marry Me" + }, + { + "artist": "Mariah Carey", + "position": 27, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Jay Z Featuring Justin Timberlake", + "position": 28, + "title": "Holy Grail" + }, + { + "artist": "Florida Georgia Line", + "position": 29, + "title": "Stay" + }, + { + "artist": "Imagine Dragons", + "position": 30, + "title": "Radioactive" + }, + { + "artist": "Chris Brown Featuring Nicki Minaj", + "position": 31, + "title": "Love More" + }, + { + "artist": "Sevyn Streeter Featuring Chris Brown", + "position": 32, + "title": "It Won't Stop" + }, + { + "artist": "Sara Bareilles", + "position": 33, + "title": "Brave" + }, + { + "artist": "Eminem", + "position": 34, + "title": "Rap God" + }, + { + "artist": "American Authors", + "position": 35, + "title": "Best Day Of My Life" + }, + { + "artist": "Parmalee", + "position": 36, + "title": "Carolina" + }, + { + "artist": "Luke Bryan", + "position": 37, + "title": "Drink A Beer" + }, + { + "artist": "AWOLNATION", + "position": 38, + "title": "Sail" + }, + { + "artist": "Kid Ink Featuring Chris Brown", + "position": 39, + "title": "Show Me" + }, + { + "artist": "Drake Featuring 2 Chainz & Big Sean", + "position": 40, + "title": "All Me" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 41, + "title": "Confident" + }, + { + "artist": "Eli Young Band", + "position": 42, + "title": "Drunk Last Night" + }, + { + "artist": "David Nail", + "position": 43, + "title": "Whatever She's Got" + }, + { + "artist": "Sage The Gemini Featuring IamSu!", + "position": 44, + "title": "Gas Pedal" + }, + { + "artist": "Capital Cities", + "position": 45, + "title": "Safe And Sound" + }, + { + "artist": "Cassadee Pope", + "position": 46, + "title": "Wasting All These Tears" + }, + { + "artist": "Zac Brown Band", + "position": 47, + "title": "Sweet Annie" + }, + { + "artist": "Cole Swindell", + "position": 48, + "title": "Chillin' It" + }, + { + "artist": "Lana Del Rey & Cedric Gervais", + "position": 49, + "title": "Summertime Sadness" + }, + { + "artist": "Selena Gomez", + "position": 50, + "title": "Slow Down" + }, + { + "artist": "Pentatonix", + "position": 51, + "title": "Little Drummer Boy" + }, + { + "artist": "John Legend", + "position": 52, + "title": "All Of Me" + }, + { + "artist": "Luke Bryan", + "position": 53, + "title": "That's My Kind Of Night" + }, + { + "artist": "Idina Menzel", + "position": 54, + "title": "Let It Go" + }, + { + "artist": "Rebecca Black & Dave Days", + "position": 55, + "title": "Saturday" + }, + { + "artist": "Martin Garrix", + "position": 56, + "title": "Animals" + }, + { + "artist": "Keith Urban And Miranda Lambert", + "position": 57, + "title": "We Were Us" + }, + { + "artist": "Demi Lovato", + "position": 58, + "title": "Let It Go" + }, + { + "artist": "The Band Perry", + "position": 59, + "title": "Don't Let Me Be Lonely" + }, + { + "artist": "Jason Aldean", + "position": 60, + "title": "When She Says Baby" + }, + { + "artist": "Justin Timberlake", + "position": 61, + "title": "TKO" + }, + { + "artist": "Eric Paslay", + "position": 62, + "title": "Friday Night" + }, + { + "artist": "August Alsina Featuring Trinidad James", + "position": 63, + "title": "I Luv This Sh*t" + }, + { + "artist": "Tessanne Chin", + "position": 64, + "title": "Bridge Over Troubled Water" + }, + { + "artist": "Darius Rucker", + "position": 65, + "title": "Radio" + }, + { + "artist": "Avicii", + "position": 66, + "title": "Hey Brother" + }, + { + "artist": "Joe Nichols", + "position": 67, + "title": "Sunny And 75" + }, + { + "artist": "B.o.B Featuring 2 Chainz", + "position": 68, + "title": "HeadBand" + }, + { + "artist": "Zendaya", + "position": 69, + "title": "Replay" + }, + { + "artist": "Drake", + "position": 70, + "title": "The Language" + }, + { + "artist": "Jon Pardi", + "position": 71, + "title": "Up All Night" + }, + { + "artist": "John Newman", + "position": 72, + "title": "Love Me Again" + }, + { + "artist": "Lady Antebellum", + "position": 73, + "title": "Compass" + }, + { + "artist": "Blake Shelton", + "position": 74, + "title": "Mine Would Be You" + }, + { + "artist": "Lea Michele", + "position": 75, + "title": "Cannonball" + }, + { + "artist": "Kanye West", + "position": 76, + "title": "Bound 2" + }, + { + "artist": "Britney Spears", + "position": 77, + "title": "Perfume" + }, + { + "artist": "Eminem", + "position": 78, + "title": "Berzerk" + }, + { + "artist": "Hunter Hayes Featuring Jason Mraz", + "position": 79, + "title": "Everybody's Got Somebody But Me" + }, + { + "artist": "Kelly Clarkson", + "position": 80, + "title": "Underneath The Tree" + }, + { + "artist": "Future", + "position": 81, + "title": "Honest" + }, + { + "artist": "T-Pain Featuring B.o.B", + "position": 82, + "title": "Up Down (Do This All Day)" + }, + { + "artist": "Fall Out Boy", + "position": 83, + "title": "Alone Together" + }, + { + "artist": "Justin Bieber", + "position": 84, + "title": "All That Matters" + }, + { + "artist": "Aloe Blacc", + "position": 85, + "title": "The Man" + }, + { + "artist": "Scotty McCreery", + "position": 86, + "title": "See You Tonight" + }, + { + "artist": "Jacquie Lee", + "position": 87, + "title": "Angel" + }, + { + "artist": "Frankie Ballard", + "position": 88, + "title": "Helluva Life" + }, + { + "artist": "R. Kelly Featuring 2 Chainz", + "position": 89, + "title": "My Story" + }, + { + "artist": "Juicy J Featuring Wale & Trey Songz", + "position": 90, + "title": "Bounce It" + }, + { + "artist": "Arctic Monkeys", + "position": 91, + "title": "Do I Wanna Know?" + }, + { + "artist": "Ylvis", + "position": 92, + "title": "The Fox" + }, + { + "artist": "Rihanna", + "position": 93, + "title": "What Now" + }, + { + "artist": "One Direction", + "position": 94, + "title": "Best Song Ever" + }, + { + "artist": "Lupe Fiasco Featuring Ed Sheeran", + "position": 95, + "title": "Old School Love" + }, + { + "artist": "Eminem", + "position": 96, + "title": "Survival" + }, + { + "artist": "Danielle Bradbery", + "position": 97, + "title": "The Heart Of Dixie" + }, + { + "artist": "Drake Featuring Jay Z", + "position": 98, + "title": "Pound Cake / Paris Morton Music 2" + }, + { + "artist": "Childish Gambino", + "position": 99, + "title": "V. 3005" + }, + { + "artist": "Ariana Grande Featuring Big Sean", + "position": 100, + "title": "Right There" + } + ], + "title": "2013 - Hot 100" + }, + { + "songs": [ + { + "artist": "Rihanna", + "position": 1, + "title": "Diamonds" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "position": 2, + "title": "Thrift Shop" + }, + { + "artist": "Alicia Keys Featuring Nicki Minaj", + "position": 3, + "title": "Girl On Fire" + }, + { + "artist": "Kendrick Lamar", + "position": 4, + "title": "Swimming Pools (Drank)" + }, + { + "artist": "Kanye West, Jay-Z, Big Sean", + "position": 5, + "title": "Clique" + }, + { + "artist": "Miguel", + "position": 6, + "title": "Adorn" + }, + { + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "position": 7, + "title": "F**kin Problems" + }, + { + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "position": 8, + "title": "Bandz A Make Her Dance" + }, + { + "artist": "Frank Ocean", + "position": 9, + "title": "Thinkin Bout You" + }, + { + "artist": "Lil Wayne Featuring Detail", + "position": 10, + "title": "No Worries" + }, + { + "artist": "2 Chainz", + "position": 11, + "title": "I'm Different" + }, + { + "artist": "French Montana Featuring Rick Ross, Drake, Lil Wayne", + "position": 12, + "title": "Pop That" + }, + { + "artist": "The Weeknd", + "position": 13, + "title": "Wicked Games" + }, + { + "artist": "2 Chainz Featuring Kanye West", + "position": 14, + "title": "Birthday Song" + }, + { + "artist": "Wiz Khalifa Featuring The Weeknd", + "position": 15, + "title": "Remember You" + }, + { + "artist": "T.I. Featuring Lil Wayne", + "position": 16, + "title": "Ball" + }, + { + "artist": "Kanye West, Big Sean, Pusha T, 2 Chainz", + "position": 17, + "title": "Mercy" + }, + { + "artist": "2 Chainz Featuring Drake", + "position": 18, + "title": "No Lie" + }, + { + "artist": "Chris Brown", + "position": 19, + "title": "Don't Judge Me" + }, + { + "artist": "Rick Ross Featuring Wale & Drake", + "position": 20, + "title": "Diced Pineapples" + }, + { + "artist": "Kendrick Lamar Featuring Drake", + "position": 21, + "title": "Poetic Justice" + }, + { + "artist": "Chief Keef", + "position": 22, + "title": "Love Sosa" + }, + { + "artist": "Future", + "position": 23, + "title": "Turn On The Lights" + }, + { + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "position": 24, + "title": "Celebration" + }, + { + "artist": "Big Sean", + "position": 25, + "title": "Guap" + } + ], + "title": "2012 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "The Lumineers", + "position": 1, + "title": "Ho Hey" + }, + { + "artist": "Phillip Phillips", + "position": 2, + "title": "Home" + }, + { + "artist": "fun.", + "position": 3, + "title": "Some Nights" + }, + { + "artist": "Ed Sheeran", + "position": 4, + "title": "The A Team" + }, + { + "artist": "Imagine Dragons", + "position": 5, + "title": "It's Time" + }, + { + "artist": "Alex Clare", + "position": 6, + "title": "Too Close" + }, + { + "artist": "Of Monsters And Men", + "position": 7, + "title": "Little Talks" + }, + { + "artist": "Mumford & Sons", + "position": 8, + "title": "I Will Wait" + }, + { + "artist": "Imagine Dragons", + "position": 9, + "title": "Radioactive" + }, + { + "artist": "Muse", + "position": 10, + "title": "Madness" + }, + { + "artist": "Terry McDermott", + "position": 11, + "title": "Let It Be" + }, + { + "artist": "The Lumineers", + "position": 12, + "title": "Stubborn Love" + }, + { + "artist": "Passion Pit", + "position": 13, + "title": "Take A Walk" + }, + { + "artist": "fun.", + "position": 14, + "title": "Carry On" + }, + { + "artist": "Of Monsters And Men", + "position": 15, + "title": "Mountain Sound" + }, + { + "artist": "The Black Keys", + "position": 16, + "title": "Little Black Submarines" + }, + { + "artist": "Imagine Dragons", + "position": 17, + "title": "Demons" + }, + { + "artist": "Mumford & Sons", + "position": 18, + "title": "Babel" + }, + { + "artist": "Atlas Genius", + "position": 19, + "title": "Trojans" + }, + { + "artist": "The Lumineers", + "position": 20, + "title": "Flowers In Your Hair" + }, + { + "artist": "Three Days Grace", + "position": 21, + "title": "Chalk Outline" + }, + { + "artist": "Imagine Dragons", + "position": 22, + "title": "On Top Of The World" + }, + { + "artist": "Phillip Phillips", + "position": 23, + "title": "Gone, Gone, Gone" + }, + { + "artist": "The Lumineers", + "position": 24, + "title": "Slow It Down" + }, + { + "artist": "Ed Sheeran", + "position": 25, + "title": "Give Me Love" + } + ], + "title": "2012 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Bruno Mars", + "position": 1, + "title": "Locked Out Of Heaven" + }, + { + "artist": "Ke$ha", + "position": 2, + "title": "Die Young" + }, + { + "artist": "Rihanna", + "position": 3, + "title": "Diamonds" + }, + { + "artist": "Ne-Yo", + "position": 4, + "title": "Let Me Love You (Until You Learn To Love Yourself)" + }, + { + "artist": "Maroon 5", + "position": 5, + "title": "One More Night" + }, + { + "artist": "The Lumineers", + "position": 6, + "title": "Ho Hey" + }, + { + "artist": "Flo Rida", + "position": 7, + "title": "I Cry" + }, + { + "artist": "Phillip Phillips", + "position": 8, + "title": "Home" + }, + { + "artist": "fun.", + "position": 9, + "title": "Some Nights" + }, + { + "artist": "Justin Bieber Featuring Nicki Minaj", + "position": 10, + "title": "Beauty And A Beat" + }, + { + "artist": "P!nk", + "position": 11, + "title": "Try" + }, + { + "artist": "Ed Sheeran", + "position": 12, + "title": "The A Team" + }, + { + "artist": "Taylor Swift", + "position": 13, + "title": "I Knew You Were Trouble." + }, + { + "artist": "Swedish House Mafia Featuring John Martin", + "position": 14, + "title": "Don't You Worry Child" + }, + { + "artist": "Nicki Minaj", + "position": 15, + "title": "Va Va Voom" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "We Are Never Ever Getting Back Together" + }, + { + "artist": "Pitbull Featuring TJR", + "position": 17, + "title": "Don't Stop The Party" + }, + { + "artist": "Kelly Clarkson", + "position": 18, + "title": "Catch My Breath" + }, + { + "artist": "The Script Featuring will.i.am", + "position": 19, + "title": "Hall Of Fame" + }, + { + "artist": "One Direction", + "position": 20, + "title": "Little Things" + } + ], + "title": "2012 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Florida Georgia Line", + "position": 1, + "title": "Cruise" + }, + { + "artist": "Taylor Swift", + "position": 2, + "title": "We Are Never Ever Getting Back Together" + }, + { + "artist": "Hunter Hayes", + "position": 3, + "title": "Wanted" + }, + { + "artist": "Cassadee Pope", + "position": 4, + "title": "Stupid Boy" + }, + { + "artist": "The Band Perry", + "position": 5, + "title": "Better Dig Two" + }, + { + "artist": "Zac Brown Band", + "position": 6, + "title": "Goodbye In Her Eyes" + }, + { + "artist": "Kip Moore", + "position": 7, + "title": "Beer Money" + }, + { + "artist": "Justin Moore", + "position": 8, + "title": "Til My Last Day" + }, + { + "artist": "Gary Allan", + "position": 9, + "title": "Every Storm (Runs Out Of Rain)" + }, + { + "artist": "Eric Church", + "position": 10, + "title": "Creepin'" + }, + { + "artist": "Randy Houser", + "position": 11, + "title": "How Country Feels" + }, + { + "artist": "Carrie Underwood", + "position": 12, + "title": "Blown Away" + }, + { + "artist": "Luke Bryan", + "position": 13, + "title": "Kiss Tomorrow Goodbye" + }, + { + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "position": 14, + "title": "The Only Way I Know" + }, + { + "artist": "Little Big Town", + "position": 15, + "title": "Tornado" + }, + { + "artist": "Greg Bates", + "position": 16, + "title": "Did It For The Girl" + }, + { + "artist": "Brad Paisley", + "position": 17, + "title": "Southern Comfort Zone" + }, + { + "artist": "Jake Owen", + "position": 18, + "title": "The One That Got Away" + }, + { + "artist": "Lee Brice", + "position": 19, + "title": "Hard To Love" + }, + { + "artist": "Hunter Hayes", + "position": 20, + "title": "Somebody's Heartbreak" + }, + { + "artist": "Kenny Chesney", + "position": 21, + "title": "El Cerrito Place" + }, + { + "artist": "Taylor Swift", + "position": 22, + "title": "Begin Again" + }, + { + "artist": "Tim McGraw", + "position": 23, + "title": "One Of Those Nights" + }, + { + "artist": "Dierks Bentley", + "position": 24, + "title": "Tip It On Back" + }, + { + "artist": "Kacey Musgraves", + "position": 25, + "title": "Merry Go 'Round" + } + ], + "title": "2012 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Bruno Mars", + "position": 1, + "title": "Locked Out Of Heaven" + }, + { + "artist": "Rihanna", + "position": 2, + "title": "Diamonds" + }, + { + "artist": "The Lumineers", + "position": 3, + "title": "Ho Hey" + }, + { + "artist": "Ke$ha", + "position": 4, + "title": "Die Young" + }, + { + "artist": "Maroon 5", + "position": 5, + "title": "One More Night" + }, + { + "artist": "Flo Rida", + "position": 6, + "title": "I Cry" + }, + { + "artist": "Justin Bieber Featuring Nicki Minaj", + "position": 7, + "title": "Beauty And A Beat" + }, + { + "artist": "Phillip Phillips", + "position": 8, + "title": "Home" + }, + { + "artist": "fun.", + "position": 9, + "title": "Some Nights" + }, + { + "artist": "Taylor Swift", + "position": 10, + "title": "I Knew You Were Trouble." + }, + { + "artist": "Ne-Yo", + "position": 11, + "title": "Let Me Love You (Until You Learn To Love Yourself)" + }, + { + "artist": "Swedish House Mafia Featuring John Martin", + "position": 12, + "title": "Don't You Worry Child" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "position": 13, + "title": "Thrift Shop" + }, + { + "artist": "P!nk", + "position": 14, + "title": "Try" + }, + { + "artist": "will.i.am Featuring Britney Spears", + "position": 15, + "title": "Scream & Shout" + }, + { + "artist": "Alicia Keys Featuring Nicki Minaj", + "position": 16, + "title": "Girl On Fire" + }, + { + "artist": "Ed Sheeran", + "position": 17, + "title": "The A Team" + }, + { + "artist": "PSY", + "position": 18, + "title": "Gangnam Style" + }, + { + "artist": "Imagine Dragons", + "position": 19, + "title": "It's Time" + }, + { + "artist": "Florida Georgia Line", + "position": 20, + "title": "Cruise" + }, + { + "artist": "Kendrick Lamar", + "position": 21, + "title": "Swimming Pools (Drank)" + }, + { + "artist": "Kanye West, Jay-Z, Big Sean", + "position": 22, + "title": "Clique" + }, + { + "artist": "Miguel", + "position": 23, + "title": "Adorn" + }, + { + "artist": "Alex Clare", + "position": 24, + "title": "Too Close" + }, + { + "artist": "Mariah Carey", + "position": 25, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Nicki Minaj", + "position": 26, + "title": "Va Va Voom" + }, + { + "artist": "Taylor Swift", + "position": 27, + "title": "We Are Never Ever Getting Back Together" + }, + { + "artist": "Justin Bieber Featuring Big Sean", + "position": 28, + "title": "As Long As You Love Me" + }, + { + "artist": "Chris Brown", + "position": 29, + "title": "Don't Wake Me Up" + }, + { + "artist": "Pitbull Featuring TJR", + "position": 30, + "title": "Don't Stop The Party" + }, + { + "artist": "Of Monsters And Men", + "position": 31, + "title": "Little Talks" + }, + { + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "position": 32, + "title": "F**kin Problems" + }, + { + "artist": "Calvin Harris Featuring Florence Welch", + "position": 33, + "title": "Sweet Nothing" + }, + { + "artist": "Mumford & Sons", + "position": 34, + "title": "I Will Wait" + }, + { + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "position": 35, + "title": "Bandz A Make Her Dance" + }, + { + "artist": "Frank Ocean", + "position": 36, + "title": "Thinkin Bout You" + }, + { + "artist": "Hunter Hayes", + "position": 37, + "title": "Wanted" + }, + { + "artist": "The Script Featuring will.i.am", + "position": 38, + "title": "Hall Of Fame" + }, + { + "artist": "Lil Wayne Featuring Detail", + "position": 39, + "title": "No Worries" + }, + { + "artist": "Cassadee Pope", + "position": 40, + "title": "Stupid Boy" + }, + { + "artist": "The Band Perry", + "position": 41, + "title": "Better Dig Two" + }, + { + "artist": "2 Chainz", + "position": 42, + "title": "I'm Different" + }, + { + "artist": "Ellie Goulding", + "position": 43, + "title": "Lights" + }, + { + "artist": "P!nk", + "position": 44, + "title": "Blow Me (One Last Kiss)" + }, + { + "artist": "Carly Rae Jepsen", + "position": 45, + "title": "Call Me Maybe" + }, + { + "artist": "One Direction", + "position": 46, + "title": "Little Things" + }, + { + "artist": "Ellie Goulding", + "position": 47, + "title": "Anything Could Happen" + }, + { + "artist": "Gotye Featuring Kimbra", + "position": 48, + "title": "Somebody That I Used To Know" + }, + { + "artist": "Kelly Clarkson", + "position": 49, + "title": "Catch My Breath" + }, + { + "artist": "Zac Brown Band", + "position": 50, + "title": "Goodbye In Her Eyes" + }, + { + "artist": "Kip Moore", + "position": 51, + "title": "Beer Money" + }, + { + "artist": "OneRepublic", + "position": 52, + "title": "Feel Again" + }, + { + "artist": "Justin Moore", + "position": 53, + "title": "Til My Last Day" + }, + { + "artist": "Gary Allan", + "position": 54, + "title": "Every Storm (Runs Out Of Rain)" + }, + { + "artist": "Imagine Dragons", + "position": 55, + "title": "Radioactive" + }, + { + "artist": "Eric Church", + "position": 56, + "title": "Creepin'" + }, + { + "artist": "Randy Houser", + "position": 57, + "title": "How Country Feels" + }, + { + "artist": "Maroon 5", + "position": 58, + "title": "Daylight" + }, + { + "artist": "Luke Bryan", + "position": 59, + "title": "Kiss Tomorrow Goodbye" + }, + { + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "position": 60, + "title": "The Only Way I Know" + }, + { + "artist": "The Weeknd", + "position": 61, + "title": "Wicked Games" + }, + { + "artist": "2 Chainz Featuring Kanye West", + "position": 62, + "title": "Birthday Song" + }, + { + "artist": "Wiz Khalifa Featuring The Weeknd", + "position": 63, + "title": "Remember You" + }, + { + "artist": "T.I. Featuring Lil Wayne", + "position": 64, + "title": "Ball" + }, + { + "artist": "Muse", + "position": 65, + "title": "Madness" + }, + { + "artist": "Little Big Town", + "position": 66, + "title": "Tornado" + }, + { + "artist": "Greg Bates", + "position": 67, + "title": "Did It For The Girl" + }, + { + "artist": "Chris Brown", + "position": 68, + "title": "Don't Judge Me" + }, + { + "artist": "Brad Paisley", + "position": 69, + "title": "Southern Comfort Zone" + }, + { + "artist": "Terry McDermott", + "position": 70, + "title": "Let It Be" + }, + { + "artist": "Jake Owen", + "position": 71, + "title": "The One That Got Away" + }, + { + "artist": "Adele", + "position": 72, + "title": "Skyfall" + }, + { + "artist": "Hunter Hayes", + "position": 73, + "title": "Somebody's Heartbreak" + }, + { + "artist": "Kenny Chesney", + "position": 74, + "title": "El Cerrito Place" + }, + { + "artist": "Taylor Swift", + "position": 75, + "title": "Begin Again" + }, + { + "artist": "Rick Ross Featuring Wale & Drake", + "position": 76, + "title": "Diced Pineapples" + }, + { + "artist": "Kendrick Lamar Featuring Drake", + "position": 77, + "title": "Poetic Justice" + }, + { + "artist": "One Direction", + "position": 78, + "title": "Live While We're Young" + }, + { + "artist": "Tim McGraw", + "position": 79, + "title": "One Of Those Nights" + }, + { + "artist": "Ludacris Featuring Usher & David Guetta", + "position": 80, + "title": "Rest Of My Life" + }, + { + "artist": "The Lumineers", + "position": 81, + "title": "Stubborn Love" + }, + { + "artist": "Chief Keef", + "position": 82, + "title": "Love Sosa" + }, + { + "artist": "Future", + "position": 83, + "title": "Turn On The Lights" + }, + { + "artist": "Dierks Bentley", + "position": 84, + "title": "Tip It On Back" + }, + { + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "position": 85, + "title": "Celebration" + }, + { + "artist": "Passion Pit", + "position": 86, + "title": "Take A Walk" + }, + { + "artist": "Bridgit Mendler", + "position": 87, + "title": "Ready Or Not" + }, + { + "artist": "Kacey Musgraves", + "position": 88, + "title": "Merry Go 'Round" + }, + { + "artist": "Big Sean", + "position": 89, + "title": "Guap" + }, + { + "artist": "Carrie Underwood", + "position": 90, + "title": "Two Black Cadillacs" + }, + { + "artist": "Future", + "position": 91, + "title": "Neva End" + }, + { + "artist": "Meek Mill Featuring Kirko Bangz", + "position": 92, + "title": "Young & Gettin' It" + }, + { + "artist": "Jonn Hart Featuring iamSU", + "position": 93, + "title": "Who Booty" + }, + { + "artist": "Kelly Rowland Featuring Lil Wayne", + "position": 94, + "title": "Ice" + }, + { + "artist": "Beyonce", + "position": 95, + "title": "Dance For You" + }, + { + "artist": "Trinidad James", + "position": 96, + "title": "All Gold Everything" + }, + { + "artist": "Tamar Braxton", + "position": 97, + "title": "Love And War" + }, + { + "artist": "Ludacris Featuring Kelly Rowland", + "position": 98, + "title": "Representin'" + }, + { + "artist": "50 Cent Featuring Eminem & Adam Levine", + "position": 99, + "title": "My Life" + }, + { + "artist": "Enrique Iglesias Featuring Sammy Adams", + "position": 100, + "title": "Finally Found You" + } + ], + "title": "2012 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Black Keys", + "position": 1, + "title": "Lonely Boy" + }, + { + "artist": "Bush", + "position": 2, + "title": "The Sound Of Winter" + }, + { + "artist": "Chevelle", + "position": 3, + "title": "Face To The Floor" + }, + { + "artist": "Coldplay", + "position": 4, + "title": "Paradise" + }, + { + "artist": "Foo Fighters", + "position": 5, + "title": "Walk" + }, + { + "artist": "Foo Fighters", + "position": 6, + "title": "These Days" + }, + { + "artist": "Seether", + "position": 7, + "title": "Tonight" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 8, + "title": "The Adventures Of Rain Dance Maggie" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 9, + "title": "Monarchy Of Roses" + }, + { + "artist": "Avenged Sevenfold", + "position": 10, + "title": "Buried Alive" + }, + { + "artist": "Nickelback", + "position": 11, + "title": "Bottoms Up" + }, + { + "artist": "Florence + The Machine", + "position": 12, + "title": "Shake It Out" + }, + { + "artist": "Staind", + "position": 13, + "title": "Not Again" + }, + { + "artist": "Young The Giant", + "position": 14, + "title": "Cough Syrup" + }, + { + "artist": "Foster The People", + "position": 15, + "title": "Pumped Up Kicks" + }, + { + "artist": "Evanescence", + "position": 16, + "title": "What You Want" + }, + { + "artist": "Switchfoot", + "position": 17, + "title": "Dark Horses" + }, + { + "artist": "Korn Featuring Skrillex & Kill The Noise", + "position": 18, + "title": "Narcissistic Cannibal" + }, + { + "artist": "Adelitas Way", + "position": 19, + "title": "The Collapse" + }, + { + "artist": "Foo Fighters", + "position": 20, + "title": "Rope" + }, + { + "artist": "Foster The People", + "position": 21, + "title": "Helena Beat" + }, + { + "artist": "Volbeat", + "position": 22, + "title": "A Warrior's Call" + }, + { + "artist": "Blink-182", + "position": 23, + "title": "After Midnight" + }, + { + "artist": "Foster The People", + "position": 24, + "title": "Don't Stop (Color On The Walls)" + }, + { + "artist": "Cage The Elephant", + "position": 25, + "title": "Aberdeen" + } + ], + "title": "2011 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Rihanna Featuring Calvin Harris", + "position": 1, + "title": "We Found Love" + }, + { + "artist": "Bruno Mars", + "position": 2, + "title": "It Will Rain" + }, + { + "artist": "Katy Perry", + "position": 3, + "title": "The One That Got Away" + }, + { + "artist": "LMFAO", + "position": 4, + "title": "Sexy And I Know It" + }, + { + "artist": "David Guetta Featuring Usher", + "position": 5, + "title": "Without You" + }, + { + "artist": "Flo Rida", + "position": 6, + "title": "Good Feeling" + }, + { + "artist": "Gym Class Heroes Featuring Adam Levine", + "position": 7, + "title": "Stereo Hearts" + }, + { + "artist": "Maroon 5 Featuring Christina Aguilera", + "position": 8, + "title": "Moves Like Jagger" + }, + { + "artist": "Selena Gomez & The Scene", + "position": 9, + "title": "Love You Like A Love Song" + }, + { + "artist": "Adele", + "position": 10, + "title": "Someone Like You" + }, + { + "artist": "Kelly Clarkson", + "position": 11, + "title": "Mr. Know It All" + }, + { + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "position": 12, + "title": "5 O'Clock" + }, + { + "artist": "Cobra Starship Featuring Sabi", + "position": 13, + "title": "You Make Me Feel..." + }, + { + "artist": "Lady Gaga", + "position": 14, + "title": "Marry The Night" + }, + { + "artist": "Gavin DeGraw", + "position": 15, + "title": "Not Over You" + }, + { + "artist": "Jessie J", + "position": 16, + "title": "Domino" + }, + { + "artist": "Drake", + "position": 17, + "title": "Headlines" + }, + { + "artist": "Adele", + "position": 18, + "title": "Set Fire To The Rain" + }, + { + "artist": "Dev", + "position": 19, + "title": "In The Dark" + }, + { + "artist": "Rihanna", + "position": 20, + "title": "You Da One" + } + ], + "title": "2011 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Zac Brown Band", + "position": 1, + "title": "Keep Me In Mind" + }, + { + "artist": "Jason Aldean", + "position": 2, + "title": "Tattoos On This Town" + }, + { + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "position": 3, + "title": "Easy" + }, + { + "artist": "David Nail", + "position": 4, + "title": "Let It Rain" + }, + { + "artist": "Luke Bryan", + "position": 5, + "title": "I Don't Want This Night To End" + }, + { + "artist": "Eric Church", + "position": 6, + "title": "Drink In My Hand" + }, + { + "artist": "Lady Antebellum", + "position": 7, + "title": "We Owned The Night" + }, + { + "artist": "Chris Young", + "position": 8, + "title": "You" + }, + { + "artist": "The Band Perry", + "position": 9, + "title": "All Your Life" + }, + { + "artist": "Kenny Chesney", + "position": 10, + "title": "Reality" + }, + { + "artist": "Keith Urban", + "position": 11, + "title": "You Gonna Fly" + }, + { + "artist": "Martina McBride", + "position": 12, + "title": "I'm Gonna Love You Through It" + }, + { + "artist": "Dierks Bentley", + "position": 13, + "title": "Home" + }, + { + "artist": "Toby Keith", + "position": 14, + "title": "Red Solo Cup" + }, + { + "artist": "Brad Paisley", + "position": 15, + "title": "Camouflage" + }, + { + "artist": "Hunter Hayes", + "position": 16, + "title": "Storm Warning" + }, + { + "artist": "George Strait", + "position": 17, + "title": "Love's Gonna Make It Alright" + }, + { + "artist": "Edens Edge", + "position": 18, + "title": "Amen" + }, + { + "artist": "Montgomery Gentry", + "position": 19, + "title": "Where I Come From" + }, + { + "artist": "Justin Moore", + "position": 20, + "title": "Bait A Hook" + }, + { + "artist": "Jake Owen", + "position": 21, + "title": "Alone With You" + }, + { + "artist": "Taylor Swift", + "position": 22, + "title": "Ours" + }, + { + "artist": "Sara Evans", + "position": 23, + "title": "My Heart Can't Tell You No" + }, + { + "artist": "James Wesley", + "position": 24, + "title": "Didn't I" + }, + { + "artist": "Scotty McCreery", + "position": 25, + "title": "The Trouble With Girls" + } + ], + "title": "2011 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Rihanna Featuring Calvin Harris", + "position": 1, + "title": "We Found Love" + }, + { + "artist": "LMFAO", + "position": 2, + "title": "Sexy And I Know It" + }, + { + "artist": "Bruno Mars", + "position": 3, + "title": "It Will Rain" + }, + { + "artist": "Flo Rida", + "position": 4, + "title": "Good Feeling" + }, + { + "artist": "Katy Perry", + "position": 5, + "title": "The One That Got Away" + }, + { + "artist": "Jay Z Kanye West", + "position": 6, + "title": "Ni**as in Paris" + }, + { + "artist": "Adele", + "position": 7, + "title": "Someone Like You" + }, + { + "artist": "David Guetta Featuring Usher", + "position": 8, + "title": "Without You" + }, + { + "artist": "Maroon 5 Featuring Christina Aguilera", + "position": 9, + "title": "Moves Like Jagger" + }, + { + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "position": 10, + "title": "5 O'Clock" + }, + { + "artist": "Gym Class Heroes Featuring Adam Levine", + "position": 11, + "title": "Stereo Hearts" + }, + { + "artist": "Big Sean Featuring Nicki Minaj", + "position": 12, + "title": "Dance (A$$)" + }, + { + "artist": "Adele", + "position": 13, + "title": "Set Fire To The Rain" + }, + { + "artist": "J. Cole", + "position": 14, + "title": "Work Out" + }, + { + "artist": "LMFAO Featuring Lauren Bennett & GoonRock", + "position": 15, + "title": "Party Rock Anthem" + }, + { + "artist": "Drake", + "position": 16, + "title": "Headlines" + }, + { + "artist": "Toby Keith", + "position": 17, + "title": "Red Solo Cup" + }, + { + "artist": "Snoop Dogg & Wiz Khalifa Featuring Bruno Mars", + "position": 18, + "title": "Young, Wild & Free" + }, + { + "artist": "Foster The People", + "position": 19, + "title": "Pumped Up Kicks" + }, + { + "artist": "Cobra Starship Featuring Sabi", + "position": 20, + "title": "You Make Me Feel..." + }, + { + "artist": "Kelly Clarkson", + "position": 21, + "title": "Mr. Know It All" + }, + { + "artist": "Gavin DeGraw", + "position": 22, + "title": "Not Over You" + }, + { + "artist": "Luke Bryan", + "position": 23, + "title": "I Don't Want This Night To End" + }, + { + "artist": "Drake Featuring Nicki Minaj", + "position": 24, + "title": "Make Me Proud" + }, + { + "artist": "Rihanna", + "position": 25, + "title": "You Da One" + }, + { + "artist": "Selena Gomez & The Scene", + "position": 26, + "title": "Love You Like A Love Song" + }, + { + "artist": "Pitbull Featuring Ne-Yo, Afrojack & Nayer", + "position": 27, + "title": "Give Me Everything" + }, + { + "artist": "Jessie J", + "position": 28, + "title": "Domino" + }, + { + "artist": "Drake Featuring Lil Wayne", + "position": 29, + "title": "The Motto" + }, + { + "artist": "Pitbull Featuring Chris Brown", + "position": 30, + "title": "International Love" + }, + { + "artist": "Lady Antebellum", + "position": 31, + "title": "Just A Kiss" + }, + { + "artist": "Justin Bieber", + "position": 32, + "title": "Mistletoe" + }, + { + "artist": "Lady Gaga", + "position": 33, + "title": "Marry The Night" + }, + { + "artist": "Nicki Minaj", + "position": 34, + "title": "Super Bass" + }, + { + "artist": "Lil Wayne Featuring Drake", + "position": 35, + "title": "She Will" + }, + { + "artist": "Zac Brown Band", + "position": 36, + "title": "Keep Me In Mind" + }, + { + "artist": "Ke$ha Featuring Lil Wayne, Wiz Khalifa, T.I. & Andre 3000", + "position": 37, + "title": "Sleazy Remix 2.0 Get Sleazier" + }, + { + "artist": "Wale Featuring Miguel", + "position": 38, + "title": "Lotus Flower Bomb" + }, + { + "artist": "Coldplay", + "position": 39, + "title": "Paradise" + }, + { + "artist": "Dev", + "position": 40, + "title": "In The Dark" + }, + { + "artist": "Adele", + "position": 41, + "title": "Rolling In The Deep" + }, + { + "artist": "Jason Aldean", + "position": 42, + "title": "Tattoos On This Town" + }, + { + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "position": 43, + "title": "Easy" + }, + { + "artist": "Hot Chelle Rae Featuring New Boyz", + "position": 44, + "title": "I Like It Like That" + }, + { + "artist": "Eric Church", + "position": 45, + "title": "Drink In My Hand" + }, + { + "artist": "Nicki Minaj Featuring Rihanna", + "position": 46, + "title": "Fly" + }, + { + "artist": "Taylor Swift", + "position": 47, + "title": "Ours" + }, + { + "artist": "Blake Shelton", + "position": 48, + "title": "God Gave Me You" + }, + { + "artist": "Breathe Carolina", + "position": 49, + "title": "Blackout" + }, + { + "artist": "Lady Antebellum", + "position": 50, + "title": "We Owned The Night" + }, + { + "artist": "David Nail", + "position": 51, + "title": "Let It Rain" + }, + { + "artist": "Chris Young", + "position": 52, + "title": "You" + }, + { + "artist": "The Band Perry", + "position": 53, + "title": "All Your Life" + }, + { + "artist": "Jason Derulo", + "position": 54, + "title": "It Girl" + }, + { + "artist": "B.o.B Featuring Lil Wayne", + "position": 55, + "title": "Strange Clouds" + }, + { + "artist": "Tyga", + "position": 56, + "title": "Rack City" + }, + { + "artist": "Beyonce Featuring Andre 3000", + "position": 57, + "title": "Party" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 58, + "title": "Take Care" + }, + { + "artist": "Glee Cast", + "position": 59, + "title": "We Are Young" + }, + { + "artist": "Christina Perri", + "position": 60, + "title": "A Thousand Years" + }, + { + "artist": "Outasight", + "position": 61, + "title": "Tonight Is The Night" + }, + { + "artist": "Lady Gaga", + "position": 62, + "title": "You And I" + }, + { + "artist": "The Fray", + "position": 63, + "title": "Heartbeat" + }, + { + "artist": "Colbie Caillat", + "position": 64, + "title": "Brighter Than The Sun" + }, + { + "artist": "J. Cole Featuring Trey Songz", + "position": 65, + "title": "Can't Get Enough" + }, + { + "artist": "Nickelback", + "position": 66, + "title": "When We Stand Together" + }, + { + "artist": "Rick Ross Featuring Nicki Minaj", + "position": 67, + "title": "You The Boss" + }, + { + "artist": "David Guetta Featuring Nicki Minaj", + "position": 68, + "title": "Turn Me On" + }, + { + "artist": "The Black Keys", + "position": 69, + "title": "Lonely Boy" + }, + { + "artist": "Miranda Lambert", + "position": 70, + "title": "Baggage Claim" + }, + { + "artist": "Martina McBride", + "position": 71, + "title": "I'm Gonna Love You Through It" + }, + { + "artist": "Jake Owen", + "position": 72, + "title": "Alone With You" + }, + { + "artist": "Wale Featuring Jeremih & Rick Ross", + "position": 73, + "title": "That Way" + }, + { + "artist": "Dierks Bentley", + "position": 74, + "title": "Home" + }, + { + "artist": "T-Pain Featuring Lil Wayne", + "position": 75, + "title": "Bang Bang Pow Pow" + }, + { + "artist": "Kenny Chesney", + "position": 76, + "title": "Reality" + }, + { + "artist": "Avicii", + "position": 77, + "title": "Levels" + }, + { + "artist": "Fun. Featuring Janelle Monae", + "position": 78, + "title": "We Are Young" + }, + { + "artist": "Keith Urban", + "position": 79, + "title": "You Gonna Fly" + }, + { + "artist": "Avril Lavigne", + "position": 80, + "title": "Wish You Were Here" + }, + { + "artist": "Tim McGraw", + "position": 81, + "title": "Better Than I Used To Be" + }, + { + "artist": "Florence + The Machine", + "position": 82, + "title": "Shake It Out" + }, + { + "artist": "Justin Moore", + "position": 83, + "title": "Bait A Hook" + }, + { + "artist": "Scotty McCreery", + "position": 84, + "title": "The Trouble With Girls" + }, + { + "artist": "Hunter Hayes", + "position": 85, + "title": "Storm Warning" + }, + { + "artist": "Waka Flocka Flame Featuring Drake", + "position": 86, + "title": "Round Of Applause" + }, + { + "artist": "The Script", + "position": 87, + "title": "Nothing" + }, + { + "artist": "Brad Paisley", + "position": 88, + "title": "Camouflage" + }, + { + "artist": "AWOLNATION", + "position": 89, + "title": "Sail" + }, + { + "artist": "Edens Edge", + "position": 90, + "title": "Amen" + }, + { + "artist": "Beyonce", + "position": 91, + "title": "Countdown" + }, + { + "artist": "Glee Cast", + "position": 92, + "title": "Do They Know It's Christmas?" + }, + { + "artist": "Grouplove", + "position": 93, + "title": "Tongue Tied" + }, + { + "artist": "Beyonce", + "position": 94, + "title": "Love On Top" + }, + { + "artist": "Thompson Square", + "position": 95, + "title": "I Got You" + }, + { + "artist": "Lee Brice", + "position": 96, + "title": "A Woman Like You" + }, + { + "artist": "Romeo Santos Featuring Usher", + "position": 97, + "title": "Promise" + }, + { + "artist": "Roscoe Dash", + "position": 98, + "title": "Good Good Night" + }, + { + "artist": "Michael Buble", + "position": 99, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Gym Class Heroes Featuring Neon Hitch", + "position": 100, + "title": "Ass Back Home" + } + ], + "title": "2011 - Hot 100" + }, + { + "songs": [ + { + "artist": "Trey Songz", + "position": 1, + "title": "Can't Be Friends" + }, + { + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "position": 2, + "title": "Aston Martin Music" + }, + { + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "position": 3, + "title": "No Hands" + }, + { + "artist": "Nicki Minaj", + "position": 4, + "title": "Right Thru Me" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 5, + "title": "What's My Name?" + }, + { + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "position": 6, + "title": "Deuces" + }, + { + "artist": "Lloyd", + "position": 7, + "title": "Lay It Down" + }, + { + "artist": "Twista Featuring Chris Brown", + "position": 8, + "title": "Make A Movie" + }, + { + "artist": "Willow", + "position": 9, + "title": "Whip My Hair" + }, + { + "artist": "Wiz Khalifa", + "position": 10, + "title": "Black And Yellow" + }, + { + "artist": "Chris Brown", + "position": 11, + "title": "No BS" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 12, + "title": "Bottoms Up" + }, + { + "artist": "Fantasia", + "position": 13, + "title": "I'm Doing Me" + }, + { + "artist": "Lil Wayne Featuring Drake", + "position": 14, + "title": "Right Above It" + }, + { + "artist": "Miguel Featuring J. Cole", + "position": 15, + "title": "All I Want Is You" + }, + { + "artist": "Charlie Wilson", + "position": 16, + "title": "You Are" + }, + { + "artist": "Jamie Foxx Featuring Drake", + "position": 17, + "title": "Fall For Your Type" + }, + { + "artist": "Ne-Yo", + "position": 18, + "title": "One In A Million" + }, + { + "artist": "Keri Hilson", + "position": 19, + "title": "Pretty Girl Rock" + }, + { + "artist": "R. Kelly", + "position": 20, + "title": "When A Woman Loves" + }, + { + "artist": "Eric Benet", + "position": 21, + "title": "Sometimes I Cry" + }, + { + "artist": "Diddy - Dirty Money Featuring Drake", + "position": 22, + "title": "Loving You No More" + }, + { + "artist": "Jazmine Sullivan", + "position": 23, + "title": "10 Seconds" + }, + { + "artist": "Usher", + "position": 24, + "title": "There Goes My Baby" + }, + { + "artist": "Jazmine Sullivan", + "position": 25, + "title": "Holding You Down (Goin In Circles)" + } + ], + "title": "2010 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "The Black Keys", + "position": 1, + "title": "Tighten Up" + }, + { + "artist": "Linkin Park", + "position": 2, + "title": "Waiting For The End" + }, + { + "artist": "Stone Sour", + "position": 3, + "title": "Say You'll Haunt Me" + }, + { + "artist": "Three Days Grace", + "position": 4, + "title": "World So Cold" + }, + { + "artist": "Neon Trees", + "position": 5, + "title": "Animal" + }, + { + "artist": "Mumford & Sons", + "position": 6, + "title": "Little Lion Man" + }, + { + "artist": "Kings Of Leon", + "position": 7, + "title": "Radioactive" + }, + { + "artist": "My Darkest Days Featuring Zakk Wylde", + "position": 8, + "title": "Porn Star Dancing" + }, + { + "artist": "Godsmack", + "position": 9, + "title": "Love-Hate-Sex-Pain" + }, + { + "artist": "Muse", + "position": 10, + "title": "Undisclosed Desires" + }, + { + "artist": "Saving Abel", + "position": 11, + "title": "The Sex Is Good" + }, + { + "artist": "Florence + The Machine", + "position": 12, + "title": "Dog Days Are Over" + }, + { + "artist": "Cake", + "position": 13, + "title": "Sick Of You" + }, + { + "artist": "Cage The Elephant", + "position": 14, + "title": "Shake Me Down" + }, + { + "artist": "My Chemical Romance", + "position": 15, + "title": "Sing" + }, + { + "artist": "Disturbed", + "position": 16, + "title": "The Animal" + }, + { + "artist": "The Dirty Heads Featuring Rome", + "position": 17, + "title": "Lay Me Down" + }, + { + "artist": "Phoenix", + "position": 18, + "title": "Lisztomania" + }, + { + "artist": "Sick Puppies", + "position": 19, + "title": "Maybe" + }, + { + "artist": "Alter Bridge", + "position": 20, + "title": "Isolation" + }, + { + "artist": "Avenged Sevenfold", + "position": 21, + "title": "Welcome To The Family" + }, + { + "artist": "10 Years", + "position": 22, + "title": "Shoot It Out" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 23, + "title": "Closer To The Edge" + }, + { + "artist": "Hinder", + "position": 24, + "title": "All American Nightmare" + }, + { + "artist": "Five Finger Death Punch", + "position": 25, + "title": "Far From Home" + } + ], + "title": "2010 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "P!nk", + "position": 1, + "title": "Raise Your Glass" + }, + { + "artist": "Rihanna", + "position": 2, + "title": "Only Girl (In The World)" + }, + { + "artist": "Nelly", + "position": 3, + "title": "Just A Dream" + }, + { + "artist": "Ke$ha", + "position": 4, + "title": "We R Who We R" + }, + { + "artist": "Katy Perry", + "position": 5, + "title": "Firework" + }, + { + "artist": "Bruno Mars", + "position": 6, + "title": "Just The Way You Are" + }, + { + "artist": "Far*East Movement Featuring Cataracs & Dev", + "position": 7, + "title": "Like A G6" + }, + { + "artist": "Bruno Mars", + "position": 8, + "title": "Grenade" + }, + { + "artist": "Mike Posner", + "position": 9, + "title": "Please Don't Go" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 10, + "title": "What's My Name?" + }, + { + "artist": "Usher Featuring Pitbull", + "position": 11, + "title": "DJ Got Us Fallin' In Love" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 12, + "title": "Bottoms Up" + }, + { + "artist": "The Black Eyed Peas", + "position": 13, + "title": "The Time (Dirty Bit)" + }, + { + "artist": "Neon Trees", + "position": 14, + "title": "Animal" + }, + { + "artist": "Taio Cruz", + "position": 15, + "title": "Dynamite" + }, + { + "artist": "The Ready Set", + "position": 16, + "title": "Love Like Woe" + }, + { + "artist": "Katy Perry", + "position": 17, + "title": "Teenage Dream" + }, + { + "artist": "Edward Maya & Vika Jigulina", + "position": 18, + "title": "Stereo Love" + }, + { + "artist": "Chris Brown", + "position": 19, + "title": "Yeah 3X" + }, + { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "position": 20, + "title": "Tonight (I'm Lovin' You)" + } + ], + "title": "2010 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Rascal Flatts", + "position": 1, + "title": "Why Wait" + }, + { + "artist": "Reba", + "position": 2, + "title": "Turn On The Radio" + }, + { + "artist": "Jason Aldean", + "position": 3, + "title": "My Kinda Party" + }, + { + "artist": "Carrie Underwood", + "position": 4, + "title": "Mama's Song" + }, + { + "artist": "Tim McGraw", + "position": 5, + "title": "Felt Good On My Lips" + }, + { + "artist": "Zac Brown Band Featuring Alan Jackson", + "position": 6, + "title": "As She's Walking Away" + }, + { + "artist": "Kenny Chesney", + "position": 7, + "title": "Somewhere With You" + }, + { + "artist": "George Strait", + "position": 8, + "title": "The Breath You Take" + }, + { + "artist": "The Band Perry", + "position": 9, + "title": "If I Die Young" + }, + { + "artist": "Chris Young", + "position": 10, + "title": "Voices" + }, + { + "artist": "Keith Urban", + "position": 11, + "title": "Put You In A Song" + }, + { + "artist": "Miranda Lambert", + "position": 12, + "title": "Only Prettier" + }, + { + "artist": "Luke Bryan", + "position": 13, + "title": "Someone Else Calling You Baby" + }, + { + "artist": "Blake Shelton", + "position": 14, + "title": "Who Are You When I'm Not Looking" + }, + { + "artist": "Lady Antebellum", + "position": 15, + "title": "Hello World" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "Back To December" + }, + { + "artist": "Toby Keith", + "position": 17, + "title": "Bullets In The Gun" + }, + { + "artist": "Billy Currington", + "position": 18, + "title": "Let Me Down Easy" + }, + { + "artist": "Brad Paisley", + "position": 19, + "title": "This Is Country Music" + }, + { + "artist": "Eric Church", + "position": 20, + "title": "Smoke A Little Smoke" + }, + { + "artist": "Sunny Sweeney", + "position": 21, + "title": "From A Table Away" + }, + { + "artist": "The JaneDear Girls", + "position": 22, + "title": "Wildflower" + }, + { + "artist": "Joe Nichols", + "position": 23, + "title": "The Shape I'm In" + }, + { + "artist": "Jerrod Niemann", + "position": 24, + "title": "What Do You Want" + }, + { + "artist": "Jason Aldean With Kelly Clarkson", + "position": 25, + "title": "Don't You Wanna Stay" + } + ], + "title": "2010 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Katy Perry", + "position": 1, + "title": "Firework" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 2, + "title": "What's My Name?" + }, + { + "artist": "Bruno Mars", + "position": 3, + "title": "Grenade" + }, + { + "artist": "P!nk", + "position": 4, + "title": "Raise Your Glass" + }, + { + "artist": "Ke$ha", + "position": 5, + "title": "We R Who We R" + }, + { + "artist": "Rihanna", + "position": 6, + "title": "Only Girl (In The World)" + }, + { + "artist": "Bruno Mars", + "position": 7, + "title": "Just The Way You Are" + }, + { + "artist": "The Black Eyed Peas", + "position": 8, + "title": "The Time (Dirty Bit)" + }, + { + "artist": "Nelly", + "position": 9, + "title": "Just A Dream" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 10, + "title": "Bottoms Up" + }, + { + "artist": "Wiz Khalifa", + "position": 11, + "title": "Black And Yellow" + }, + { + "artist": "Far*East Movement Featuring Cataracs & Dev", + "position": 12, + "title": "Like A G6" + }, + { + "artist": "Usher Featuring Pitbull", + "position": 13, + "title": "DJ Got Us Fallin' In Love" + }, + { + "artist": "Taio Cruz", + "position": 14, + "title": "Dynamite" + }, + { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "position": 15, + "title": "Tonight (I'm Lovin' You)" + }, + { + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "position": 16, + "title": "No Hands" + }, + { + "artist": "Mike Posner", + "position": 17, + "title": "Please Don't Go" + }, + { + "artist": "T.I. Featuring Eminem", + "position": 18, + "title": "That's All She Wrote" + }, + { + "artist": "Edward Maya & Vika Jigulina", + "position": 19, + "title": "Stereo Love" + }, + { + "artist": "Katy Perry", + "position": 20, + "title": "Teenage Dream" + }, + { + "artist": "Neon Trees", + "position": 21, + "title": "Animal" + }, + { + "artist": "Chris Brown", + "position": 22, + "title": "Yeah 3X" + }, + { + "artist": "Cee Lo Green", + "position": 23, + "title": "F**k You (Forget You)" + }, + { + "artist": "Diddy - Dirty Money Featuring Skylar Grey", + "position": 24, + "title": "Coming Home" + }, + { + "artist": "OneRepublic", + "position": 25, + "title": "Secrets" + }, + { + "artist": "Nicki Minaj", + "position": 26, + "title": "Right Thru Me" + }, + { + "artist": "Willow", + "position": 27, + "title": "Whip My Hair" + }, + { + "artist": "The Band Perry", + "position": 28, + "title": "If I Die Young" + }, + { + "artist": "Lil Wayne Featuring Drake", + "position": 29, + "title": "Right Above It" + }, + { + "artist": "Flo Rida Featuring David Guetta", + "position": 30, + "title": "Club Can't Handle Me" + }, + { + "artist": "Enrique Iglesias Featuring Pitbull", + "position": 31, + "title": "I Like It" + }, + { + "artist": "Pitbull Featuring T-Pain", + "position": 32, + "title": "Hey Baby (Drop It To The Floor)" + }, + { + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "position": 33, + "title": "Aston Martin Music" + }, + { + "artist": "Taylor Swift", + "position": 34, + "title": "Back To December" + }, + { + "artist": "Coldplay", + "position": 35, + "title": "Christmas Lights" + }, + { + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "position": 36, + "title": "Deuces" + }, + { + "artist": "Kenny Chesney", + "position": 37, + "title": "Somewhere With You" + }, + { + "artist": "Eminem Featuring Lil Wayne", + "position": 38, + "title": "No Love" + }, + { + "artist": "Jason Aldean", + "position": 39, + "title": "My Kinda Party" + }, + { + "artist": "Eminem Featuring Rihanna", + "position": 40, + "title": "Love The Way You Lie" + }, + { + "artist": "Tim McGraw", + "position": 41, + "title": "Felt Good On My Lips" + }, + { + "artist": "The Ready Set", + "position": 42, + "title": "Love Like Woe" + }, + { + "artist": "Sugarland", + "position": 43, + "title": "Stuck Like Glue" + }, + { + "artist": "Trey Songz", + "position": 44, + "title": "Can't Be Friends" + }, + { + "artist": "Keri Hilson", + "position": 45, + "title": "Pretty Girl Rock" + }, + { + "artist": "David Guetta Featuring Kid Cudi", + "position": 46, + "title": "Memories" + }, + { + "artist": "Zac Brown Band Featuring Alan Jackson", + "position": 47, + "title": "As She's Walking Away" + }, + { + "artist": "Florence + The Machine", + "position": 48, + "title": "Dog Days Are Over" + }, + { + "artist": "Christina Perri", + "position": 49, + "title": "Jar Of Hearts" + }, + { + "artist": "Taylor Swift", + "position": 50, + "title": "Mine" + }, + { + "artist": "Yolanda Be Cool & Dcup", + "position": 51, + "title": "We No Speak Americano" + }, + { + "artist": "Dr. Dre Featuring Snoop Dogg & Akon", + "position": 52, + "title": "Kush" + }, + { + "artist": "Reba", + "position": 53, + "title": "Turn On The Radio" + }, + { + "artist": "Blake Shelton", + "position": 54, + "title": "Who Are You When I'm Not Looking" + }, + { + "artist": "Plain White T's", + "position": 55, + "title": "Rhythm of Love" + }, + { + "artist": "Carrie Underwood", + "position": 56, + "title": "Mama's Song" + }, + { + "artist": "Glee Cast", + "position": 57, + "title": "Baby, It's Cold Outside" + }, + { + "artist": "Rascal Flatts", + "position": 58, + "title": "Why Wait" + }, + { + "artist": "Glee Cast", + "position": 59, + "title": "Welcome Christmas" + }, + { + "artist": "Far*East Movement Featuring Ryan Tedder", + "position": 60, + "title": "Rocketeer" + }, + { + "artist": "Keith Urban", + "position": 61, + "title": "Put You In A Song" + }, + { + "artist": "Jeremih Featuring 50 Cent", + "position": 62, + "title": "Down On Me" + }, + { + "artist": "Miranda Lambert", + "position": 63, + "title": "Only Prettier" + }, + { + "artist": "Lloyd", + "position": 64, + "title": "Lay It Down" + }, + { + "artist": "Michael Jackson Duet With Akon", + "position": 65, + "title": "Hold My Hand" + }, + { + "artist": "George Strait", + "position": 66, + "title": "The Breath You Take" + }, + { + "artist": "Flo Rida Featuring Akon", + "position": 67, + "title": "Who Dat Girl" + }, + { + "artist": "Adele", + "position": 68, + "title": "Rolling In The Deep" + }, + { + "artist": "Chris Young", + "position": 69, + "title": "Voices" + }, + { + "artist": "Jason Aldean With Kelly Clarkson", + "position": 70, + "title": "Don't You Wanna Stay" + }, + { + "artist": "Billy Currington", + "position": 71, + "title": "Let Me Down Easy" + }, + { + "artist": "Brad Paisley", + "position": 72, + "title": "Anything Like Me" + }, + { + "artist": "Kanye West Featuring Pusha T", + "position": 73, + "title": "Runaway" + }, + { + "artist": "Linkin Park", + "position": 74, + "title": "Waiting For The End" + }, + { + "artist": "Drake Featuring T.I. & Swizz Beatz", + "position": 75, + "title": "Fancy" + }, + { + "artist": "Sick Puppies", + "position": 76, + "title": "Maybe" + }, + { + "artist": "Lady Antebellum", + "position": 77, + "title": "Hello World" + }, + { + "artist": "Luke Bryan", + "position": 78, + "title": "Someone Else Calling You Baby" + }, + { + "artist": "Miguel Featuring J. Cole", + "position": 79, + "title": "All I Want Is You" + }, + { + "artist": "Twista Featuring Chris Brown", + "position": 80, + "title": "Make A Movie" + }, + { + "artist": "Mumford & Sons", + "position": 81, + "title": "Little Lion Man" + }, + { + "artist": "Birdman Featuring Lil Wayne", + "position": 82, + "title": "Fire Flame" + }, + { + "artist": "Akon", + "position": 83, + "title": "Angel" + }, + { + "artist": "Toby Keith", + "position": 84, + "title": "Bullets In The Gun" + }, + { + "artist": "Train", + "position": 85, + "title": "Marry Me" + }, + { + "artist": "Sean Kingston Featuring Nicki Minaj", + "position": 86, + "title": "Letting Go (Dutty Love)" + }, + { + "artist": "Eric Church", + "position": 87, + "title": "Smoke A Little Smoke" + }, + { + "artist": "Jesse McCartney", + "position": 88, + "title": "Shake" + }, + { + "artist": "Chris Brown", + "position": 89, + "title": "No BS" + }, + { + "artist": "Shakira Featuring El Cata or Dizzee Rascal", + "position": 90, + "title": "Loca" + }, + { + "artist": "Natasha Bedingfield", + "position": 91, + "title": "Strip Me" + }, + { + "artist": "Glee Cast Featuring Gwyneth Paltrow", + "position": 92, + "title": "Forget You" + }, + { + "artist": "Kanye West Featuring Jay-Z, Rick Ross, Bon Iver & Nicki Minaj", + "position": 93, + "title": "Monster" + }, + { + "artist": "Dev Featuring The Cataracs", + "position": 94, + "title": "Bass Down Low" + }, + { + "artist": "Jamie Foxx Featuring Drake", + "position": 95, + "title": "Fall For Your Type" + }, + { + "artist": "Daughtry", + "position": 96, + "title": "September" + }, + { + "artist": "Ne-Yo", + "position": 97, + "title": "One In A Million" + }, + { + "artist": "Bruno Mars", + "position": 98, + "title": "Marry You" + }, + { + "artist": "My Darkest Days Featuring Zakk Wylde", + "position": 99, + "title": "Porn Star Dancing" + }, + { + "artist": "Pitbull", + "position": 100, + "title": "Bon, Bon" + } + ], + "title": "2010 - Hot 100" + }, + { + "songs": [ + { + "artist": "Trey Songz Featuring Drake", + "position": 1, + "title": "I Invented Sex" + }, + { + "artist": "Birdman Featuring Lil Wayne & Drake", + "position": 2, + "title": "Money To Blow" + }, + { + "artist": "Melanie Fiona", + "position": 3, + "title": "It Kills Me" + }, + { + "artist": "Usher", + "position": 4, + "title": "Papers" + }, + { + "artist": "Jay-Z + Alicia Keys", + "position": 5, + "title": "Empire State Of Mind" + }, + { + "artist": "Trey Songz Featuring Fabolous", + "position": 6, + "title": "Say Aah" + }, + { + "artist": "50 Cent Featuring Ne-Yo", + "position": 7, + "title": "Baby By Me" + }, + { + "artist": "Maxwell", + "position": 8, + "title": "Bad Habits" + }, + { + "artist": "Young Money Featuring Lloyd", + "position": 9, + "title": "Bedrock" + }, + { + "artist": "Maxwell", + "position": 10, + "title": "Pretty Wings" + }, + { + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "position": 11, + "title": "I Can Transform Ya" + }, + { + "artist": "Alicia Keys", + "position": 12, + "title": "Try Sleeping With A Broken Heart" + }, + { + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "position": 13, + "title": "Forever" + }, + { + "artist": "Ludacris", + "position": 14, + "title": "How Low" + }, + { + "artist": "Gucci Mane Featuring Usher", + "position": 15, + "title": "Spotlight" + }, + { + "artist": "Mary Mary Featuring Kierra \"KiKi\" Sheard", + "position": 16, + "title": "God In Me" + }, + { + "artist": "Jaheim", + "position": 17, + "title": "Ain't Leavin Without You" + }, + { + "artist": "Mary J. Blige", + "position": 18, + "title": "I Am" + }, + { + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "position": 19, + "title": "Wasted" + }, + { + "artist": "LeToya Featuring Ludacris", + "position": 20, + "title": "Regret" + }, + { + "artist": "Whitney Houston", + "position": 21, + "title": "Million Dollar Bill" + }, + { + "artist": "Sade", + "position": 22, + "title": "Soldier Of Love" + }, + { + "artist": "Rihanna Featuring Jeezy", + "position": 23, + "title": "Hard" + }, + { + "artist": "Snoop Dogg Featuring The-Dream", + "position": 24, + "title": "Gangsta Luv" + }, + { + "artist": "Omarion Featuring Gucci Mane", + "position": 25, + "title": "I Get It In" + } + ], + "title": "2009 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Three Days Grace", + "position": 1, + "title": "Break" + }, + { + "artist": "Breaking Benjamin", + "position": 2, + "title": "I Will Not Bow" + }, + { + "artist": "Muse", + "position": 3, + "title": "Uprising" + }, + { + "artist": "Foo Fighters", + "position": 4, + "title": "Wheels" + }, + { + "artist": "Weezer", + "position": 5, + "title": "(If You're Wondering If I Want You To) I Want You To" + }, + { + "artist": "Shinedown", + "position": 6, + "title": "If You Only Knew" + }, + { + "artist": "Alice In Chains", + "position": 7, + "title": "Check My Brain" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 8, + "title": "Kings And Queens" + }, + { + "artist": "Rise Against", + "position": 9, + "title": "Savior" + }, + { + "artist": "Pearl Jam", + "position": 10, + "title": "The Fixer" + }, + { + "artist": "Sick Puppies", + "position": 11, + "title": "You're Going Down" + }, + { + "artist": "Chevelle", + "position": 12, + "title": "Jars" + }, + { + "artist": "Phoenix", + "position": 13, + "title": "1901" + }, + { + "artist": "Them Crooked Vultures", + "position": 14, + "title": "New Fang" + }, + { + "artist": "Kings Of Leon", + "position": 15, + "title": "Use Somebody" + }, + { + "artist": "Linkin Park", + "position": 16, + "title": "New Divide" + }, + { + "artist": "Pearl Jam", + "position": 17, + "title": "Just Breathe" + }, + { + "artist": "Cage The Elephant", + "position": 18, + "title": "Back Against The Wall" + }, + { + "artist": "Slipknot", + "position": 19, + "title": "Snuff" + }, + { + "artist": "Death Cab For Cutie", + "position": 20, + "title": "Meet Me On The Equinox" + }, + { + "artist": "Creed", + "position": 21, + "title": "Overcome" + }, + { + "artist": "Puddle Of Mudd", + "position": 22, + "title": "Spaceship" + }, + { + "artist": "Flyleaf", + "position": 23, + "title": "Again" + }, + { + "artist": "Alice In Chains", + "position": 24, + "title": "Your Decision" + }, + { + "artist": "Adelitas Way", + "position": 25, + "title": "Invincible" + } + ], + "title": "2009 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Iyaz", + "position": 1, + "title": "Replay" + }, + { + "artist": "Owl City", + "position": 2, + "title": "Fireflies" + }, + { + "artist": "Britney Spears", + "position": 3, + "title": "3" + }, + { + "artist": "Jason Derulo", + "position": 4, + "title": "Whatcha Say" + }, + { + "artist": "Ke$ha", + "position": 5, + "title": "TiK ToK" + }, + { + "artist": "Lady Gaga", + "position": 6, + "title": "Bad Romance" + }, + { + "artist": "Kelly Clarkson", + "position": 7, + "title": "Already Gone" + }, + { + "artist": "David Guetta Featuring Akon", + "position": 8, + "title": "Sexy Chick" + }, + { + "artist": "Jay-Z + Alicia Keys", + "position": 9, + "title": "Empire State Of Mind" + }, + { + "artist": "Jay Sean Featuring Lil Wayne", + "position": 10, + "title": "Down" + }, + { + "artist": "Lady Gaga", + "position": 11, + "title": "Paparazzi" + }, + { + "artist": "Beyonce", + "position": 12, + "title": "Sweet Dreams" + }, + { + "artist": "Miley Cyrus", + "position": 13, + "title": "Party In The U.S.A." + }, + { + "artist": "Cascada", + "position": 14, + "title": "Evacuate The Dancefloor" + }, + { + "artist": "The Black Eyed Peas", + "position": 15, + "title": "Meet Me Halfway" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "Fifteen" + }, + { + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "position": 17, + "title": "Do You Remember" + }, + { + "artist": "Kings Of Leon", + "position": 18, + "title": "Use Somebody" + }, + { + "artist": "Boys Like Girls Featuring Taylor Swift", + "position": 19, + "title": "Two Is Better Than One" + }, + { + "artist": "Taylor Swift", + "position": 20, + "title": "You Belong With Me" + } + ], + "title": "2009 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Lady Antebellum", + "position": 1, + "title": "Need You Now" + }, + { + "artist": "Reba", + "position": 2, + "title": "Consider Me Gone" + }, + { + "artist": "Luke Bryan", + "position": 3, + "title": "Do I" + }, + { + "artist": "Dierks Bentley", + "position": 4, + "title": "I Wanna Make You Close Your Eyes" + }, + { + "artist": "Craig Morgan", + "position": 5, + "title": "Bonfire" + }, + { + "artist": "Tim McGraw", + "position": 6, + "title": "Southern Voice" + }, + { + "artist": "David Nail", + "position": 7, + "title": "Red Light" + }, + { + "artist": "Miranda Lambert", + "position": 8, + "title": "White Liar" + }, + { + "artist": "Jason Aldean", + "position": 9, + "title": "The Truth" + }, + { + "artist": "Darius Rucker", + "position": 10, + "title": "History In The Making" + }, + { + "artist": "Jake Owen", + "position": 11, + "title": "Eight Second Ride" + }, + { + "artist": "Brad Paisley", + "position": 12, + "title": "American Saturday Night" + }, + { + "artist": "Josh Turner", + "position": 13, + "title": "Why Don't We Just Dance" + }, + { + "artist": "Billy Currington", + "position": 14, + "title": "That's How Country Boys Roll" + }, + { + "artist": "George Strait", + "position": 15, + "title": "Twang" + }, + { + "artist": "Toby Keith", + "position": 16, + "title": "Cryin' For Me (Wayman's Song)" + }, + { + "artist": "Jason Michael Carroll", + "position": 17, + "title": "Hurry Home" + }, + { + "artist": "Keith Urban", + "position": 18, + "title": "'Til Summer Comes Around" + }, + { + "artist": "Easton Corbin", + "position": 19, + "title": "A Little More Country Than That" + }, + { + "artist": "Blake Shelton Featuring Trace Adkins", + "position": 20, + "title": "Hillbilly Bone" + }, + { + "artist": "Gary Allan", + "position": 21, + "title": "Today" + }, + { + "artist": "Josh Thompson", + "position": 22, + "title": "Beer On The Table" + }, + { + "artist": "Kellie Pickler", + "position": 23, + "title": "Didn't You Know How Much I Loved You" + }, + { + "artist": "Steel Magnolia", + "position": 24, + "title": "Keep On Lovin' You" + }, + { + "artist": "Sarah Buxton", + "position": 25, + "title": "Outside My Window" + } + ], + "title": "2009 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Jay-Z + Alicia Keys", + "position": 1, + "title": "Empire State Of Mind" + }, + { + "artist": "Ke$ha", + "position": 2, + "title": "TiK ToK" + }, + { + "artist": "Lady Gaga", + "position": 3, + "title": "Bad Romance" + }, + { + "artist": "Iyaz", + "position": 4, + "title": "Replay" + }, + { + "artist": "Owl City", + "position": 5, + "title": "Fireflies" + }, + { + "artist": "David Guetta Featuring Akon", + "position": 6, + "title": "Sexy Chick" + }, + { + "artist": "Jason Derulo", + "position": 7, + "title": "Whatcha Say" + }, + { + "artist": "The Black Eyed Peas", + "position": 8, + "title": "Meet Me Halfway" + }, + { + "artist": "Britney Spears", + "position": 9, + "title": "3" + }, + { + "artist": "Jay Sean Featuring Lil Wayne", + "position": 10, + "title": "Down" + }, + { + "artist": "Lady Gaga", + "position": 11, + "title": "Paparazzi" + }, + { + "artist": "Beyonce", + "position": 12, + "title": "Sweet Dreams" + }, + { + "artist": "Ludacris", + "position": 13, + "title": "How Low" + }, + { + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "position": 14, + "title": "Forever" + }, + { + "artist": "Kelly Clarkson", + "position": 15, + "title": "Already Gone" + }, + { + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "position": 16, + "title": "Do You Remember" + }, + { + "artist": "Miley Cyrus", + "position": 17, + "title": "Party In The U.S.A." + }, + { + "artist": "The Black Eyed Peas", + "position": 18, + "title": "I Gotta Feeling" + }, + { + "artist": "Lady Antebellum", + "position": 19, + "title": "Need You Now" + }, + { + "artist": "Young Money Featuring Lloyd", + "position": 20, + "title": "Bedrock" + }, + { + "artist": "Rihanna Featuring Jeezy", + "position": 21, + "title": "Hard" + }, + { + "artist": "Taylor Swift", + "position": 22, + "title": "You Belong With Me" + }, + { + "artist": "Kings Of Leon", + "position": 23, + "title": "Use Somebody" + }, + { + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "position": 24, + "title": "I Can Transform Ya" + }, + { + "artist": "Cascada", + "position": 25, + "title": "Evacuate The Dancefloor" + }, + { + "artist": "Birdman Featuring Lil Wayne & Drake", + "position": 26, + "title": "Money To Blow" + }, + { + "artist": "Taylor Swift", + "position": 27, + "title": "Fifteen" + }, + { + "artist": "Boys Like Girls Featuring Taylor Swift", + "position": 28, + "title": "Two Is Better Than One" + }, + { + "artist": "50 Cent Featuring Ne-Yo", + "position": 29, + "title": "Baby By Me" + }, + { + "artist": "Carrie Underwood", + "position": 30, + "title": "Cowboy Casanova" + }, + { + "artist": "Timbaland Featuring Justin Timberlake", + "position": 31, + "title": "Carry Out" + }, + { + "artist": "Jay-Z, Rihanna & Kanye West", + "position": 32, + "title": "Run This Town" + }, + { + "artist": "New Boyz Feat. Ray J", + "position": 33, + "title": "Tie Me Down" + }, + { + "artist": "Shakira Featuring Lil Wayne", + "position": 34, + "title": "Give It Up To Me" + }, + { + "artist": "Snoop Dogg Featuring The-Dream", + "position": 35, + "title": "Gangsta Luv" + }, + { + "artist": "Kris Allen", + "position": 36, + "title": "Live Like We're Dying" + }, + { + "artist": "Luke Bryan", + "position": 37, + "title": "Do I" + }, + { + "artist": "Trey Songz Featuring Fabolous", + "position": 38, + "title": "Say Aah" + }, + { + "artist": "Colbie Caillat", + "position": 39, + "title": "Fallin' For You" + }, + { + "artist": "Reba", + "position": 40, + "title": "Consider Me Gone" + }, + { + "artist": "Justin Bieber", + "position": 41, + "title": "One Time" + }, + { + "artist": "Gucci Mane Featuring Usher", + "position": 42, + "title": "Spotlight" + }, + { + "artist": "Trey Songz Featuring Drake", + "position": 43, + "title": "I Invented Sex" + }, + { + "artist": "Rihanna", + "position": 44, + "title": "Russian Roulette" + }, + { + "artist": "Train", + "position": 45, + "title": "Hey, Soul Sister" + }, + { + "artist": "Lady Gaga Featuring Beyonce", + "position": 46, + "title": "Telephone" + }, + { + "artist": "Shinedown", + "position": 47, + "title": "If You Only Knew" + }, + { + "artist": "Jason Aldean", + "position": 48, + "title": "The Truth" + }, + { + "artist": "Miranda Lambert", + "position": 49, + "title": "White Liar" + }, + { + "artist": "Tim McGraw", + "position": 50, + "title": "Southern Voice" + }, + { + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Jenna Ushkowitz & Amber Riley", + "position": 51, + "title": "My Life Would Suck Without You" + }, + { + "artist": "Dierks Bentley", + "position": 52, + "title": "I Wanna Make You Close Your Eyes" + }, + { + "artist": "Glee Cast Featuring Lea Michele", + "position": 53, + "title": "Don't Rain On My Parade" + }, + { + "artist": "Melanie Fiona", + "position": 54, + "title": "It Kills Me" + }, + { + "artist": "Orianthi", + "position": 55, + "title": "According To You" + }, + { + "artist": "Alicia Keys", + "position": 56, + "title": "Try Sleeping With A Broken Heart" + }, + { + "artist": "Usher", + "position": 57, + "title": "Papers" + }, + { + "artist": "Uncle Kracker", + "position": 58, + "title": "Smile" + }, + { + "artist": "David Nail", + "position": 59, + "title": "Red Light" + }, + { + "artist": "Chris Brown", + "position": 60, + "title": "Crawl" + }, + { + "artist": "Nickelback", + "position": 61, + "title": "Never Gonna Be Alone" + }, + { + "artist": "Lil Wayne", + "position": 62, + "title": "On Fire" + }, + { + "artist": "Jason Derulo", + "position": 63, + "title": "In My Head" + }, + { + "artist": "Daughtry", + "position": 64, + "title": "Life After You" + }, + { + "artist": "Craig Morgan", + "position": 65, + "title": "Bonfire" + }, + { + "artist": "Muse", + "position": 66, + "title": "Uprising" + }, + { + "artist": "Mary J. Blige", + "position": 67, + "title": "I Am" + }, + { + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "position": 68, + "title": "Wasted" + }, + { + "artist": "Jesse McCartney Featuring T-Pain", + "position": 69, + "title": "Body Language" + }, + { + "artist": "Darius Rucker", + "position": 70, + "title": "History In The Making" + }, + { + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Kevin McHale & Amber Riley", + "position": 71, + "title": "You Can't Always Get What You Want" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 72, + "title": "This Is War" + }, + { + "artist": "Justin Bieber", + "position": 73, + "title": "One Less Lonely Girl" + }, + { + "artist": "Michael Buble", + "position": 74, + "title": "Haven't Met You Yet" + }, + { + "artist": "Josh Turner", + "position": 75, + "title": "Why Don't We Just Dance" + }, + { + "artist": "Rob Thomas", + "position": 76, + "title": "Someday" + }, + { + "artist": "Jake Owen", + "position": 77, + "title": "Eight Second Ride" + }, + { + "artist": "Maxwell", + "position": 78, + "title": "Bad Habits" + }, + { + "artist": "OneRepublic", + "position": 79, + "title": "All The Right Moves" + }, + { + "artist": "Snoop Dogg", + "position": 80, + "title": "I Wanna Rock" + }, + { + "artist": "Breaking Benjamin", + "position": 81, + "title": "I Will Not Bow" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 82, + "title": "Kings And Queens" + }, + { + "artist": "Pitbull Featuring Akon", + "position": 83, + "title": "Shut It Down" + }, + { + "artist": "Three Days Grace", + "position": 84, + "title": "Break" + }, + { + "artist": "Billy Currington", + "position": 85, + "title": "That's How Country Boys Roll" + }, + { + "artist": "Chris Young", + "position": 86, + "title": "Gettin' You Home (The Black Dress Song)" + }, + { + "artist": "Phoenix", + "position": 87, + "title": "1901" + }, + { + "artist": "Chris Brown Featuring Plies", + "position": 88, + "title": "What I Do" + }, + { + "artist": "Glee Cast", + "position": 89, + "title": "Last Christmas" + }, + { + "artist": "Brad Paisley", + "position": 90, + "title": "American Saturday Night" + }, + { + "artist": "Toby Keith", + "position": 91, + "title": "Cryin' For Me (Wayman's Song)" + }, + { + "artist": "Omarion Featuring Gucci Mane", + "position": 92, + "title": "I Get It In" + }, + { + "artist": "The Script", + "position": 93, + "title": "Breakeven" + }, + { + "artist": "Glee Cast Featuring Amber Riley", + "position": 94, + "title": "And I Am Telling You I'm Not Going" + }, + { + "artist": "Weezer", + "position": 95, + "title": "(If You're Wondering If I Want You To) I Want You To" + }, + { + "artist": "Drake Featuring Lil Wayne & Young Jeezy", + "position": 96, + "title": "I'm Going In" + }, + { + "artist": "Beyonce", + "position": 97, + "title": "Video Phone" + }, + { + "artist": "Ester Dean Featuring Chris Brown", + "position": 98, + "title": "Drop It Low" + }, + { + "artist": "Lifehouse", + "position": 99, + "title": "Halfway Gone" + }, + { + "artist": "George Strait", + "position": 100, + "title": "Twang" + } + ], + "title": "2009 - Hot 100" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Single Ladies (Put A Ring On It)" + }, + { + "artist": "T.I. Featuring Rihanna", + "position": 2, + "title": "Live Your Life" + }, + { + "artist": "T-Pain Featuring Ludacris", + "position": 3, + "title": "Chopped 'N' Skrewed" + }, + { + "artist": "Ne-Yo", + "position": 4, + "title": "Miss Independent" + }, + { + "artist": "Usher", + "position": 5, + "title": "Trading Places" + }, + { + "artist": "John Legend Featuring Andre 3000", + "position": 6, + "title": "Green Light" + }, + { + "artist": "Jazmine Sullivan", + "position": 7, + "title": "Bust Your Windows" + }, + { + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "position": 8, + "title": "Mrs. Officer" + }, + { + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "position": 9, + "title": "Pop Champagne" + }, + { + "artist": "T.I.", + "position": 10, + "title": "Whatever You Like" + }, + { + "artist": "Keyshia Cole Featuring 2Pac", + "position": 11, + "title": "Playa Cardz Right" + }, + { + "artist": "Jennifer Hudson", + "position": 12, + "title": "Spotlight" + }, + { + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "position": 13, + "title": "IfULeave" + }, + { + "artist": "T-Pain Featuring Lil Wayne", + "position": 14, + "title": "Can't Believe It" + }, + { + "artist": "Plies Featuring Chris J", + "position": 15, + "title": "Put It On Ya" + }, + { + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "position": 16, + "title": "She Got Her Own" + }, + { + "artist": "Beyonce", + "position": 17, + "title": "If I Were A Boy" + }, + { + "artist": "Ludacris Co-Starring T-Pain", + "position": 18, + "title": "One More Drink" + }, + { + "artist": "Jazmine Sullivan", + "position": 19, + "title": "Need U Bad" + }, + { + "artist": "Jamie Foxx Featuring T.I.", + "position": 20, + "title": "Just Like Me" + }, + { + "artist": "Avant", + "position": 21, + "title": "When It Hurts" + }, + { + "artist": "Kanye West", + "position": 22, + "title": "Heartless" + }, + { + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "position": 23, + "title": "Swagga Like Us" + }, + { + "artist": "Usher", + "position": 24, + "title": "Here I Stand" + }, + { + "artist": "Keyshia Cole", + "position": 25, + "title": "Heaven Sent" + } + ], + "title": "2008 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "T.I. Featuring Rihanna", + "position": 1, + "title": "Live Your Life" + }, + { + "artist": "Britney Spears", + "position": 2, + "title": "Womanizer" + }, + { + "artist": "Jason Mraz", + "position": 3, + "title": "I'm Yours" + }, + { + "artist": "Katy Perry", + "position": 4, + "title": "Hot N Cold" + }, + { + "artist": "Lady GaGa Featuring Colby O'Donis", + "position": 5, + "title": "Just Dance" + }, + { + "artist": "Pink", + "position": 6, + "title": "So What" + }, + { + "artist": "Kevin Rudolf Featuring Lil Wayne", + "position": 7, + "title": "Let It Rock" + }, + { + "artist": "T.I.", + "position": 8, + "title": "Whatever You Like" + }, + { + "artist": "Beyonce", + "position": 9, + "title": "If I Were A Boy" + }, + { + "artist": "Akon", + "position": 10, + "title": "Right Now (Na Na Na)" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Love Story" + }, + { + "artist": "Ne-Yo", + "position": 12, + "title": "Miss Independent" + }, + { + "artist": "Saving Abel", + "position": 13, + "title": "Addicted" + }, + { + "artist": "Nickelback", + "position": 14, + "title": "Gotta Be Somebody" + }, + { + "artist": "Kanye West", + "position": 15, + "title": "Love Lockdown" + }, + { + "artist": "Beyonce", + "position": 16, + "title": "Single Ladies (Put A Ring On It)" + }, + { + "artist": "Leona Lewis", + "position": 17, + "title": "Better In Time" + }, + { + "artist": "Rihanna", + "position": 18, + "title": "Rehab" + }, + { + "artist": "Rihanna", + "position": 19, + "title": "Disturbia" + }, + { + "artist": "Gavin Rossdale", + "position": 20, + "title": "Love Remains The Same" + } + ], + "title": "2008 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Montgomery Gentry", + "position": 1, + "title": "Roll With Me" + }, + { + "artist": "Rascal Flatts", + "position": 2, + "title": "Here" + }, + { + "artist": "Zac Brown Band", + "position": 3, + "title": "Chicken Fried" + }, + { + "artist": "Sugarland", + "position": 4, + "title": "Already Gone" + }, + { + "artist": "Brad Paisley Duet With Keith Urban", + "position": 5, + "title": "Start A Band" + }, + { + "artist": "Tim McGraw", + "position": 6, + "title": "Let It Go" + }, + { + "artist": "Alan Jackson", + "position": 7, + "title": "Country Boy" + }, + { + "artist": "Billy Currington", + "position": 8, + "title": "Don't" + }, + { + "artist": "Dierks Bentley", + "position": 9, + "title": "Feel That Fire" + }, + { + "artist": "Jamey Johnson", + "position": 10, + "title": "In Color" + }, + { + "artist": "Blake Shelton", + "position": 11, + "title": "She Wouldn't Be Gone" + }, + { + "artist": "Lady Antebellum", + "position": 12, + "title": "Lookin' For A Good Time" + }, + { + "artist": "Toby Keith", + "position": 13, + "title": "God Love Her" + }, + { + "artist": "Kenny Chesney With Mac McAnally", + "position": 14, + "title": "Down The Road" + }, + { + "artist": "Brooks & Dunn Featuring Reba McEntire", + "position": 15, + "title": "Cowgirls Don't Cry" + }, + { + "artist": "Keith Urban", + "position": 16, + "title": "Sweet Thing" + }, + { + "artist": "George Strait", + "position": 17, + "title": "River Of Love" + }, + { + "artist": "Randy Houser", + "position": 18, + "title": "Anything Goes" + }, + { + "artist": "Pat Green", + "position": 19, + "title": "Let Me" + }, + { + "artist": "Taylor Swift", + "position": 20, + "title": "White Horse" + }, + { + "artist": "Darius Rucker", + "position": 21, + "title": "It Won't Be Like This For Long" + }, + { + "artist": "Jake Owen", + "position": 22, + "title": "Don't Think I Can't Love You" + }, + { + "artist": "Lee Ann Womack", + "position": 23, + "title": "Last Call" + }, + { + "artist": "Jack Ingram", + "position": 24, + "title": "That's A Man" + }, + { + "artist": "Martina McBride", + "position": 25, + "title": "Ride" + } + ], + "title": "2008 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Single Ladies (Put A Ring On It)" + }, + { + "artist": "T.I. Featuring Rihanna", + "position": 2, + "title": "Live Your Life" + }, + { + "artist": "Lady GaGa Featuring Colby O'Donis", + "position": 3, + "title": "Just Dance" + }, + { + "artist": "Britney Spears", + "position": 4, + "title": "Circus" + }, + { + "artist": "T.I.", + "position": 5, + "title": "Whatever You Like" + }, + { + "artist": "Britney Spears", + "position": 6, + "title": "Womanizer" + }, + { + "artist": "Kanye West", + "position": 7, + "title": "Heartless" + }, + { + "artist": "Katy Perry", + "position": 8, + "title": "Hot N Cold" + }, + { + "artist": "Beyonce", + "position": 9, + "title": "If I Were A Boy" + }, + { + "artist": "Kanye West", + "position": 10, + "title": "Love Lockdown" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Love Story" + }, + { + "artist": "Jason Mraz", + "position": 12, + "title": "I'm Yours" + }, + { + "artist": "Kevin Rudolf Featuring Lil Wayne", + "position": 13, + "title": "Let It Rock" + }, + { + "artist": "Ne-Yo", + "position": 14, + "title": "Miss Independent" + }, + { + "artist": "Akon", + "position": 15, + "title": "Right Now (Na Na Na)" + }, + { + "artist": "Pink", + "position": 16, + "title": "So What" + }, + { + "artist": "Nickelback", + "position": 17, + "title": "Gotta Be Somebody" + }, + { + "artist": "T-Pain Featuring Lil Wayne", + "position": 18, + "title": "Can't Believe It" + }, + { + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "position": 19, + "title": "Mrs. Officer" + }, + { + "artist": "Zac Brown Band", + "position": 20, + "title": "Chicken Fried" + }, + { + "artist": "Rihanna", + "position": 21, + "title": "Rehab" + }, + { + "artist": "Rihanna", + "position": 22, + "title": "Disturbia" + }, + { + "artist": "Saving Abel", + "position": 23, + "title": "Addicted" + }, + { + "artist": "John Legend Featuring Andre 3000", + "position": 24, + "title": "Green Light" + }, + { + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "position": 25, + "title": "Pop Champagne" + }, + { + "artist": "Ludacris Co-Starring T-Pain", + "position": 26, + "title": "One More Drink" + }, + { + "artist": "T-Pain Featuring Ludacris", + "position": 27, + "title": "Chopped 'N' Skrewed" + }, + { + "artist": "Leona Lewis", + "position": 28, + "title": "Better In Time" + }, + { + "artist": "Akon Featuring Colby O'Donis & Kardinal Offishall", + "position": 29, + "title": "Beautiful" + }, + { + "artist": "The Fray", + "position": 30, + "title": "You Found Me" + }, + { + "artist": "Akon Featuring Lil Wayne & Young Jeezy", + "position": 31, + "title": "I'm So Paid" + }, + { + "artist": "Coldplay", + "position": 32, + "title": "Viva La Vida" + }, + { + "artist": "Montgomery Gentry", + "position": 33, + "title": "Roll With Me" + }, + { + "artist": "Brandy", + "position": 34, + "title": "Right Here (Departed)" + }, + { + "artist": "Gavin Rossdale", + "position": 35, + "title": "Love Remains The Same" + }, + { + "artist": "O.A.R.", + "position": 36, + "title": "Shattered (Turn The Car Around)" + }, + { + "artist": "The All-American Rejects", + "position": 37, + "title": "Gives You Hell" + }, + { + "artist": "Ne-Yo", + "position": 38, + "title": "Closer" + }, + { + "artist": "Jazmine Sullivan", + "position": 39, + "title": "Bust Your Windows" + }, + { + "artist": "The Veronicas", + "position": 40, + "title": "Untouched" + }, + { + "artist": "The Killers", + "position": 41, + "title": "Human" + }, + { + "artist": "Sugarland", + "position": 42, + "title": "Already Gone" + }, + { + "artist": "David Archuleta", + "position": 43, + "title": "Crush" + }, + { + "artist": "Secondhand Serenade", + "position": 44, + "title": "Fall For You" + }, + { + "artist": "Usher", + "position": 45, + "title": "Trading Places" + }, + { + "artist": "Paramore", + "position": 46, + "title": "Decode" + }, + { + "artist": "Jennifer Hudson", + "position": 47, + "title": "Spotlight" + }, + { + "artist": "David Cook", + "position": 48, + "title": "Light On" + }, + { + "artist": "Pink", + "position": 49, + "title": "Sober" + }, + { + "artist": "Rascal Flatts", + "position": 50, + "title": "Here" + }, + { + "artist": "Taylor Swift", + "position": 51, + "title": "White Horse" + }, + { + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "position": 52, + "title": "Swagga Like Us" + }, + { + "artist": "Jamey Johnson", + "position": 53, + "title": "In Color" + }, + { + "artist": "Blake Shelton", + "position": 54, + "title": "She Wouldn't Be Gone" + }, + { + "artist": "Brad Paisley Duet With Keith Urban", + "position": 55, + "title": "Start A Band" + }, + { + "artist": "Dierks Bentley", + "position": 56, + "title": "Feel That Fire" + }, + { + "artist": "Alan Jackson", + "position": 57, + "title": "Country Boy" + }, + { + "artist": "The Pussycat Dolls", + "position": 58, + "title": "I Hate This Part" + }, + { + "artist": "Christina Aguilera", + "position": 59, + "title": "Keeps Gettin' Better" + }, + { + "artist": "Brooks & Dunn Featuring Reba McEntire", + "position": 60, + "title": "Cowgirls Don't Cry" + }, + { + "artist": "Carrie Underwood", + "position": 61, + "title": "Just A Dream" + }, + { + "artist": "Fall Out Boy", + "position": 62, + "title": "I Don't Care" + }, + { + "artist": "Billy Currington", + "position": 63, + "title": "Don't" + }, + { + "artist": "The Game Featuring Lil Wayne", + "position": 64, + "title": "My Life" + }, + { + "artist": "Plies Featuring Chris J", + "position": 65, + "title": "Put It On Ya" + }, + { + "artist": "Toby Keith", + "position": 66, + "title": "God Love Her" + }, + { + "artist": "Keyshia Cole Featuring 2Pac", + "position": 67, + "title": "Playa Cardz Right" + }, + { + "artist": "Tim McGraw", + "position": 68, + "title": "Let It Go" + }, + { + "artist": "Savage Featuring Soulja Boy Tell'em", + "position": 69, + "title": "Swing" + }, + { + "artist": "Lady Antebellum", + "position": 70, + "title": "Lookin' For A Good Time" + }, + { + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "position": 71, + "title": "IfULeave" + }, + { + "artist": "Kings Of Leon", + "position": 72, + "title": "Sex On Fire" + }, + { + "artist": "Common Featuring Pharrell", + "position": 73, + "title": "Universal Mind Control" + }, + { + "artist": "Keith Urban", + "position": 74, + "title": "Sweet Thing" + }, + { + "artist": "Jamie Foxx Featuring T.I.", + "position": 75, + "title": "Just Like Me" + }, + { + "artist": "Shinedown", + "position": 76, + "title": "Second Chance" + }, + { + "artist": "The Offspring", + "position": 77, + "title": "You're Gonna Go Far, Kid" + }, + { + "artist": "Kenny Chesney With Mac McAnally", + "position": 78, + "title": "Down The Road" + }, + { + "artist": "Ne-Yo", + "position": 79, + "title": "Mad" + }, + { + "artist": "Shontelle", + "position": 80, + "title": "T-Shirt" + }, + { + "artist": "Matt Nathanson", + "position": 81, + "title": "Come On Get Higher" + }, + { + "artist": "Metro Station", + "position": 82, + "title": "Seventeen Forever" + }, + { + "artist": "Pitbull Featuring Lil Jon", + "position": 83, + "title": "Krazy" + }, + { + "artist": "Apocalyptica Featuring Adam Gontier", + "position": 84, + "title": "I Don't Care" + }, + { + "artist": "Daughtry", + "position": 85, + "title": "What About Now" + }, + { + "artist": "Busta Rhymes", + "position": 86, + "title": "Arab Money" + }, + { + "artist": "George Strait", + "position": 87, + "title": "River Of Love" + }, + { + "artist": "Kenny Chesney With The Wailers", + "position": 88, + "title": "Everybody Wants To Go To Heaven" + }, + { + "artist": "Lifehouse", + "position": 89, + "title": "Broken" + }, + { + "artist": "Hinder", + "position": 90, + "title": "Without You" + }, + { + "artist": "Avant", + "position": 91, + "title": "When It Hurts" + }, + { + "artist": "Randy Houser", + "position": 92, + "title": "Anything Goes" + }, + { + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "position": 93, + "title": "She Got Her Own" + }, + { + "artist": "50 Cent", + "position": 94, + "title": "Get Up" + }, + { + "artist": "Theory Of A Deadman", + "position": 95, + "title": "Bad Girlfriend" + }, + { + "artist": "Adele", + "position": 96, + "title": "Chasing Pavements" + }, + { + "artist": "Craig Morgan", + "position": 97, + "title": "Love Remembers" + }, + { + "artist": "Kanye West Featuring Lil Wayne", + "position": 98, + "title": "See You In My Nightmares" + }, + { + "artist": "T.I. Featuring Justin Timberlake", + "position": 99, + "title": "Dead And Gone" + }, + { + "artist": "Luis Fonsi", + "position": 100, + "title": "No Me Doy Por Vencido" + } + ], + "title": "2008 - Hot 100" + }, + { + "songs": [ + { + "artist": "Timbaland Featuring OneRepublic", + "position": 1, + "title": "Apologize" + }, + { + "artist": "Alicia Keys", + "position": 2, + "title": "No One" + }, + { + "artist": "Fergie", + "position": 3, + "title": "Clumsy" + }, + { + "artist": "Colbie Caillat", + "position": 4, + "title": "Bubbly" + }, + { + "artist": "Rihanna Featuring Ne-Yo", + "position": 5, + "title": "Hate That I Love You" + }, + { + "artist": "Chris Brown Featuring T-Pain", + "position": 6, + "title": "Kiss Kiss" + }, + { + "artist": "Finger Eleven", + "position": 7, + "title": "Paralyzer" + }, + { + "artist": "Jordin Sparks", + "position": 8, + "title": "Tattoo" + }, + { + "artist": "Flo Rida Featuring T-Pain", + "position": 9, + "title": "Low" + }, + { + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "position": 10, + "title": "Love Like This" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Teardrops On My Guitar" + }, + { + "artist": "Daughtry", + "position": 12, + "title": "Over You" + }, + { + "artist": "Baby Bash Featuring T-Pain", + "position": 13, + "title": "Cyclone" + }, + { + "artist": "Kanye West", + "position": 14, + "title": "Stronger" + }, + { + "artist": "Timbaland Featuring Keri Hilson", + "position": 15, + "title": "The Way I Are" + }, + { + "artist": "Good Charlotte", + "position": 16, + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)" + }, + { + "artist": "Paramore", + "position": 17, + "title": "Misery Business" + }, + { + "artist": "matchbox twenty", + "position": 18, + "title": "How Far We've Come" + }, + { + "artist": "Kanye West Featuring T-Pain", + "position": 19, + "title": "Good Life" + }, + { + "artist": "Sean Kingston", + "position": 20, + "title": "Take You There" + } + ], + "title": "2007 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Taylor Swift", + "position": 1, + "title": "Our Song" + }, + { + "artist": "Josh Turner", + "position": 2, + "title": "Firecracker" + }, + { + "artist": "George Strait", + "position": 3, + "title": "How 'Bout Them Cowgirls" + }, + { + "artist": "Montgomery Gentry", + "position": 4, + "title": "What Do Ya Think About That" + }, + { + "artist": "Sugarland", + "position": 5, + "title": "Stay" + }, + { + "artist": "Kenny Chesney", + "position": 6, + "title": "Don't Blink" + }, + { + "artist": "Rascal Flatts", + "position": 7, + "title": "Winner At A Losing Game" + }, + { + "artist": "Keith Urban", + "position": 8, + "title": "Everybody" + }, + { + "artist": "Brad Paisley", + "position": 9, + "title": "Letter To Me" + }, + { + "artist": "Gary Allan", + "position": 10, + "title": "Watching Airplanes" + }, + { + "artist": "Carrie Underwood", + "position": 11, + "title": "So Small" + }, + { + "artist": "Garth Brooks", + "position": 12, + "title": "More Than A Memory" + }, + { + "artist": "Billy Ray Cyrus With Miley Cyrus", + "position": 13, + "title": "Ready, Set, Don't Go" + }, + { + "artist": "Rodney Atkins", + "position": 14, + "title": "Cleaning This Gun (Come On In Boy)" + }, + { + "artist": "Chuck Wicks", + "position": 15, + "title": "Stealing Cinderella" + }, + { + "artist": "Toby Keith", + "position": 16, + "title": "Get My Drink On" + }, + { + "artist": "Craig Morgan", + "position": 17, + "title": "International Harvester" + }, + { + "artist": "Alan Jackson", + "position": 18, + "title": "Small Town Southern Man" + }, + { + "artist": "Blake Shelton", + "position": 19, + "title": "The More I Drink" + }, + { + "artist": "Chris Cagle", + "position": 20, + "title": "What Kinda Gone" + }, + { + "artist": "Brooks & Dunn", + "position": 21, + "title": "God Must Be Busy" + }, + { + "artist": "Tim McGraw", + "position": 22, + "title": "Suspicions" + }, + { + "artist": "Eagles", + "position": 23, + "title": "How Long" + }, + { + "artist": "Jason Aldean", + "position": 24, + "title": "Laughed Until We Cried" + }, + { + "artist": "Kenny Chesney", + "position": 25, + "title": "Shiftwork" + } + ], + "title": "2007 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Alicia Keys", + "position": 1, + "title": "No One" + }, + { + "artist": "Flo Rida Featuring T-Pain", + "position": 2, + "title": "Low" + }, + { + "artist": "Timbaland Featuring OneRepublic", + "position": 3, + "title": "Apologize" + }, + { + "artist": "Chris Brown Featuring T-Pain", + "position": 4, + "title": "Kiss Kiss" + }, + { + "artist": "Fergie", + "position": 5, + "title": "Clumsy" + }, + { + "artist": "Colbie Caillat", + "position": 6, + "title": "Bubbly" + }, + { + "artist": "Finger Eleven", + "position": 7, + "title": "Paralyzer" + }, + { + "artist": "Jordin Sparks", + "position": 8, + "title": "Tattoo" + }, + { + "artist": "Rihanna Featuring Ne-Yo", + "position": 9, + "title": "Hate That I Love You" + }, + { + "artist": "Kanye West Featuring T-Pain", + "position": 10, + "title": "Good Life" + }, + { + "artist": "Soulja Boy Tell'em", + "position": 11, + "title": "Crank That (Soulja Boy)" + }, + { + "artist": "Baby Bash Featuring T-Pain", + "position": 12, + "title": "Cyclone" + }, + { + "artist": "Alicia Keys", + "position": 13, + "title": "Like You'll Never See Me Again" + }, + { + "artist": "Plies Featuring Akon", + "position": 14, + "title": "Hypnotized" + }, + { + "artist": "Trey Songz", + "position": 15, + "title": "Can't Help But Wait" + }, + { + "artist": "Sara Bareilles", + "position": 16, + "title": "Love Song" + }, + { + "artist": "Kanye West", + "position": 17, + "title": "Stronger" + }, + { + "artist": "Sean Kingston", + "position": 18, + "title": "Take You There" + }, + { + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "position": 19, + "title": "Love Like This" + }, + { + "artist": "Timbaland Featuring Keri Hilson", + "position": 20, + "title": "The Way I Are" + }, + { + "artist": "Taylor Swift", + "position": 21, + "title": "Our Song" + }, + { + "artist": "Playaz Circle Featuring Lil Wayne", + "position": 22, + "title": "Duffle Bag Boy" + }, + { + "artist": "Wyclef Jean Featuring Akon, Lil Wayne & Niia", + "position": 23, + "title": "Sweetest Girl (Dollar Bill)" + }, + { + "artist": "Taylor Swift", + "position": 24, + "title": "Teardrops On My Guitar" + }, + { + "artist": "Chris Brown", + "position": 25, + "title": "With You" + }, + { + "artist": "Mary J. Blige", + "position": 26, + "title": "Just Fine" + }, + { + "artist": "matchbox twenty", + "position": 27, + "title": "How Far We've Come" + }, + { + "artist": "DJ Khaled Featuring T-Pain, Trick Daddy, Rick Ross & Plies", + "position": 28, + "title": "I'm So Hood" + }, + { + "artist": "Linkin Park", + "position": 29, + "title": "Shadow Of The Day" + }, + { + "artist": "Santana Featuring Chad Kroeger", + "position": 30, + "title": "Into The Night" + }, + { + "artist": "Daughtry", + "position": 31, + "title": "Over You" + }, + { + "artist": "The-Dream", + "position": 32, + "title": "Shawty Is A 10" + }, + { + "artist": "Bow Wow & Omarion", + "position": 33, + "title": "Girlfriend" + }, + { + "artist": "Good Charlotte", + "position": 34, + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)" + }, + { + "artist": "Paramore", + "position": 35, + "title": "Misery Business" + }, + { + "artist": "Fergie", + "position": 36, + "title": "Big Girls Don't Cry" + }, + { + "artist": "Snoop Dogg", + "position": 37, + "title": "Sensual Seduction" + }, + { + "artist": "Justin Timberlake Duet With Beyonce", + "position": 38, + "title": "Until The End Of Time" + }, + { + "artist": "Kanye West Featuring Dwele", + "position": 39, + "title": "Flashing Lights" + }, + { + "artist": "Sugarland", + "position": 40, + "title": "Stay" + }, + { + "artist": "J. Holiday", + "position": 41, + "title": "Suffocate" + }, + { + "artist": "Maroon 5", + "position": 42, + "title": "Wake Up Call" + }, + { + "artist": "J. Holiday", + "position": 43, + "title": "Bed" + }, + { + "artist": "Pink", + "position": 44, + "title": "Who Knew" + }, + { + "artist": "Britney Spears", + "position": 45, + "title": "Piece Of Me" + }, + { + "artist": "Birdman Featuring Lil Wayne", + "position": 46, + "title": "Pop Bottles" + }, + { + "artist": "Rihanna", + "position": 47, + "title": "Don't Stop The Music" + }, + { + "artist": "Kenny Chesney", + "position": 48, + "title": "Don't Blink" + }, + { + "artist": "Nickelback", + "position": 49, + "title": "Rockstar" + }, + { + "artist": "Keyshia Cole Introducing Amina", + "position": 50, + "title": "Shoulda Let You Go" + }, + { + "artist": "DJ Felli Fel Featuring Diddy, Akon, Ludacris & Lil Jon", + "position": 51, + "title": "Get Buck In Here" + }, + { + "artist": "Soulja Boy Tell'em Featuring I-15", + "position": 52, + "title": "Soulja Girl" + }, + { + "artist": "Josh Turner", + "position": 53, + "title": "Firecracker" + }, + { + "artist": "50 Cent Featuring Justin Timberlake & Timbaland", + "position": 54, + "title": "Ayo Technology" + }, + { + "artist": "Cassidy Featuring Swizz Beatz", + "position": 55, + "title": "My Drink N' My 2 Step" + }, + { + "artist": "George Strait", + "position": 56, + "title": "How 'Bout Them Cowgirls" + }, + { + "artist": "Carrie Underwood", + "position": 57, + "title": "So Small" + }, + { + "artist": "Billy Ray Cyrus With Miley Cyrus", + "position": 58, + "title": "Ready, Set, Don't Go" + }, + { + "artist": "Buckcherry", + "position": 59, + "title": "Sorry" + }, + { + "artist": "Foo Fighters", + "position": 60, + "title": "The Pretender" + }, + { + "artist": "Seether", + "position": 61, + "title": "Fake It" + }, + { + "artist": "Montgomery Gentry", + "position": 62, + "title": "What Do Ya Think About That" + }, + { + "artist": "Jack Johnson", + "position": 63, + "title": "If I Had Eyes" + }, + { + "artist": "Webbie, Lil' Phat & Lil' Boosie", + "position": 64, + "title": "Independent" + }, + { + "artist": "Brad Paisley", + "position": 65, + "title": "Letter To Me" + }, + { + "artist": "Rascal Flatts", + "position": 66, + "title": "Winner At A Losing Game" + }, + { + "artist": "Fabolous Featuring Jermaine Dupri", + "position": 67, + "title": "Baby Don't Go" + }, + { + "artist": "Enur Featuring Natasja", + "position": 68, + "title": "Calabria 2008" + }, + { + "artist": "Britney Spears", + "position": 69, + "title": "Gimme More" + }, + { + "artist": "Feist", + "position": 70, + "title": "1234" + }, + { + "artist": "Keith Urban", + "position": 71, + "title": "Everybody" + }, + { + "artist": "Three Days Grace", + "position": 72, + "title": "Never Too Late" + }, + { + "artist": "Gary Allan", + "position": 73, + "title": "Watching Airplanes" + }, + { + "artist": "Chris Brown", + "position": 74, + "title": "This Christmas" + }, + { + "artist": "Mario", + "position": 75, + "title": "Crying Out For Me" + }, + { + "artist": "Lupe Fiasco Featuring Matthew Santos", + "position": 76, + "title": "Superstar" + }, + { + "artist": "Gucci Mane", + "position": 77, + "title": "Freaky Gurl" + }, + { + "artist": "Miley Cyrus", + "position": 78, + "title": "See You Again" + }, + { + "artist": "Boys Like Girls", + "position": 79, + "title": "Hero/Heroine" + }, + { + "artist": "Keyshia Cole", + "position": 80, + "title": "I Remember" + }, + { + "artist": "Clay Walker", + "position": 81, + "title": "Fall" + }, + { + "artist": "Linkin Park", + "position": 82, + "title": "Bleed It Out" + }, + { + "artist": "The Last Goodnight", + "position": 83, + "title": "Pictures Of You" + }, + { + "artist": "Maroon 5", + "position": 84, + "title": "Won't Go Home Without You" + }, + { + "artist": "LeAnn Rimes", + "position": 85, + "title": "Nothin' Better To Do" + }, + { + "artist": "Jay-Z", + "position": 86, + "title": "Roc Boys (And The Winner Is)..." + }, + { + "artist": "Sara Evans", + "position": 87, + "title": "As If" + }, + { + "artist": "Ingrid Michaelson", + "position": 88, + "title": "The Way I Am" + }, + { + "artist": "Rodney Atkins", + "position": 89, + "title": "Cleaning This Gun (Come On In Boy)" + }, + { + "artist": "Garth Brooks", + "position": 90, + "title": "More Than A Memory" + }, + { + "artist": "Jonas Brothers", + "position": 91, + "title": "S.O.S." + }, + { + "artist": "Jason Michael Carroll", + "position": 92, + "title": "Livin' Our Love Song" + }, + { + "artist": "Paramore", + "position": 93, + "title": "Crushcrushcrush" + }, + { + "artist": "Chuck Wicks", + "position": 94, + "title": "Stealing Cinderella" + }, + { + "artist": "Dierks Bentley", + "position": 95, + "title": "Free And Easy (Down The Road I Go)" + }, + { + "artist": "Craig Morgan", + "position": 96, + "title": "International Harvester" + }, + { + "artist": "Juanes", + "position": 97, + "title": "Me Enamora" + }, + { + "artist": "OneRepublic", + "position": 98, + "title": "Stop And Stare" + }, + { + "artist": "Colbie Caillat", + "position": 99, + "title": "Mistletoe" + }, + { + "artist": "Mary J. Blige", + "position": 100, + "title": "Work That" + } + ], + "title": "2007 - Hot 100" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Irreplaceable" + }, + { + "artist": "Justin Timberlake Featuring T.I.", + "position": 2, + "title": "My Love" + }, + { + "artist": "The Fray", + "position": 3, + "title": "How To Save A Life" + }, + { + "artist": "Akon Featuring Eminem", + "position": 4, + "title": "Smack That" + }, + { + "artist": "Fergie", + "position": 5, + "title": "Fergalicious" + }, + { + "artist": "Hinder", + "position": 6, + "title": "Lips Of An Angel" + }, + { + "artist": "Nickelback", + "position": 7, + "title": "Far Away" + }, + { + "artist": "Akon Featuring Snoop Dogg", + "position": 8, + "title": "I Wanna Love You" + }, + { + "artist": "Paula DeAnda Featuring The DEY", + "position": 9, + "title": "Walk Away (Remember Me)" + }, + { + "artist": "Christina Aguilera", + "position": 10, + "title": "Hurt" + }, + { + "artist": "Ludacris Featuring Pharrell", + "position": 11, + "title": "Money Maker" + }, + { + "artist": "Nelly Furtado", + "position": 12, + "title": "Say It Right" + }, + { + "artist": "Evanescence", + "position": 13, + "title": "Call Me When You're Sober" + }, + { + "artist": "JoJo", + "position": 14, + "title": "Too Little Too Late" + }, + { + "artist": "The All-American Rejects", + "position": 15, + "title": "It Ends Tonight" + }, + { + "artist": "Rihanna & Sean Paul", + "position": 16, + "title": "Break It Off" + }, + { + "artist": "John Mayer", + "position": 17, + "title": "Waiting On The World To Change" + }, + { + "artist": "Vanessa Hudgens", + "position": 18, + "title": "Come Back To Me" + }, + { + "artist": "Justin Timberlake", + "position": 19, + "title": "SexyBack" + }, + { + "artist": "Snow Patrol", + "position": 20, + "title": "Chasing Cars" + } + ], + "title": "2006 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Sugarland", + "position": 1, + "title": "Want To" + }, + { + "artist": "Rascal Flatts", + "position": 2, + "title": "My Wish" + }, + { + "artist": "Tim McGraw", + "position": 3, + "title": "My Little Girl" + }, + { + "artist": "Brad Paisley", + "position": 4, + "title": "She's Everything" + }, + { + "artist": "Rodney Atkins", + "position": 5, + "title": "Watching You" + }, + { + "artist": "Carrie Underwood", + "position": 6, + "title": "Before He Cheats" + }, + { + "artist": "George Strait", + "position": 7, + "title": "It Just Comes Natural" + }, + { + "artist": "Montgomery Gentry", + "position": 8, + "title": "Some People Change" + }, + { + "artist": "Taylor Swift", + "position": 9, + "title": "Tim McGraw" + }, + { + "artist": "Jason Aldean", + "position": 10, + "title": "Amarillo Sky" + }, + { + "artist": "Kenny Chesney", + "position": 11, + "title": "You Save Me" + }, + { + "artist": "Jason Michael Carroll", + "position": 12, + "title": "Alyssa Lies" + }, + { + "artist": "The Wreckers", + "position": 13, + "title": "My, Oh My" + }, + { + "artist": "Trent Tomlinson", + "position": 14, + "title": "One Wing In The Fire" + }, + { + "artist": "Craig Morgan", + "position": 15, + "title": "Little Bit Of Life" + }, + { + "artist": "Keith Urban", + "position": 16, + "title": "Stupid Boy" + }, + { + "artist": "Trace Adkins", + "position": 17, + "title": "Ladies Love Country Boys" + }, + { + "artist": "Martina McBride", + "position": 18, + "title": "Anyway" + }, + { + "artist": "Joe Nichols", + "position": 19, + "title": "I'll Wait For you" + }, + { + "artist": "Kellie Pickler", + "position": 20, + "title": "Red High Heels" + }, + { + "artist": "Sara Evans", + "position": 21, + "title": "You'll Always Be My Baby" + }, + { + "artist": "Phil Vassar", + "position": 22, + "title": "The Woman In My Life" + }, + { + "artist": "Darryl Worley", + "position": 23, + "title": "I Just Came Back From A War" + }, + { + "artist": "Little Big Town", + "position": 24, + "title": "Good As Gone" + }, + { + "artist": "Gary Allan", + "position": 25, + "title": "A Feelin' Like That" + } + ], + "title": "2006 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Irreplaceable" + }, + { + "artist": "Akon Featuring Snoop Dogg", + "position": 2, + "title": "I Wanna Love You" + }, + { + "artist": "Akon Featuring Eminem", + "position": 3, + "title": "Smack That" + }, + { + "artist": "Fergie", + "position": 4, + "title": "Fergalicious" + }, + { + "artist": "Justin Timberlake Featuring T.I.", + "position": 5, + "title": "My Love" + }, + { + "artist": "Nelly Furtado", + "position": 6, + "title": "Say It Right" + }, + { + "artist": "Jim Jones", + "position": 7, + "title": "We Fly High" + }, + { + "artist": "The Fray", + "position": 8, + "title": "How To Save A Life" + }, + { + "artist": "Bow Wow Featuring Chris Brown & Johnta Austin", + "position": 9, + "title": "Shortie Like Mine" + }, + { + "artist": "Hinder", + "position": 10, + "title": "Lips Of An Angel" + }, + { + "artist": "Ciara", + "position": 11, + "title": "Promise" + }, + { + "artist": "Gwen Stefani", + "position": 12, + "title": "Wind It Up" + }, + { + "artist": "Unk", + "position": 13, + "title": "Walk It Out" + }, + { + "artist": "Young Jeezy", + "position": 14, + "title": "I Luv It" + }, + { + "artist": "Ludacris Featuring Pharrell", + "position": 15, + "title": "Money Maker" + }, + { + "artist": "Justin Timberlake", + "position": 16, + "title": "SexyBack" + }, + { + "artist": "Snow Patrol", + "position": 17, + "title": "Chasing Cars" + }, + { + "artist": "The All-American Rejects", + "position": 18, + "title": "It Ends Tonight" + }, + { + "artist": "Avril Lavigne", + "position": 19, + "title": "Keep Holding On" + }, + { + "artist": "Nickelback", + "position": 20, + "title": "Far Away" + }, + { + "artist": "Christina Aguilera", + "position": 21, + "title": "Hurt" + }, + { + "artist": "Paula DeAnda Featuring The DEY", + "position": 22, + "title": "Walk Away (Remember Me)" + }, + { + "artist": "Carrie Underwood", + "position": 23, + "title": "Before He Cheats" + }, + { + "artist": "Snoop Dogg Featuring R. Kelly", + "position": 24, + "title": "That's That" + }, + { + "artist": "Eminem, 50 Cent, Lloyd Banks & Cashis", + "position": 25, + "title": "You Don't Know" + }, + { + "artist": "Lloyd Featuring Lil' Wayne", + "position": 26, + "title": "You" + }, + { + "artist": "My Chemical Romance", + "position": 27, + "title": "Welcome To The Black Parade" + }, + { + "artist": "Chris Brown", + "position": 28, + "title": "Say Goodbye" + }, + { + "artist": "John Mayer", + "position": 29, + "title": "Waiting On The World To Change" + }, + { + "artist": "Fat Joe Featuring Lil Wayne", + "position": 30, + "title": "Make It Rain" + }, + { + "artist": "Ludacris Featuring Mary J. Blige", + "position": 31, + "title": "Runaway Love" + }, + { + "artist": "Lil Scrappy Featuring Young Buck", + "position": 32, + "title": "Money In The Bank" + }, + { + "artist": "Rascal Flatts", + "position": 33, + "title": "My Wish" + }, + { + "artist": "Evanescence", + "position": 34, + "title": "Call Me When You're Sober" + }, + { + "artist": "JoJo", + "position": 35, + "title": "Too Little Too Late" + }, + { + "artist": "Brad Paisley", + "position": 36, + "title": "She's Everything" + }, + { + "artist": "The Pussycat Dolls Featuring Timbaland", + "position": 37, + "title": "Wait A Minute" + }, + { + "artist": "Justin Timberlake", + "position": 38, + "title": "What Goes Around..." + }, + { + "artist": "Sugarland", + "position": 39, + "title": "Want To" + }, + { + "artist": "Rodney Atkins", + "position": 40, + "title": "Watching You" + }, + { + "artist": "Stone Sour", + "position": 41, + "title": "Through Glass" + }, + { + "artist": "Birdman & Lil Wayne", + "position": 42, + "title": "Stuntin' Like My Daddy" + }, + { + "artist": "Tim McGraw", + "position": 43, + "title": "My Little Girl" + }, + { + "artist": "Daughtry", + "position": 44, + "title": "It's Not Over" + }, + { + "artist": "Taylor Swift", + "position": 45, + "title": "Tim McGraw" + }, + { + "artist": "Rascal Flatts", + "position": 46, + "title": "What Hurts The Most" + }, + { + "artist": "Diddy Featuring Christina Aguilera", + "position": 47, + "title": "Tell Me" + }, + { + "artist": "Diddy Featuring Nicole Scherzinger", + "position": 48, + "title": "Come To Me" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 49, + "title": "Snow ((Hey Oh))" + }, + { + "artist": "The Fray", + "position": 50, + "title": "Happy Xmas (War Is Over)" + }, + { + "artist": "Cherish", + "position": 51, + "title": "Unappreciated" + }, + { + "artist": "Jay-Z", + "position": 52, + "title": "Show Me What You Got" + }, + { + "artist": "Danity Kane", + "position": 53, + "title": "Show Stopper" + }, + { + "artist": "Rihanna & Sean Paul", + "position": 54, + "title": "Break It Off" + }, + { + "artist": "Weird Al Yankovic", + "position": 55, + "title": "White & Nerdy" + }, + { + "artist": "Nas Featuring will.i.am", + "position": 56, + "title": "Hip Hop Is Dead" + }, + { + "artist": "Omarion", + "position": 57, + "title": "Ice Box" + }, + { + "artist": "George Strait", + "position": 58, + "title": "It Just Comes Natural" + }, + { + "artist": "The Killers", + "position": 59, + "title": "When You Were Young" + }, + { + "artist": "Jay-Z Featuring Chrisette Michele", + "position": 60, + "title": "Lost One" + }, + { + "artist": "Nelly Furtado", + "position": 61, + "title": "Maneater" + }, + { + "artist": "OK Go", + "position": 62, + "title": "Here It Goes Again" + }, + { + "artist": "Hellogoodbye", + "position": 63, + "title": "Here (In Your Arms)" + }, + { + "artist": "Chris Brown Featuring Jay Biz", + "position": 64, + "title": "Poppin'" + }, + { + "artist": "Jason Aldean", + "position": 65, + "title": "Amarillo Sky" + }, + { + "artist": "Blue October", + "position": 66, + "title": "Into The Ocean" + }, + { + "artist": "Montgomery Gentry", + "position": 67, + "title": "Some People Change" + }, + { + "artist": "Kenny Chesney", + "position": 68, + "title": "You Save Me" + }, + { + "artist": "Augustana", + "position": 69, + "title": "Boston" + }, + { + "artist": "Lil' Boosie Featuring Yung Joc", + "position": 70, + "title": "Zoom" + }, + { + "artist": "Sarah McLachlan", + "position": 71, + "title": "River" + }, + { + "artist": "Nickelback", + "position": 72, + "title": "Rockstar" + }, + { + "artist": "Rob Thomas", + "position": 73, + "title": "Streetcorner Symphony" + }, + { + "artist": "Beyonce Featuring Jay-Z", + "position": 74, + "title": "Upgrade U" + }, + { + "artist": "U2 & Green Day", + "position": 75, + "title": "The Saints Are Coming" + }, + { + "artist": "Mary J. Blige", + "position": 76, + "title": "Take Me As I Am" + }, + { + "artist": "Incubus", + "position": 77, + "title": "Anna-Molly" + }, + { + "artist": "The Red Jumpsuit Apparatus", + "position": 78, + "title": "Face Down" + }, + { + "artist": "Vanessa Hudgens", + "position": 79, + "title": "Come Back To Me" + }, + { + "artist": "Three Days Grace", + "position": 80, + "title": "Pain" + }, + { + "artist": "Fall Out Boy", + "position": 81, + "title": "The Carpal Tunnel Of Love" + }, + { + "artist": "Keith Urban", + "position": 82, + "title": "Stupid Boy" + }, + { + "artist": "T.I.", + "position": 83, + "title": "Top Back" + }, + { + "artist": "Jibbs", + "position": 84, + "title": "Chain Hang Low" + }, + { + "artist": "Chingy Featuring Jermaine Dupri", + "position": 85, + "title": "Dem Jeans" + }, + { + "artist": "Rich Boy Featuring Polow Da Don", + "position": 86, + "title": "Throw Some D's" + }, + { + "artist": "Heartland", + "position": 87, + "title": "I Loved Her First" + }, + { + "artist": "AFI", + "position": 88, + "title": "Love Like Winter" + }, + { + "artist": "The Game", + "position": 89, + "title": "Let's Ride" + }, + { + "artist": "Trace Adkins", + "position": 90, + "title": "Ladies Love Country Boys" + }, + { + "artist": "Robin Thicke", + "position": 91, + "title": "Lost Without U" + }, + { + "artist": "Mat Kearney", + "position": 92, + "title": "Nothing Left To Lose" + }, + { + "artist": "Gwen Stefani Featuring Akon", + "position": 93, + "title": "The Sweet Escape" + }, + { + "artist": "Kellie Pickler", + "position": 94, + "title": "Red High Heels" + }, + { + "artist": "Josh Groban", + "position": 95, + "title": "I'll Be Home For Christmas" + }, + { + "artist": "Pitbull", + "position": 96, + "title": "Ay Chico (Lengua Afuera)" + }, + { + "artist": "Craig Morgan", + "position": 97, + "title": "Little Bit Of Life" + }, + { + "artist": "Regina Spektor", + "position": 98, + "title": "Fidelity" + }, + { + "artist": "Trent Tomlinson", + "position": 99, + "title": "One Wing In The Fire" + }, + { + "artist": "Baby Boy Da Prince Featuring Lil Boosie", + "position": 100, + "title": "The Way I Live" + } + ], + "title": "2006 - Hot 100" + }, + { + "songs": [ + { + "artist": "Mariah Carey", + "position": 1, + "title": "Don't Forget About Us" + }, + { + "artist": "Mary J. Blige", + "position": 2, + "title": "Be Without You" + }, + { + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "position": 3, + "title": "I Think They Like Me" + }, + { + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "position": 4, + "title": "Grillz" + }, + { + "artist": "Ray J", + "position": 5, + "title": "One Wish" + }, + { + "artist": "Chris Brown", + "position": 6, + "title": "Run It!" + }, + { + "artist": "Keyshia Cole", + "position": 7, + "title": "I Should Have Cheated" + }, + { + "artist": "Juelz Santana", + "position": 8, + "title": "There It Go! (The Whistle Song)" + }, + { + "artist": "Jamie Foxx Featuring Ludacris", + "position": 9, + "title": "Unpredictable" + }, + { + "artist": "Alicia Keys", + "position": 10, + "title": "Unbreakable" + }, + { + "artist": "Purple Ribbon All-Stars", + "position": 11, + "title": "Kryptonite (I'm On It)" + }, + { + "artist": "Twista Featuring Trey Songz", + "position": 12, + "title": "Girl Tonite" + }, + { + "artist": "Trina Featuring Kelly Rowland", + "position": 13, + "title": "Here We Go" + }, + { + "artist": "Ne-Yo", + "position": 14, + "title": "So Sick" + }, + { + "artist": "Young Jeezy Featuring Akon", + "position": 15, + "title": "Soul Survivor" + }, + { + "artist": "Lil' Wayne", + "position": 16, + "title": "Fireman" + }, + { + "artist": "Kanye West Featuring Adam Levine", + "position": 17, + "title": "Heard 'Em Say" + }, + { + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "position": 18, + "title": "Stay Fly" + }, + { + "artist": "Trey Songz", + "position": 19, + "title": "Gotta Go" + }, + { + "artist": "T-Pain", + "position": 20, + "title": "I'm Sprung" + }, + { + "artist": "Beyonce Featuring Slim Thug", + "position": 21, + "title": "Check On It" + }, + { + "artist": "Lyfe Jennings", + "position": 22, + "title": "Must Be Nice" + }, + { + "artist": "D4L", + "position": 23, + "title": "Laffy Taffy" + }, + { + "artist": "Kirk Franklin", + "position": 24, + "title": "Looking For You" + }, + { + "artist": "50 Cent", + "position": 25, + "title": "Window Shopper" + } + ], + "title": "2005 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Chris Brown", + "position": 1, + "title": "Run It!" + }, + { + "artist": "The Pussycat Dolls", + "position": 2, + "title": "Stickwitu" + }, + { + "artist": "Kelly Clarkson", + "position": 3, + "title": "Because Of You" + }, + { + "artist": "Mariah Carey", + "position": 4, + "title": "Don't Forget About Us" + }, + { + "artist": "Nickelback", + "position": 5, + "title": "Photograph" + }, + { + "artist": "Kanye West Featuring Jamie Foxx", + "position": 6, + "title": "Gold Digger" + }, + { + "artist": "Beyonce Featuring Slim Thug", + "position": 7, + "title": "Check On It" + }, + { + "artist": "Fall Out Boy", + "position": 8, + "title": "Sugar, We're Goin' Down" + }, + { + "artist": "The All-American Rejects", + "position": 9, + "title": "Dirty Little Secret" + }, + { + "artist": "The Black Eyed Peas", + "position": 10, + "title": "My Humps" + }, + { + "artist": "Gwen Stefani", + "position": 11, + "title": "Luxurious" + }, + { + "artist": "Rihanna", + "position": 12, + "title": "If It's Lovin' That You Want" + }, + { + "artist": "Eminem", + "position": 13, + "title": "When I'm Gone" + }, + { + "artist": "Young Jeezy Featuring Akon", + "position": 14, + "title": "Soul Survivor" + }, + { + "artist": "D4L", + "position": 15, + "title": "Laffy Taffy" + }, + { + "artist": "Sean Paul", + "position": 16, + "title": "We Be Burnin'" + }, + { + "artist": "T-Pain", + "position": 17, + "title": "I'm Sprung" + }, + { + "artist": "Fall Out Boy", + "position": 18, + "title": "Dance, Dance" + }, + { + "artist": "Lifehouse", + "position": 19, + "title": "You And Me" + }, + { + "artist": "Weezer", + "position": 20, + "title": "Beverly Hills" + } + ], + "title": "2005 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Billy Currington", + "position": 1, + "title": "Must Be Doin' Somethin' Right" + }, + { + "artist": "George Strait", + "position": 2, + "title": "She Let Herself Go" + }, + { + "artist": "Garth Brooks", + "position": 3, + "title": "Good Ride Cowboy" + }, + { + "artist": "Dierks Bentley", + "position": 4, + "title": "Come A Little Closer" + }, + { + "artist": "Carrie Underwood", + "position": 5, + "title": "Jesus, Take The Wheel" + }, + { + "artist": "Joe Nichols", + "position": 6, + "title": "Tequila Makes Her Clothes Fall Off" + }, + { + "artist": "Kenny Chesney", + "position": 7, + "title": "Who You'd Be Today" + }, + { + "artist": "Trace Adkins", + "position": 8, + "title": "Honky Tonk Badonkadonk" + }, + { + "artist": "Toby Keith", + "position": 9, + "title": "Big Blue Note" + }, + { + "artist": "Little Big Town", + "position": 10, + "title": "Boondocks" + }, + { + "artist": "Faith Hill", + "position": 11, + "title": "Like We Never Loved At All" + }, + { + "artist": "Chris Cagle", + "position": 12, + "title": "Miss Me Baby" + }, + { + "artist": "Brad Paisley Featuring Dolly Parton", + "position": 13, + "title": "When I Get Where I'm Going" + }, + { + "artist": "Tim McGraw", + "position": 14, + "title": "My Old Friend" + }, + { + "artist": "Sugarland", + "position": 15, + "title": "Just Might (Make Me Believe)" + }, + { + "artist": "Montgomery Gentry", + "position": 16, + "title": "She Don't Tell Me To" + }, + { + "artist": "Josh Turner", + "position": 17, + "title": "Your Man" + }, + { + "artist": "Keith Urban", + "position": 18, + "title": "Tonight I Wanna Cry" + }, + { + "artist": "Brooks & Dunn", + "position": 19, + "title": "Believe" + }, + { + "artist": "Sara Evans", + "position": 20, + "title": "Cheatin'" + }, + { + "artist": "Miranda Lambert", + "position": 21, + "title": "Kerosene" + }, + { + "artist": "Gretchen Wilson", + "position": 22, + "title": "I Don't Feel Like Loving You Today" + }, + { + "artist": "Blake Shelton", + "position": 23, + "title": "Nobody But Me" + }, + { + "artist": "Big & Rich", + "position": 24, + "title": "Comin' To Your City" + }, + { + "artist": "Jamey Johnson", + "position": 25, + "title": "The Dollar" + } + ], + "title": "2005 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Mariah Carey", + "position": 1, + "title": "Don't Forget About Us" + }, + { + "artist": "Chris Brown", + "position": 2, + "title": "Run It!" + }, + { + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "position": 3, + "title": "Grillz" + }, + { + "artist": "D4L", + "position": 4, + "title": "Laffy Taffy" + }, + { + "artist": "The Pussycat Dolls", + "position": 5, + "title": "Stickwitu" + }, + { + "artist": "Nickelback", + "position": 6, + "title": "Photograph" + }, + { + "artist": "Kanye West Featuring Jamie Foxx", + "position": 7, + "title": "Gold Digger" + }, + { + "artist": "Beyonce Featuring Slim Thug", + "position": 8, + "title": "Check On It" + }, + { + "artist": "Kelly Clarkson", + "position": 9, + "title": "Because Of You" + }, + { + "artist": "Juelz Santana", + "position": 10, + "title": "There It Go! (The Whistle Song)" + }, + { + "artist": "The Black Eyed Peas", + "position": 11, + "title": "My Humps" + }, + { + "artist": "Ray J", + "position": 12, + "title": "One Wish" + }, + { + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "position": 13, + "title": "Stay Fly" + }, + { + "artist": "Young Jeezy Featuring Akon", + "position": 14, + "title": "Soul Survivor" + }, + { + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "position": 15, + "title": "I Think They Like Me" + }, + { + "artist": "Eminem", + "position": 16, + "title": "When I'm Gone" + }, + { + "artist": "T-Pain", + "position": 17, + "title": "I'm Sprung" + }, + { + "artist": "Trina Featuring Kelly Rowland", + "position": 18, + "title": "Here We Go" + }, + { + "artist": "Sean Paul", + "position": 19, + "title": "We Be Burnin'" + }, + { + "artist": "Mary J. Blige", + "position": 20, + "title": "Be Without You" + }, + { + "artist": "Madonna", + "position": 21, + "title": "Hung Up" + }, + { + "artist": "Fall Out Boy", + "position": 22, + "title": "Sugar, We're Goin' Down" + }, + { + "artist": "James Blunt", + "position": 23, + "title": "You're Beautiful" + }, + { + "artist": "Fall Out Boy", + "position": 24, + "title": "Dance, Dance" + }, + { + "artist": "Gwen Stefani", + "position": 25, + "title": "Luxurious" + }, + { + "artist": "Ne-Yo", + "position": 26, + "title": "So Sick" + }, + { + "artist": "The All-American Rejects", + "position": 27, + "title": "Dirty Little Secret" + }, + { + "artist": "Kanye West Featuring Adam Levine", + "position": 28, + "title": "Heard 'Em Say" + }, + { + "artist": "Lifehouse", + "position": 29, + "title": "You And Me" + }, + { + "artist": "Gorillaz", + "position": 30, + "title": "Feel Good Inc" + }, + { + "artist": "Carrie Underwood", + "position": 31, + "title": "Jesus, Take The Wheel" + }, + { + "artist": "Lil' Wayne", + "position": 32, + "title": "Fireman" + }, + { + "artist": "Green Day", + "position": 33, + "title": "Wake Me Up When September Ends" + }, + { + "artist": "Keyshia Cole", + "position": 34, + "title": "I Should Have Cheated" + }, + { + "artist": "Purple Ribbon All-Stars", + "position": 35, + "title": "Kryptonite (I'm On It)" + }, + { + "artist": "Rihanna", + "position": 36, + "title": "If It's Lovin' That You Want" + }, + { + "artist": "Weezer", + "position": 37, + "title": "Beverly Hills" + }, + { + "artist": "Trace Adkins", + "position": 38, + "title": "Honky Tonk Badonkadonk" + }, + { + "artist": "Billy Currington", + "position": 39, + "title": "Must Be Doin' Somethin' Right" + }, + { + "artist": "Dierks Bentley", + "position": 40, + "title": "Come A Little Closer" + }, + { + "artist": "Mariah Carey", + "position": 41, + "title": "Shake It Off" + }, + { + "artist": "Twista Featuring Trey Songz", + "position": 42, + "title": "Girl Tonite" + }, + { + "artist": "Chamillionaire Featuring Lil' Flip", + "position": 43, + "title": "Turn It Up" + }, + { + "artist": "Joe Nichols", + "position": 44, + "title": "Tequila Makes Her Clothes Fall Off" + }, + { + "artist": "The Pussycat Dolls Featuring Busta Rhymes", + "position": 45, + "title": "Don't Cha" + }, + { + "artist": "50 Cent", + "position": 46, + "title": "Window Shopper" + }, + { + "artist": "Jamie Foxx Featuring Ludacris", + "position": 47, + "title": "Unpredictable" + }, + { + "artist": "Ludacris & Field Mob Featuring Jamie Foxx", + "position": 48, + "title": "Georgia" + }, + { + "artist": "Alicia Keys", + "position": 49, + "title": "Unbreakable" + }, + { + "artist": "Mariah Carey", + "position": 50, + "title": "We Belong Together" + }, + { + "artist": "Natasha Bedingfield", + "position": 51, + "title": "Unwritten" + }, + { + "artist": "Eminem Featuring Nate Dogg", + "position": 52, + "title": "Shake That" + }, + { + "artist": "Faith Hill", + "position": 53, + "title": "Like We Never Loved At All" + }, + { + "artist": "George Strait", + "position": 54, + "title": "She Let Herself Go" + }, + { + "artist": "Cascada", + "position": 55, + "title": "Everytime We Touch" + }, + { + "artist": "Kenny Chesney", + "position": 56, + "title": "Who You'd Be Today" + }, + { + "artist": "Goo Goo Dolls", + "position": 57, + "title": "Better Days" + }, + { + "artist": "Little Big Town", + "position": 58, + "title": "Boondocks" + }, + { + "artist": "Garth Brooks", + "position": 59, + "title": "Good Ride Cowboy" + }, + { + "artist": "Death Cab For Cutie", + "position": 60, + "title": "Soul Meets Body" + }, + { + "artist": "Shakira", + "position": 61, + "title": "Don't Bother" + }, + { + "artist": "Brad Paisley Featuring Dolly Parton", + "position": 62, + "title": "When I Get Where I'm Going" + }, + { + "artist": "System Of A Down", + "position": 63, + "title": "Hypnotize" + }, + { + "artist": "The Notorious B.I.G. Featuring Diddy, Nelly, Jagged Edge & Avery Storm", + "position": 64, + "title": "Nasty Girl" + }, + { + "artist": "Korn", + "position": 65, + "title": "Twisted Transistor" + }, + { + "artist": "Daddy Yankee", + "position": 66, + "title": "Rompe" + }, + { + "artist": "Busta Rhymes", + "position": 67, + "title": "Touch It" + }, + { + "artist": "Trey Songz", + "position": 68, + "title": "Gotta Go" + }, + { + "artist": "Chris Cagle", + "position": 69, + "title": "Miss Me Baby" + }, + { + "artist": "The Black Eyed Peas", + "position": 70, + "title": "Pump It" + }, + { + "artist": "Ying Yang Twins Featuring Pitbull", + "position": 71, + "title": "Shake" + }, + { + "artist": "Juvenile", + "position": 72, + "title": "Rodeo" + }, + { + "artist": "Bow Wow Featuring J-Kwon & Jermaine Dupri", + "position": 73, + "title": "Fresh Azimiz" + }, + { + "artist": "Cast Of Rent", + "position": 74, + "title": "Seasons Of Love" + }, + { + "artist": "Keith Urban", + "position": 75, + "title": "Better Life" + }, + { + "artist": "Ashlee Simpson", + "position": 76, + "title": "L.O.V.E." + }, + { + "artist": "Toby Keith", + "position": 77, + "title": "Big Blue Note" + }, + { + "artist": "Avenged Sevenfold", + "position": 78, + "title": "Bat Country" + }, + { + "artist": "Sugarland", + "position": 79, + "title": "Just Might (Make Me Believe)" + }, + { + "artist": "Shinedown", + "position": 80, + "title": "Save Me" + }, + { + "artist": "Weezer", + "position": 81, + "title": "Perfect Situation" + }, + { + "artist": "Foo Fighters", + "position": 82, + "title": "DOA" + }, + { + "artist": "Kirk Franklin", + "position": 83, + "title": "Looking For You" + }, + { + "artist": "Frankie J", + "position": 84, + "title": "More Than Words" + }, + { + "artist": "Wisin & Yandel", + "position": 85, + "title": "Rakata" + }, + { + "artist": "Keith Urban", + "position": 86, + "title": "Tonight I Wanna Cry" + }, + { + "artist": "T-Pain Featuring Mike Jones", + "position": 87, + "title": "I'm N Luv (Wit A Stripper)" + }, + { + "artist": "Tim McGraw", + "position": 88, + "title": "My Old Friend" + }, + { + "artist": "Chris Brown", + "position": 89, + "title": "Yo (Excuse Me Miss)" + }, + { + "artist": "Miranda Lambert", + "position": 90, + "title": "Kerosene" + }, + { + "artist": "YoungBloodZ", + "position": 91, + "title": "Presidential" + }, + { + "artist": "Ashlee Simpson", + "position": 92, + "title": "Boyfriend" + }, + { + "artist": "Josh Turner", + "position": 93, + "title": "Your Man" + }, + { + "artist": "Seether", + "position": 94, + "title": "Remedy" + }, + { + "artist": "Brooks & Dunn", + "position": 95, + "title": "Believe" + }, + { + "artist": "Twista Featuring Pitbull", + "position": 96, + "title": "Hit The Floor" + }, + { + "artist": "Lindsay Lohan", + "position": 97, + "title": "Confessions Of A Broken Heart (Daughter To Father)" + }, + { + "artist": "Montgomery Gentry", + "position": 98, + "title": "She Don't Tell Me To" + }, + { + "artist": "Bon Jovi", + "position": 99, + "title": "Have A Nice Day" + }, + { + "artist": "Big & Rich", + "position": 100, + "title": "Comin' To Your City" + } + ], + "title": "2005 - Hot 100" + }, + { + "songs": [ + { + "artist": "Snoop Dogg Featuring Pharrell", + "position": 1, + "title": "Drop It Like It's Hot" + }, + { + "artist": "Mario", + "position": 2, + "title": "Let Me Love You" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "position": 3, + "title": "Lovers And Friends" + }, + { + "artist": "Ciara Featuring Missy Elliott", + "position": 4, + "title": "1, 2 Step" + }, + { + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "position": 5, + "title": "Soldier" + }, + { + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "position": 6, + "title": "Wonderful" + }, + { + "artist": "Usher And Alicia Keys", + "position": 7, + "title": "My Boo" + }, + { + "artist": "Jadakiss Featuring Mariah Carey", + "position": 8, + "title": "U Make Me Wanna" + }, + { + "artist": "Anthony Hamilton", + "position": 9, + "title": "Charlene" + }, + { + "artist": "Lil Wayne", + "position": 10, + "title": "Go D.J." + }, + { + "artist": "Ashanti", + "position": 11, + "title": "Only U" + }, + { + "artist": "Fabolous", + "position": 12, + "title": "Breathe" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "position": 13, + "title": "What U Gon' Do" + }, + { + "artist": "50 Cent", + "position": 14, + "title": "Disco Inferno" + }, + { + "artist": "T.I.", + "position": 15, + "title": "Bring Em Out" + }, + { + "artist": "Lloyd Banks Featuring Avant", + "position": 16, + "title": "Karma" + }, + { + "artist": "Ludacris", + "position": 17, + "title": "Get Back" + }, + { + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "position": 18, + "title": "New York" + }, + { + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "position": 19, + "title": "Let's Go" + }, + { + "artist": "The Game Featuring 50 Cent", + "position": 20, + "title": "How We Do" + }, + { + "artist": "Young Buck", + "position": 21, + "title": "Shorty Wanna Ride" + }, + { + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "position": 22, + "title": "Diary" + }, + { + "artist": "Destiny's Child", + "position": 23, + "title": "Lose My Breath" + }, + { + "artist": "Trillville Featuring Cutty", + "position": 24, + "title": "Some Cut" + }, + { + "artist": "LL Cool J Featuring 7 Aurelius", + "position": 25, + "title": "Hush" + } + ], + "title": "2004 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Nelly Featuring Tim McGraw", + "position": 1, + "title": "Over And Over" + }, + { + "artist": "Gavin DeGraw", + "position": 2, + "title": "I Don't Want To Be" + }, + { + "artist": "Kelly Clarkson", + "position": 3, + "title": "Breakaway" + }, + { + "artist": "Usher And Alicia Keys", + "position": 4, + "title": "My Boo" + }, + { + "artist": "Snoop Dogg Featuring Pharrell", + "position": 5, + "title": "Drop It Like It's Hot" + }, + { + "artist": "Mario", + "position": 6, + "title": "Let Me Love You" + }, + { + "artist": "Destiny's Child", + "position": 7, + "title": "Lose My Breath" + }, + { + "artist": "Switchfoot", + "position": 8, + "title": "Dare You To Move" + }, + { + "artist": "JoJo Featuring Bow Wow", + "position": 9, + "title": "Baby It's You" + }, + { + "artist": "Simple Plan", + "position": 10, + "title": "Welcome To My Life" + }, + { + "artist": "Ciara Featuring Missy Elliott", + "position": 11, + "title": "1, 2 Step" + }, + { + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "position": 12, + "title": "Let's Go" + }, + { + "artist": "Jesse McCartney", + "position": 13, + "title": "Beautiful Soul" + }, + { + "artist": "Ryan Cabrera", + "position": 14, + "title": "True" + }, + { + "artist": "Eminem", + "position": 15, + "title": "Just Lose It" + }, + { + "artist": "Maroon5", + "position": 16, + "title": "She Will Be Loved" + }, + { + "artist": "Seether Featuring Amy Lee", + "position": 17, + "title": "Broken" + }, + { + "artist": "Avril Lavigne", + "position": 18, + "title": "Nobody's Home" + }, + { + "artist": "Kelly Clarkson", + "position": 19, + "title": "Since U Been Gone" + }, + { + "artist": "Ciara Featuring Petey Pablo", + "position": 20, + "title": "Goodies" + } + ], + "title": "2004 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Blake Shelton", + "position": 1, + "title": "Some Beach" + }, + { + "artist": "Tim McGraw", + "position": 2, + "title": "Back When" + }, + { + "artist": "Kenny Chesney", + "position": 3, + "title": "The Woman With You" + }, + { + "artist": "Darryl Worley", + "position": 4, + "title": "Awful, Beautiful Life" + }, + { + "artist": "Gary Allan", + "position": 5, + "title": "Nothing On But The Radio" + }, + { + "artist": "Dierks Bentley", + "position": 6, + "title": "How Am I Doin'" + }, + { + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "position": 7, + "title": "Party For Two" + }, + { + "artist": "Lonestar", + "position": 8, + "title": "Mr. Mom" + }, + { + "artist": "Brad Paisley", + "position": 9, + "title": "Mud On The Tires" + }, + { + "artist": "Alan Jackson", + "position": 10, + "title": "Monday Morning Church" + }, + { + "artist": "Gretchen Wilson", + "position": 11, + "title": "When I Think About Cheatin'" + }, + { + "artist": "Keith Urban", + "position": 12, + "title": "You're My Better Half" + }, + { + "artist": "LeAnn Rimes", + "position": 13, + "title": "Nothin 'Bout Love Makes Sense" + }, + { + "artist": "SheDaisy", + "position": 14, + "title": "Come Home Soon" + }, + { + "artist": "Rascal Flatts", + "position": 15, + "title": "Bless The Broken Road" + }, + { + "artist": "Reba McEntire", + "position": 16, + "title": "He Gets That From Me" + }, + { + "artist": "Big & Rich", + "position": 17, + "title": "Holy Water" + }, + { + "artist": "Josh Gracin", + "position": 18, + "title": "Nothin' To Lose" + }, + { + "artist": "Billy Dean", + "position": 19, + "title": "Let Them Be Little" + }, + { + "artist": "Lee Ann Womack", + "position": 20, + "title": "I May Hate Myself In The Morning" + }, + { + "artist": "Pat Green", + "position": 21, + "title": "Don't Break My Heart Again" + }, + { + "artist": "Jimmy Wayne", + "position": 22, + "title": "Paper Angels" + }, + { + "artist": "Sugarland", + "position": 23, + "title": "Baby Girl" + }, + { + "artist": "Jamie O'Neal", + "position": 24, + "title": "Trying To Find Atlantis" + }, + { + "artist": "Andy Griggs", + "position": 25, + "title": "If Heaven" + } + ], + "title": "2004 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Snoop Dogg Featuring Pharrell", + "position": 1, + "title": "Drop It Like It's Hot" + }, + { + "artist": "Mario", + "position": 2, + "title": "Let Me Love You" + }, + { + "artist": "Ciara Featuring Missy Elliott", + "position": 3, + "title": "1, 2 Step" + }, + { + "artist": "Usher And Alicia Keys", + "position": 4, + "title": "My Boo" + }, + { + "artist": "Nelly Featuring Tim McGraw", + "position": 5, + "title": "Over And Over" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "position": 6, + "title": "Lovers And Friends" + }, + { + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "position": 7, + "title": "Soldier" + }, + { + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "position": 8, + "title": "Wonderful" + }, + { + "artist": "Destiny's Child", + "position": 9, + "title": "Lose My Breath" + }, + { + "artist": "Kelly Clarkson", + "position": 10, + "title": "Breakaway" + }, + { + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "position": 11, + "title": "Let's Go" + }, + { + "artist": "Gavin DeGraw", + "position": 12, + "title": "I Don't Want To Be" + }, + { + "artist": "50 Cent", + "position": 13, + "title": "Disco Inferno" + }, + { + "artist": "Ashanti", + "position": 14, + "title": "Only U" + }, + { + "artist": "Maroon5", + "position": 15, + "title": "She Will Be Loved" + }, + { + "artist": "Ciara Featuring Petey Pablo", + "position": 16, + "title": "Goodies" + }, + { + "artist": "N.O.R.E. Featuring Daddy Yankee, Nina Sky, Gem Star & Big Mato", + "position": 17, + "title": "Oye Mi Canto" + }, + { + "artist": "Ludacris", + "position": 18, + "title": "Get Back" + }, + { + "artist": "Switchfoot", + "position": 19, + "title": "Dare You To Move" + }, + { + "artist": "Fabolous", + "position": 20, + "title": "Breathe" + }, + { + "artist": "Jadakiss Featuring Mariah Carey", + "position": 21, + "title": "U Make Me Wanna" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "position": 22, + "title": "What U Gon' Do" + }, + { + "artist": "The Game Featuring 50 Cent", + "position": 23, + "title": "How We Do" + }, + { + "artist": "Lil Wayne", + "position": 24, + "title": "Go D.J." + }, + { + "artist": "Lloyd Banks Featuring Avant", + "position": 25, + "title": "Karma" + }, + { + "artist": "Eminem Featuring Dr. Dre & 50 Cent", + "position": 26, + "title": "Encore" + }, + { + "artist": "Green Day", + "position": 27, + "title": "Boulevard Of Broken Dreams" + }, + { + "artist": "Blake Shelton", + "position": 28, + "title": "Some Beach" + }, + { + "artist": "Anthony Hamilton", + "position": 29, + "title": "Charlene" + }, + { + "artist": "Tim McGraw", + "position": 30, + "title": "Back When" + }, + { + "artist": "Seether Featuring Amy Lee", + "position": 31, + "title": "Broken" + }, + { + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "position": 32, + "title": "New York" + }, + { + "artist": "JoJo Featuring Bow Wow", + "position": 33, + "title": "Baby It's You" + }, + { + "artist": "John Mayer", + "position": 34, + "title": "Daughters" + }, + { + "artist": "T.I.", + "position": 35, + "title": "Bring Em Out" + }, + { + "artist": "U2", + "position": 36, + "title": "Vertigo" + }, + { + "artist": "Jay-Z/Linkin Park", + "position": 37, + "title": "Numb/Encore" + }, + { + "artist": "Young Buck", + "position": 38, + "title": "Shorty Wanna Ride" + }, + { + "artist": "Ryan Cabrera", + "position": 39, + "title": "True" + }, + { + "artist": "Simple Plan", + "position": 40, + "title": "Welcome To My Life" + }, + { + "artist": "Finger Eleven", + "position": 41, + "title": "One Thing" + }, + { + "artist": "Ryan Cabrera", + "position": 42, + "title": "On The Way Down" + }, + { + "artist": "Avril Lavigne", + "position": 43, + "title": "My Happy Ending" + }, + { + "artist": "Darryl Worley", + "position": 44, + "title": "Awful, Beautiful Life" + }, + { + "artist": "Eminem", + "position": 45, + "title": "Just Lose It" + }, + { + "artist": "Terror Squad", + "position": 46, + "title": "Lean Back" + }, + { + "artist": "Kenny Chesney", + "position": 47, + "title": "The Woman With You" + }, + { + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "position": 48, + "title": "Diary" + }, + { + "artist": "Jesse McCartney", + "position": 49, + "title": "Beautiful Soul" + }, + { + "artist": "Gary Allan", + "position": 50, + "title": "Nothing On But The Radio" + }, + { + "artist": "Dierks Bentley", + "position": 51, + "title": "How Am I Doin'" + }, + { + "artist": "Chingy", + "position": 52, + "title": "Balla Baby" + }, + { + "artist": "Kelly Clarkson", + "position": 53, + "title": "Since U Been Gone" + }, + { + "artist": "LL Cool J Featuring 7 Aurelius", + "position": 54, + "title": "Hush" + }, + { + "artist": "Gretchen Wilson", + "position": 55, + "title": "When I Think About Cheatin'" + }, + { + "artist": "Keith Urban", + "position": 56, + "title": "You're My Better Half" + }, + { + "artist": "Avril Lavigne", + "position": 57, + "title": "Nobody's Home" + }, + { + "artist": "Brad Paisley", + "position": 58, + "title": "Mud On The Tires" + }, + { + "artist": "Lonestar", + "position": 59, + "title": "Mr. Mom" + }, + { + "artist": "LeAnn Rimes", + "position": 60, + "title": "Nothin 'Bout Love Makes Sense" + }, + { + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "position": 61, + "title": "Party For Two" + }, + { + "artist": "Rascal Flatts", + "position": 62, + "title": "Bless The Broken Road" + }, + { + "artist": "The Killers", + "position": 63, + "title": "Somebody Told Me" + }, + { + "artist": "Bowling For Soup", + "position": 64, + "title": "1985" + }, + { + "artist": "Lenny Kravitz", + "position": 65, + "title": "Lady" + }, + { + "artist": "Alicia Keys", + "position": 66, + "title": "Karma" + }, + { + "artist": "Alan Jackson", + "position": 67, + "title": "Monday Morning Church" + }, + { + "artist": "Goo Goo Dolls", + "position": 68, + "title": "Give A Little Bit" + }, + { + "artist": "Rupee", + "position": 69, + "title": "Tempted To Touch" + }, + { + "artist": "Trillville Featuring Cutty", + "position": 70, + "title": "Some Cut" + }, + { + "artist": "Reba McEntire", + "position": 71, + "title": "He Gets That From Me" + }, + { + "artist": "Chevelle", + "position": 72, + "title": "Vitamin R (Leading Us Along)" + }, + { + "artist": "Daddy Yankee", + "position": 73, + "title": "Gasolina" + }, + { + "artist": "Gwen Stefani Featuring Eve", + "position": 74, + "title": "Rich Girl" + }, + { + "artist": "SheDaisy", + "position": 75, + "title": "Come Home Soon" + }, + { + "artist": "Usher", + "position": 76, + "title": "Caught Up" + }, + { + "artist": "Velvet Revolver", + "position": 77, + "title": "Fall To Pieces" + }, + { + "artist": "Guerilla Black Featuring Mario Winans", + "position": 78, + "title": "You're The One" + }, + { + "artist": "Breaking Benjamin", + "position": 79, + "title": "So Cold" + }, + { + "artist": "Phil Vassar", + "position": 80, + "title": "In A Real Love" + }, + { + "artist": "Crossfade", + "position": 81, + "title": "Cold" + }, + { + "artist": "Keyshia Cole Featuring Shyne", + "position": 82, + "title": "I Changed My Mind" + }, + { + "artist": "Papa Roach", + "position": 83, + "title": "Getting Away With Murder" + }, + { + "artist": "Terror Squad", + "position": 84, + "title": "Take Me Home" + }, + { + "artist": "Crime Mob Featuring Lil Scrappy", + "position": 85, + "title": "Knuck If You Buck" + }, + { + "artist": "Juvenile, Wacko & Skip", + "position": 86, + "title": "Nolia Clap" + }, + { + "artist": "Gwen Stefani", + "position": 87, + "title": "What You Waiting For?" + }, + { + "artist": "Brooks & Dunn", + "position": 88, + "title": "That's What It's All About" + }, + { + "artist": "Sugarland", + "position": 89, + "title": "Baby Girl" + }, + { + "artist": "Patti LaBelle Featuring Ron Isley", + "position": 90, + "title": "Gotta Go Solo" + }, + { + "artist": "Body Head Bangerz Featuring YoungBloodz", + "position": 91, + "title": "I Smoke, I Drank" + }, + { + "artist": "Green Day", + "position": 92, + "title": "American Idiot" + }, + { + "artist": "Beyonce", + "position": 93, + "title": "Dangerously In Love" + }, + { + "artist": "Xzibit Featuring Keri Hilson", + "position": 94, + "title": "Hey Now (Mean Muggin)" + }, + { + "artist": "Nivea Featuring Lil Jon & YoungBloodZ", + "position": 95, + "title": "Okay" + }, + { + "artist": "Monchy & Alexandra", + "position": 96, + "title": "Perdidos" + }, + { + "artist": "George Strait", + "position": 97, + "title": "I Hate Everything" + }, + { + "artist": "John Legend", + "position": 98, + "title": "Used To Love U" + }, + { + "artist": "Anita Baker", + "position": 99, + "title": "You're My Everything" + }, + { + "artist": "Prince", + "position": 100, + "title": "Call My Name" + } + ], + "title": "2004 - Hot 100" + }, + { + "songs": [ + { + "artist": "Alicia Keys", + "position": 1, + "title": "You Don't Know My Name" + }, + { + "artist": "Jagged Edge", + "position": 2, + "title": "Walked Outta Heaven" + }, + { + "artist": "OutKast Featuring Sleepy Brown", + "position": 3, + "title": "The Way You Move" + }, + { + "artist": "R. Kelly", + "position": 4, + "title": "Step In The Name Of Love" + }, + { + "artist": "Avant", + "position": 5, + "title": "Read Your Mind" + }, + { + "artist": "Kelis", + "position": 6, + "title": "Milkshake" + }, + { + "artist": "Jay-Z", + "position": 7, + "title": "Change Clothes" + }, + { + "artist": "YoungBloodZ Featuring Lil Jon", + "position": 8, + "title": "Damn!" + }, + { + "artist": "Ludacris Featuring Shawnna", + "position": 9, + "title": "Stand Up" + }, + { + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "position": 10, + "title": "Slow Jamz" + }, + { + "artist": "Tupac Featuring The Notorious B.I.G.", + "position": 11, + "title": "Runnin (Dying To Live)" + }, + { + "artist": "Beyonce", + "position": 12, + "title": "Me, Myself And I" + }, + { + "artist": "G-Unit", + "position": 13, + "title": "Stunt 101" + }, + { + "artist": "OutKast", + "position": 14, + "title": "Hey Ya!" + }, + { + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "position": 15, + "title": "Holidae In" + }, + { + "artist": "Kanye West", + "position": 16, + "title": "Through The Wire" + }, + { + "artist": "Joe", + "position": 17, + "title": "More & More" + }, + { + "artist": "Musiq", + "position": 18, + "title": "Forthenight" + }, + { + "artist": "Murphy Lee Featuring Jermaine Dupri", + "position": 19, + "title": "Wat Da Hook Gon Be" + }, + { + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "position": 20, + "title": "Salt Shaker" + }, + { + "artist": "Mary J. Blige Featuring Eve", + "position": 21, + "title": "Not Today" + }, + { + "artist": "Ashanti", + "position": 22, + "title": "Rain On Me" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "position": 23, + "title": "Get Low" + }, + { + "artist": "Bow Wow Featuring Jagged Edge", + "position": 24, + "title": "My Baby" + }, + { + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "position": 25, + "title": "Clubbin" + } + ], + "title": "2003 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "OutKast", + "position": 1, + "title": "Hey Ya!" + }, + { + "artist": "3 Doors Down", + "position": 2, + "title": "Here Without You" + }, + { + "artist": "Baby Bash Featuring Frankie J", + "position": 3, + "title": "Suga Suga" + }, + { + "artist": "Nickelback", + "position": 4, + "title": "Someday" + }, + { + "artist": "Simple Plan", + "position": 5, + "title": "Perfect" + }, + { + "artist": "No Doubt", + "position": 6, + "title": "It's My Life" + }, + { + "artist": "Beyonce Featuring Sean Paul", + "position": 7, + "title": "Baby Boy" + }, + { + "artist": "Trapt", + "position": 8, + "title": "Headstrong" + }, + { + "artist": "Stacie Orrico", + "position": 9, + "title": "(There's Gotta Be) More To Life" + }, + { + "artist": "Ludacris Featuring Shawnna", + "position": 10, + "title": "Stand Up" + }, + { + "artist": "OutKast Featuring Sleepy Brown", + "position": 11, + "title": "The Way You Move" + }, + { + "artist": "Christina Aguilera", + "position": 12, + "title": "The Voice Within" + }, + { + "artist": "Liz Phair", + "position": 13, + "title": "Why Can't I" + }, + { + "artist": "Clay Aiken", + "position": 14, + "title": "Invisible" + }, + { + "artist": "Kelis", + "position": 15, + "title": "Milkshake" + }, + { + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "position": 16, + "title": "Holidae In" + }, + { + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "position": 17, + "title": "Why Don't You & I" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "position": 18, + "title": "Get Low" + }, + { + "artist": "Michelle Branch", + "position": 19, + "title": "Breathe" + }, + { + "artist": "Staind", + "position": 20, + "title": "So Far Away" + } + ], + "title": "2003 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Kenny Chesney", + "position": 1, + "title": "There Goes My Life" + }, + { + "artist": "George Strait", + "position": 2, + "title": "Cowboys Like Us" + }, + { + "artist": "Toby Keith", + "position": 3, + "title": "I Love This Bar" + }, + { + "artist": "Brooks & Dunn", + "position": 4, + "title": "You Can't Take The Honky Tonk Out Of The Girl" + }, + { + "artist": "Alan Jackson", + "position": 5, + "title": "Remember When" + }, + { + "artist": "Chris Cagle", + "position": 6, + "title": "Chicks Dig It" + }, + { + "artist": "Rodney Atkins", + "position": 7, + "title": "Honesty (Write Me A List)" + }, + { + "artist": "Lonestar", + "position": 8, + "title": "Walking In Memphis" + }, + { + "artist": "Tracy Byrd", + "position": 9, + "title": "Drinkin' Bone" + }, + { + "artist": "Terri Clark", + "position": 10, + "title": "I Wanna Do It All" + }, + { + "artist": "Montgomery Gentry", + "position": 11, + "title": "Hell Yeah" + }, + { + "artist": "Shania Twain", + "position": 12, + "title": "She's Not Just A Pretty Face" + }, + { + "artist": "Tim McGraw", + "position": 13, + "title": "Watch The Wind Blow By" + }, + { + "artist": "Brad Paisley", + "position": 14, + "title": "Little Moments" + }, + { + "artist": "Jo Dee Messina", + "position": 15, + "title": "I Wish" + }, + { + "artist": "Pat Green", + "position": 16, + "title": "Wave On Wave" + }, + { + "artist": "Rascal Flatts", + "position": 17, + "title": "I Melt" + }, + { + "artist": "Keith Urban", + "position": 18, + "title": "Who Wouldn't Wanna Be Me" + }, + { + "artist": "Diamond Rio", + "position": 19, + "title": "Wrinkles" + }, + { + "artist": "Trace Adkins", + "position": 20, + "title": "Hot Mama" + }, + { + "artist": "Jimmy Wayne", + "position": 21, + "title": "I Love You This Much" + }, + { + "artist": "Toby Keith", + "position": 22, + "title": "American Soldier" + }, + { + "artist": "Josh Turner", + "position": 23, + "title": "Long Black Train" + }, + { + "artist": "Sara Evans", + "position": 24, + "title": "Perfect" + }, + { + "artist": "Martina McBride", + "position": 25, + "title": "In My Daughter's Eyes" + } + ], + "title": "2003 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "OutKast", + "position": 1, + "title": "Hey Ya!" + }, + { + "artist": "OutKast Featuring Sleepy Brown", + "position": 2, + "title": "The Way You Move" + }, + { + "artist": "Kelis", + "position": 3, + "title": "Milkshake" + }, + { + "artist": "Ludacris Featuring Shawnna", + "position": 4, + "title": "Stand Up" + }, + { + "artist": "Alicia Keys", + "position": 5, + "title": "You Don't Know My Name" + }, + { + "artist": "Jagged Edge", + "position": 6, + "title": "Walked Outta Heaven" + }, + { + "artist": "3 Doors Down", + "position": 7, + "title": "Here Without You" + }, + { + "artist": "Baby Bash Featuring Frankie J", + "position": 8, + "title": "Suga Suga" + }, + { + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "position": 9, + "title": "Holidae In" + }, + { + "artist": "Jay-Z", + "position": 10, + "title": "Change Clothes" + }, + { + "artist": "R. Kelly", + "position": 11, + "title": "Step In The Name Of Love" + }, + { + "artist": "Beyonce Featuring Sean Paul", + "position": 12, + "title": "Baby Boy" + }, + { + "artist": "YoungBloodZ Featuring Lil Jon", + "position": 13, + "title": "Damn!" + }, + { + "artist": "No Doubt", + "position": 14, + "title": "It's My Life" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "position": 15, + "title": "Get Low" + }, + { + "artist": "Nickelback", + "position": 16, + "title": "Someday" + }, + { + "artist": "Beyonce", + "position": 17, + "title": "Me, Myself And I" + }, + { + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "position": 18, + "title": "Slow Jamz" + }, + { + "artist": "Avant", + "position": 19, + "title": "Read Your Mind" + }, + { + "artist": "Tupac Featuring The Notorious B.I.G.", + "position": 20, + "title": "Runnin (Dying To Live)" + }, + { + "artist": "G-Unit", + "position": 21, + "title": "Stunt 101" + }, + { + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "position": 22, + "title": "Why Don't You & I" + }, + { + "artist": "Murphy Lee Featuring Jermaine Dupri", + "position": 23, + "title": "Wat Da Hook Gon Be" + }, + { + "artist": "Simple Plan", + "position": 24, + "title": "Perfect" + }, + { + "artist": "Trapt", + "position": 25, + "title": "Headstrong" + }, + { + "artist": "Dido", + "position": 26, + "title": "White Flag" + }, + { + "artist": "Linkin Park", + "position": 27, + "title": "Numb" + }, + { + "artist": "Staind", + "position": 28, + "title": "So Far Away" + }, + { + "artist": "Kenny Chesney", + "position": 29, + "title": "There Goes My Life" + }, + { + "artist": "Sheryl Crow", + "position": 30, + "title": "The First Cut Is The Deepest" + }, + { + "artist": "matchbox twenty", + "position": 31, + "title": "Bright Lights" + }, + { + "artist": "Liz Phair", + "position": 32, + "title": "Why Can't I" + }, + { + "artist": "Nick Cannon Featuring R. Kelly", + "position": 33, + "title": "Gigolo" + }, + { + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "position": 34, + "title": "Salt Shaker" + }, + { + "artist": "Chingy", + "position": 35, + "title": "Right Thurr" + }, + { + "artist": "Christina Aguilera", + "position": 36, + "title": "The Voice Within" + }, + { + "artist": "Maroon5", + "position": 37, + "title": "Harder To Breathe" + }, + { + "artist": "Stacie Orrico", + "position": 38, + "title": "(There's Gotta Be) More To Life" + }, + { + "artist": "Kanye West", + "position": 39, + "title": "Through The Wire" + }, + { + "artist": "Nelly, P. Diddy & Murphy Lee", + "position": 40, + "title": "Shake Ya Tailfeather" + }, + { + "artist": "Toby Keith", + "position": 41, + "title": "I Love This Bar" + }, + { + "artist": "Brooks & Dunn", + "position": 42, + "title": "You Can't Take The Honky Tonk Out Of The Girl" + }, + { + "artist": "Clay Aiken", + "position": 43, + "title": "Invisible" + }, + { + "artist": "Alan Jackson", + "position": 44, + "title": "Remember When" + }, + { + "artist": "Michelle Branch", + "position": 45, + "title": "Breathe" + }, + { + "artist": "George Strait", + "position": 46, + "title": "Cowboys Like Us" + }, + { + "artist": "Mary J. Blige Featuring Eve", + "position": 47, + "title": "Not Today" + }, + { + "artist": "matchbox twenty", + "position": 48, + "title": "Unwell" + }, + { + "artist": "Joe", + "position": 49, + "title": "More & More" + }, + { + "artist": "Ashanti", + "position": 50, + "title": "Rain On Me" + }, + { + "artist": "Sarah McLachlan", + "position": 51, + "title": "Fallen" + }, + { + "artist": "Westside Connection Featuring Nate Dogg", + "position": 52, + "title": "Gangsta Nation" + }, + { + "artist": "Musiq", + "position": 53, + "title": "Forthenight" + }, + { + "artist": "Bow Wow Featuring Jagged Edge", + "position": 54, + "title": "My Baby" + }, + { + "artist": "Three Days Grace", + "position": 55, + "title": "(I Hate) Everything About You" + }, + { + "artist": "Chris Cagle", + "position": 56, + "title": "Chicks Dig It" + }, + { + "artist": "Mya", + "position": 57, + "title": "Fallen" + }, + { + "artist": "Eamon", + "position": 58, + "title": "F**k It (I Don't Want You Back)" + }, + { + "artist": "Rodney Atkins", + "position": 59, + "title": "Honesty (Write Me A List)" + }, + { + "artist": "Terri Clark", + "position": 60, + "title": "I Wanna Do It All" + }, + { + "artist": "Tim McGraw", + "position": 61, + "title": "Watch The Wind Blow By" + }, + { + "artist": "Shania Twain", + "position": 62, + "title": "She's Not Just A Pretty Face" + }, + { + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "position": 63, + "title": "Clubbin" + }, + { + "artist": "Montgomery Gentry", + "position": 64, + "title": "Hell Yeah" + }, + { + "artist": "Jessica Simpson", + "position": 65, + "title": "With You" + }, + { + "artist": "Tracy Byrd", + "position": 66, + "title": "Drinkin' Bone" + }, + { + "artist": "Keith Urban", + "position": 67, + "title": "Who Wouldn't Wanna Be Me" + }, + { + "artist": "Missy Elliott", + "position": 68, + "title": "Pass That Dutch" + }, + { + "artist": "Toby Keith", + "position": 69, + "title": "American Soldier" + }, + { + "artist": "Fountains Of Wayne", + "position": 70, + "title": "Stacy's Mom" + }, + { + "artist": "Cassidy Featuring R. Kelly", + "position": 71, + "title": "Hotel" + }, + { + "artist": "Brad Paisley", + "position": 72, + "title": "Little Moments" + }, + { + "artist": "Jet", + "position": 73, + "title": "Are You Gonna Be My Girl" + }, + { + "artist": "The Offspring", + "position": 74, + "title": "Hit That" + }, + { + "artist": "Lonestar", + "position": 75, + "title": "Walking In Memphis" + }, + { + "artist": "Puddle Of Mudd", + "position": 76, + "title": "Away From Me" + }, + { + "artist": "Pat Green", + "position": 77, + "title": "Wave On Wave" + }, + { + "artist": "Rascal Flatts", + "position": 78, + "title": "I Melt" + }, + { + "artist": "B2K Featuring Fabolous", + "position": 79, + "title": "Badaboom" + }, + { + "artist": "Trapt", + "position": 80, + "title": "Still Frame" + }, + { + "artist": "Britney Spears Featuring Madonna", + "position": 81, + "title": "Me Against The Music" + }, + { + "artist": "Marques Houston Featuring Jermaine \"JD\" Dupri", + "position": 82, + "title": "Pop That Booty" + }, + { + "artist": "Ginuwine", + "position": 83, + "title": "Love You More" + }, + { + "artist": "Monica", + "position": 84, + "title": "Knock Knock" + }, + { + "artist": "Live", + "position": 85, + "title": "Heaven" + }, + { + "artist": "Barenaked Ladies", + "position": 86, + "title": "Another Postcard (Chimps)" + }, + { + "artist": "Gary Allan", + "position": 87, + "title": "Tough Little Boys" + }, + { + "artist": "Audioslave", + "position": 88, + "title": "Show Me How To Live" + }, + { + "artist": "A Perfect Circle", + "position": 89, + "title": "Weak And Powerless" + }, + { + "artist": "John Mayer", + "position": 90, + "title": "Bigger Than My Body" + }, + { + "artist": "Josh Turner", + "position": 91, + "title": "Long Black Train" + }, + { + "artist": "Ryan Duarte", + "position": 92, + "title": "You" + }, + { + "artist": "Ja Rule", + "position": 93, + "title": "Clap Back" + }, + { + "artist": "Too Short Featuring Lil Jon & The East Side Boyz", + "position": 94, + "title": "Shake That Monkey" + }, + { + "artist": "Lasgo", + "position": 95, + "title": "Alone" + }, + { + "artist": "Trillville", + "position": 96, + "title": "Neva Eva" + }, + { + "artist": "Big Tymers Featuring R. Kelly", + "position": 97, + "title": "Gangsta Girl" + }, + { + "artist": "Scotty Emerick With Toby Keith", + "position": 98, + "title": "I Can't Take You Anywhere" + }, + { + "artist": "Hilary Duff", + "position": 99, + "title": "So Yesterday" + }, + { + "artist": "Michael Jackson", + "position": 100, + "title": "One More Chance" + } + ], + "title": "2003 - Hot 100" + }, + { + "songs": [ + { + "artist": "Erykah Badu Featuring Common", + "position": 1, + "title": "Love Of My Life (An Ode To Hip Hop)" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott", + "position": 2, + "title": "Work It" + }, + { + "artist": "B2K & P. Diddy", + "position": 3, + "title": "Bump, Bump, Bump" + }, + { + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "position": 4, + "title": "Air Force Ones" + }, + { + "artist": "Jay-Z Featuring Beyonce Knowles", + "position": 5, + "title": "'03 Bonnie & Clyde" + }, + { + "artist": "Musiq", + "position": 6, + "title": "dontchange" + }, + { + "artist": "Aaliyah", + "position": 7, + "title": "Miss You" + }, + { + "artist": "Eminem", + "position": 8, + "title": "Lose Yourself" + }, + { + "artist": "R. Kelly", + "position": 9, + "title": "Ignition" + }, + { + "artist": "Jaheim Featuring Tha Rayne", + "position": 10, + "title": "Fabulous" + }, + { + "artist": "Dru Hill", + "position": 11, + "title": "I Should Be..." + }, + { + "artist": "LL Cool J", + "position": 12, + "title": "Luv U Better" + }, + { + "artist": "Sean Paul", + "position": 13, + "title": "Gimme The Light" + }, + { + "artist": "2Pac", + "position": 14, + "title": "Thugz Mansion" + }, + { + "artist": "Nas", + "position": 15, + "title": "Made You Look" + }, + { + "artist": "Erick Sermon Featuring Redman", + "position": 16, + "title": "React" + }, + { + "artist": "Aaliyah", + "position": 17, + "title": "I Care 4 U" + }, + { + "artist": "Amerie", + "position": 18, + "title": "Talkin' To Me" + }, + { + "artist": "50 Cent", + "position": 19, + "title": "Wanksta" + }, + { + "artist": "LL Cool J Featuring Amerie", + "position": 20, + "title": "Paradise" + }, + { + "artist": "Clipse", + "position": 21, + "title": "When The Last Time" + }, + { + "artist": "Busta Rhymes Featuring Spliff Star", + "position": 22, + "title": "Make It Clap" + }, + { + "artist": "Ja Rule Featuring Bobby Brown", + "position": 23, + "title": "Thug Lovin'" + }, + { + "artist": "Eve", + "position": 24, + "title": "Satisfaction" + }, + { + "artist": "Baby Featuring P. Diddy", + "position": 25, + "title": "Do That..." + } + ], + "title": "2002 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Eminem", + "position": 1, + "title": "Lose Yourself" + }, + { + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "position": 2, + "title": "Jenny From The Block" + }, + { + "artist": "Christina Aguilera", + "position": 3, + "title": "Beautiful" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott", + "position": 4, + "title": "Work It" + }, + { + "artist": "No Doubt Featuring Lady Saw", + "position": 5, + "title": "Underneath It All" + }, + { + "artist": "Pink", + "position": 6, + "title": "Family Portrait" + }, + { + "artist": "Puddle Of Mudd", + "position": 7, + "title": "She Hates Me" + }, + { + "artist": "Nivea Featuring Brian & Brandon Casey", + "position": 8, + "title": "Don't Mess With My Man" + }, + { + "artist": "Santana Featuring Michelle Branch", + "position": 9, + "title": "The Game Of Love" + }, + { + "artist": "Avril Lavigne", + "position": 10, + "title": "I'm With You" + }, + { + "artist": "Kelly Rowland", + "position": 11, + "title": "Stole" + }, + { + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "position": 12, + "title": "Hey Ma" + }, + { + "artist": "Justin Timberlake", + "position": 13, + "title": "Cry Me A River" + }, + { + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "position": 14, + "title": "Air Force Ones" + }, + { + "artist": "Good Charlotte", + "position": 15, + "title": "Lifestyles Of The Rich And Famous" + }, + { + "artist": "O-Town", + "position": 16, + "title": "These Are The Days" + }, + { + "artist": "John Mayer", + "position": 17, + "title": "Your Body Is A Wonderland" + }, + { + "artist": "Justin Timberlake", + "position": 18, + "title": "Like I Love You" + }, + { + "artist": "Avril Lavigne", + "position": 19, + "title": "Sk8er Boi" + }, + { + "artist": "Creed", + "position": 20, + "title": "One Last Breath" + } + ], + "title": "2002 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "George Strait", + "position": 1, + "title": "She'll Leave You With A Smile" + }, + { + "artist": "Toby Keith", + "position": 2, + "title": "Who's Your Daddy?" + }, + { + "artist": "Rascal Flatts", + "position": 3, + "title": "These Days" + }, + { + "artist": "Mark Wills", + "position": 4, + "title": "19 Somethin'" + }, + { + "artist": "Emerson Drive", + "position": 5, + "title": "Fall Into Me" + }, + { + "artist": "Tim McGraw", + "position": 6, + "title": "Red Rag Top" + }, + { + "artist": "Kenny Chesney", + "position": 7, + "title": "A Lot Of Things Different" + }, + { + "artist": "Keith Urban", + "position": 8, + "title": "Somebody Like You" + }, + { + "artist": "Terri Clark", + "position": 9, + "title": "I Just Wanna Be Mad" + }, + { + "artist": "Blake Shelton", + "position": 10, + "title": "The Baby" + }, + { + "artist": "Dixie Chicks", + "position": 11, + "title": "Landslide" + }, + { + "artist": "Brad Paisley", + "position": 12, + "title": "I Wish You'd Stay" + }, + { + "artist": "Travis Tritt", + "position": 13, + "title": "Strong Enough To Be Your Man" + }, + { + "artist": "Brooks & Dunn", + "position": 14, + "title": "Every River" + }, + { + "artist": "Diamond Rio", + "position": 15, + "title": "Beautiful Mess" + }, + { + "artist": "Gary Allan", + "position": 16, + "title": "Man To Man" + }, + { + "artist": "Aaron Lines", + "position": 17, + "title": "You Can't Hide Beautiful" + }, + { + "artist": "Lonestar", + "position": 18, + "title": "Unusually Unusual" + }, + { + "artist": "John Michael Montgomery", + "position": 19, + "title": "'Til Nothing Comes Between Us" + }, + { + "artist": "Montgomery Gentry", + "position": 20, + "title": "My Town" + }, + { + "artist": "Trace Adkins", + "position": 21, + "title": "Chrome" + }, + { + "artist": "Trick Pony", + "position": 22, + "title": "On A Mission" + }, + { + "artist": "Kellie Coffey", + "position": 23, + "title": "At The End Of The Day" + }, + { + "artist": "Shania Twain", + "position": 24, + "title": "I'm Gonna Getcha Good!" + }, + { + "artist": "Jennifer Hanson", + "position": 25, + "title": "Beautiful Goodbye" + } + ], + "title": "2002 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Eminem", + "position": 1, + "title": "Lose Yourself" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott", + "position": 2, + "title": "Work It" + }, + { + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "position": 3, + "title": "Jenny From The Block" + }, + { + "artist": "Jay-Z Featuring Beyonce Knowles", + "position": 4, + "title": "'03 Bonnie & Clyde" + }, + { + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "position": 5, + "title": "Air Force Ones" + }, + { + "artist": "Christina Aguilera", + "position": 6, + "title": "Beautiful" + }, + { + "artist": "B2K & P. Diddy", + "position": 7, + "title": "Bump, Bump, Bump" + }, + { + "artist": "Nivea Featuring Brian & Brandon Casey", + "position": 8, + "title": "Don't Mess With My Man" + }, + { + "artist": "No Doubt Featuring Lady Saw", + "position": 9, + "title": "Underneath It All" + }, + { + "artist": "Santana Featuring Michelle Branch", + "position": 10, + "title": "The Game Of Love" + }, + { + "artist": "Erykah Badu Featuring Common", + "position": 11, + "title": "Love Of My Life (An Ode To Hip Hop)" + }, + { + "artist": "Sean Paul", + "position": 12, + "title": "Gimme The Light" + }, + { + "artist": "Puddle Of Mudd", + "position": 13, + "title": "She Hates Me" + }, + { + "artist": "Dixie Chicks", + "position": 14, + "title": "Landslide" + }, + { + "artist": "Aaliyah", + "position": 15, + "title": "Miss You" + }, + { + "artist": "Avril Lavigne", + "position": 16, + "title": "I'm With You" + }, + { + "artist": "LL Cool J", + "position": 17, + "title": "Luv U Better" + }, + { + "artist": "Musiq", + "position": 18, + "title": "dontchange" + }, + { + "artist": "2Pac", + "position": 19, + "title": "Thugz Mansion" + }, + { + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "position": 20, + "title": "Hey Ma" + }, + { + "artist": "Pink", + "position": 21, + "title": "Family Portrait" + }, + { + "artist": "John Mayer", + "position": 22, + "title": "Your Body Is A Wonderland" + }, + { + "artist": "George Strait", + "position": 23, + "title": "She'll Leave You With A Smile" + }, + { + "artist": "Creed", + "position": 24, + "title": "One Last Breath" + }, + { + "artist": "Jennifer Lopez Featuring LL Cool J", + "position": 25, + "title": "All I Have" + }, + { + "artist": "Nelly Featuring Kelly Rowland", + "position": 26, + "title": "Dilemma" + }, + { + "artist": "Clipse", + "position": 27, + "title": "When The Last Time" + }, + { + "artist": "Toby Keith", + "position": 28, + "title": "Who's Your Daddy?" + }, + { + "artist": "Justin Timberlake", + "position": 29, + "title": "Cry Me A River" + }, + { + "artist": "Rascal Flatts", + "position": 30, + "title": "These Days" + }, + { + "artist": "Mark Wills", + "position": 31, + "title": "19 Somethin'" + }, + { + "artist": "R. Kelly", + "position": 32, + "title": "Ignition" + }, + { + "artist": "matchbox twenty", + "position": 33, + "title": "Disease" + }, + { + "artist": "Kid Rock Featuring Sheryl Crow", + "position": 34, + "title": "Picture" + }, + { + "artist": "Madonna", + "position": 35, + "title": "Die Another Day" + }, + { + "artist": "Dru Hill", + "position": 36, + "title": "I Should Be..." + }, + { + "artist": "Jaheim Featuring Tha Rayne", + "position": 37, + "title": "Fabulous" + }, + { + "artist": "3 Doors Down", + "position": 38, + "title": "When I'm Gone" + }, + { + "artist": "Nas", + "position": 39, + "title": "Made You Look" + }, + { + "artist": "Kelly Rowland", + "position": 40, + "title": "Stole" + }, + { + "artist": "Avril Lavigne", + "position": 41, + "title": "Complicated" + }, + { + "artist": "Justin Timberlake", + "position": 42, + "title": "Like I Love You" + }, + { + "artist": "Baby Featuring P. Diddy", + "position": 43, + "title": "Do That..." + }, + { + "artist": "Emerson Drive", + "position": 44, + "title": "Fall Into Me" + }, + { + "artist": "Eve", + "position": 45, + "title": "Satisfaction" + }, + { + "artist": "Keith Urban", + "position": 46, + "title": "Somebody Like You" + }, + { + "artist": "Good Charlotte", + "position": 47, + "title": "Lifestyles Of The Rich And Famous" + }, + { + "artist": "Erick Sermon Featuring Redman", + "position": 48, + "title": "React" + }, + { + "artist": "50 Cent", + "position": 49, + "title": "Wanksta" + }, + { + "artist": "Foo Fighters", + "position": 50, + "title": "All My Life" + }, + { + "artist": "Amerie", + "position": 51, + "title": "Talkin' To Me" + }, + { + "artist": "Tim McGraw", + "position": 52, + "title": "Red Rag Top" + }, + { + "artist": "LL Cool J Featuring Amerie", + "position": 53, + "title": "Paradise" + }, + { + "artist": "Aaliyah", + "position": 54, + "title": "I Care 4 U" + }, + { + "artist": "Ja Rule Featuring Bobby Brown", + "position": 55, + "title": "Thug Lovin'" + }, + { + "artist": "Avril Lavigne", + "position": 56, + "title": "Sk8er Boi" + }, + { + "artist": "Blake Shelton", + "position": 57, + "title": "The Baby" + }, + { + "artist": "Nirvana", + "position": 58, + "title": "You Know You're Right" + }, + { + "artist": "Terri Clark", + "position": 59, + "title": "I Just Wanna Be Mad" + }, + { + "artist": "Kenny Chesney", + "position": 60, + "title": "A Lot Of Things Different" + }, + { + "artist": "Lasgo", + "position": 61, + "title": "Something" + }, + { + "artist": "Busta Rhymes Featuring Spliff Star", + "position": 62, + "title": "Make It Clap" + }, + { + "artist": "Saliva", + "position": 63, + "title": "Always" + }, + { + "artist": "Chevelle", + "position": 64, + "title": "The Red" + }, + { + "artist": "Norah Jones", + "position": 65, + "title": "Don't Know Why" + }, + { + "artist": "Christina Aguilera Featuring Redman", + "position": 66, + "title": "Dirrty" + }, + { + "artist": "Ja Rule Featuring Ashanti", + "position": 67, + "title": "Mesmerize" + }, + { + "artist": "Aaron Lines", + "position": 68, + "title": "You Can't Hide Beautiful" + }, + { + "artist": "Audioslave", + "position": 69, + "title": "Cochise" + }, + { + "artist": "O-Town", + "position": 70, + "title": "These Are The Days" + }, + { + "artist": "Lifehouse", + "position": 71, + "title": "Spin" + }, + { + "artist": "Seether", + "position": 72, + "title": "Fine Again" + }, + { + "artist": "Stone Sour", + "position": 73, + "title": "Bother" + }, + { + "artist": "Disturbed", + "position": 74, + "title": "Prayer" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ludacris", + "position": 75, + "title": "Gossip Folks" + }, + { + "artist": "Shania Twain", + "position": 76, + "title": "I'm Gonna Getcha Good!" + }, + { + "artist": "Kelly Clarkson", + "position": 77, + "title": "A Moment Like This" + }, + { + "artist": "Queens Of The Stone Age", + "position": 78, + "title": "No One Knows" + }, + { + "artist": "Field Mob", + "position": 79, + "title": "Sick Of Being Lonely" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 80, + "title": "The Zephyr Song" + }, + { + "artist": "Uncle Kracker", + "position": 81, + "title": "In A Little While" + }, + { + "artist": "TLC", + "position": 82, + "title": "Girl Talk" + }, + { + "artist": "Faith Hill", + "position": 83, + "title": "Cry" + }, + { + "artist": "Mariah Carey", + "position": 84, + "title": "Through The Rain" + }, + { + "artist": "Whitney Houston", + "position": 85, + "title": "One Of Those Days" + }, + { + "artist": "Snoop Dogg", + "position": 86, + "title": "From Tha Chuuuch To Da Palace" + }, + { + "artist": "Brooks & Dunn", + "position": 87, + "title": "Every River" + }, + { + "artist": "Our Lady Peace", + "position": 88, + "title": "Somewhere Out There" + }, + { + "artist": "Common Featuring Mary J. Blige", + "position": 89, + "title": "Come Close To Me" + }, + { + "artist": "System Of A Down", + "position": 90, + "title": "Aerials" + }, + { + "artist": "Isyss", + "position": 91, + "title": "Single For The Rest Of My Life" + }, + { + "artist": "Kylie Minogue", + "position": 92, + "title": "Come Into My World" + }, + { + "artist": "Benzino", + "position": 93, + "title": "Rock The Party" + }, + { + "artist": "Trick Daddy Featuring LaTocha Scott", + "position": 94, + "title": "Thug Holiday" + }, + { + "artist": "Toni Braxton Featuring Loon", + "position": 95, + "title": "Hit The Freeway" + }, + { + "artist": "Montgomery Gentry", + "position": 96, + "title": "My Town" + }, + { + "artist": "Alan Jackson", + "position": 97, + "title": "Work In Progress" + }, + { + "artist": "Telepopmusik", + "position": 98, + "title": "Breathe" + }, + { + "artist": "Michelle Branch", + "position": 99, + "title": "Goodbye To You" + }, + { + "artist": "Big Tymers Featuring Tateeze, Boo & Gotti", + "position": 100, + "title": "Oh Yeah!" + } + ], + "title": "2002 - Hot 100" + }, + { + "songs": [ + { + "artist": "Nickelback", + "position": 1, + "title": "How You Remind Me" + }, + { + "artist": "Pink", + "position": 2, + "title": "Get The Party Started" + }, + { + "artist": "Mary J. Blige", + "position": 3, + "title": "Family Affair" + }, + { + "artist": "Enrique Iglesias", + "position": 4, + "title": "Hero" + }, + { + "artist": "Usher", + "position": 5, + "title": "U Got It Bad" + }, + { + "artist": "Shakira", + "position": 6, + "title": "Whenever, Wherever" + }, + { + "artist": "Toya", + "position": 7, + "title": "I Do!!" + }, + { + "artist": "Ja Rule Featuring Case", + "position": 8, + "title": "Livin' It Up" + }, + { + "artist": "Nelly Furtado", + "position": 9, + "title": "Turn Off The Light" + }, + { + "artist": "The Calling", + "position": 10, + "title": "Wherever You Will Go" + }, + { + "artist": "Creed", + "position": 11, + "title": "My Sacrifice" + }, + { + "artist": "No Doubt Featuring Bounty Killer", + "position": 12, + "title": "Hey Baby" + }, + { + "artist": "Destiny's Child", + "position": 13, + "title": "Emotion" + }, + { + "artist": "Jennifer Lopez Featuring Ja Rule", + "position": 14, + "title": "I'm Real" + }, + { + "artist": "Five For Fighting", + "position": 15, + "title": "Superman (It's Not Easy)" + }, + { + "artist": "'N Sync", + "position": 16, + "title": "Gone" + }, + { + "artist": "Ginuwine", + "position": 17, + "title": "Differences" + }, + { + "artist": "Lenny Kravitz", + "position": 18, + "title": "Dig In" + }, + { + "artist": "Alicia Keys", + "position": 19, + "title": "Fallin'" + }, + { + "artist": "Nelly", + "position": 20, + "title": "#1" + } + ], + "title": "2001 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Alan Jackson", + "position": 1, + "title": "Where Were You (When The World Stopped Turning)" + }, + { + "artist": "Toby Keith", + "position": 2, + "title": "I Wanna Talk About Me" + }, + { + "artist": "George Strait", + "position": 3, + "title": "Run" + }, + { + "artist": "Aaron Tippin", + "position": 4, + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + { + "artist": "Steve Holy", + "position": 5, + "title": "Good Morning Beautiful" + }, + { + "artist": "Trace Adkins", + "position": 6, + "title": "I'm Tryin'" + }, + { + "artist": "David Ball", + "position": 7, + "title": "Riding With Private Malone" + }, + { + "artist": "Garth Brooks", + "position": 8, + "title": "Wrapped Up In You" + }, + { + "artist": "Brad Paisley", + "position": 9, + "title": "Wrapped Around" + }, + { + "artist": "Jo Dee Messina With Tim McGraw", + "position": 10, + "title": "Bring On The Rain" + }, + { + "artist": "Lonestar", + "position": 11, + "title": "With Me" + }, + { + "artist": "Brooks & Dunn", + "position": 12, + "title": "The Long Goodbye" + }, + { + "artist": "Joe Diffie", + "position": 13, + "title": "In Another World" + }, + { + "artist": "Brooks & Dunn", + "position": 14, + "title": "Only In America" + }, + { + "artist": "Tracy Byrd", + "position": 15, + "title": "Just Let Me Be In Love" + }, + { + "artist": "Tim McGraw", + "position": 16, + "title": "The Cowboy In Me" + }, + { + "artist": "Dixie Chicks", + "position": 17, + "title": "Some Days You Gotta Dance" + }, + { + "artist": "Travis Tritt", + "position": 18, + "title": "Love Of A Woman" + }, + { + "artist": "Martina McBride", + "position": 19, + "title": "Blessed" + }, + { + "artist": "Sara Evans", + "position": 20, + "title": "Saints & Angels" + }, + { + "artist": "Jamie O'Neal", + "position": 21, + "title": "Shiver" + }, + { + "artist": "Rascal Flatts", + "position": 22, + "title": "I'm Movin' On" + }, + { + "artist": "Chris Cagle", + "position": 23, + "title": "I Breathe In, I Breathe Out" + }, + { + "artist": "Blake Shelton", + "position": 24, + "title": "All Over Me" + }, + { + "artist": "Montgomery Gentry", + "position": 25, + "title": "Cold One Comin' On" + } + ], + "title": "2001 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Nickelback", + "position": 1, + "title": "How You Remind Me" + }, + { + "artist": "Usher", + "position": 2, + "title": "U Got It Bad" + }, + { + "artist": "Mary J. Blige", + "position": 3, + "title": "Family Affair" + }, + { + "artist": "Pink", + "position": 4, + "title": "Get The Party Started" + }, + { + "artist": "Enrique Iglesias", + "position": 5, + "title": "Hero" + }, + { + "artist": "Shakira", + "position": 6, + "title": "Whenever, Wherever" + }, + { + "artist": "Ja Rule Featuring Ashanti", + "position": 7, + "title": "Always On Time" + }, + { + "artist": "Ginuwine", + "position": 8, + "title": "Differences" + }, + { + "artist": "Creed", + "position": 9, + "title": "My Sacrifice" + }, + { + "artist": "Ja Rule Featuring Case", + "position": 10, + "title": "Livin' It Up" + }, + { + "artist": "Alicia Keys", + "position": 11, + "title": "A Woman's Worth" + }, + { + "artist": "Nelly Furtado", + "position": 12, + "title": "Turn Off The Light" + }, + { + "artist": "'N Sync", + "position": 13, + "title": "Gone" + }, + { + "artist": "Five For Fighting", + "position": 14, + "title": "Superman (It's Not Easy)" + }, + { + "artist": "The Calling", + "position": 15, + "title": "Wherever You Will Go" + }, + { + "artist": "Aaliyah", + "position": 16, + "title": "Rock The Boat" + }, + { + "artist": "Toya", + "position": 17, + "title": "I Do!!" + }, + { + "artist": "Jennifer Lopez Featuring Ja Rule", + "position": 18, + "title": "I'm Real" + }, + { + "artist": "Enya", + "position": 19, + "title": "Only Time" + }, + { + "artist": "Aaron Tippin", + "position": 20, + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + { + "artist": "Michael Jackson", + "position": 21, + "title": "Butterflies" + }, + { + "artist": "Fat Joe Featuring R. Kelly", + "position": 22, + "title": "We Thuggin'" + }, + { + "artist": "City High Featuring Eve", + "position": 23, + "title": "Caramel" + }, + { + "artist": "Alicia Keys", + "position": 24, + "title": "Fallin'" + }, + { + "artist": "Nelly", + "position": 25, + "title": "#1" + }, + { + "artist": "Linkin Park", + "position": 26, + "title": "In The End" + }, + { + "artist": "No Doubt Featuring Bounty Killer", + "position": 27, + "title": "Hey Baby" + }, + { + "artist": "Janet Featuring Missy Elliott, P. Diddy & Carly Simon", + "position": 28, + "title": "Son Of A Gun" + }, + { + "artist": "Destiny's Child", + "position": 29, + "title": "Emotion" + }, + { + "artist": "Alan Jackson", + "position": 30, + "title": "Where Were You (When The World Stopped Turning)" + }, + { + "artist": "Staind", + "position": 31, + "title": "It's Been Awhile" + }, + { + "artist": "Lenny Kravitz", + "position": 32, + "title": "Dig In" + }, + { + "artist": "Toby Keith", + "position": 33, + "title": "I Wanna Talk About Me" + }, + { + "artist": "Ludacris", + "position": 34, + "title": "Roll Out (My Business)" + }, + { + "artist": "Craig David", + "position": 35, + "title": "7 Days" + }, + { + "artist": "Jewel", + "position": 36, + "title": "Standing Still" + }, + { + "artist": "George Strait", + "position": 37, + "title": "Run" + }, + { + "artist": "Mr. Cheeks", + "position": 38, + "title": "Lights, Camera, Action!" + }, + { + "artist": "Steve Holy", + "position": 39, + "title": "Good Morning Beautiful" + }, + { + "artist": "Lifehouse", + "position": 40, + "title": "Hanging By A Moment" + }, + { + "artist": "Busta Rhymes", + "position": 41, + "title": "Break Ya Neck" + }, + { + "artist": "Train", + "position": 42, + "title": "Drops Of Jupiter (Tell Me)" + }, + { + "artist": "David Ball", + "position": 43, + "title": "Riding With Private Malone" + }, + { + "artist": "Trace Adkins", + "position": 44, + "title": "I'm Tryin'" + }, + { + "artist": "P.O.D.", + "position": 45, + "title": "Alive" + }, + { + "artist": "Garth Brooks", + "position": 46, + "title": "Wrapped Up In You" + }, + { + "artist": "Mystikal", + "position": 47, + "title": "Bouncin' Back (Bumpin' Me Against The Wall)" + }, + { + "artist": "Brad Paisley", + "position": 48, + "title": "Wrapped Around" + }, + { + "artist": "Faith Evans", + "position": 49, + "title": "You Gets No Love" + }, + { + "artist": "Petey Pablo", + "position": 50, + "title": "Raise Up" + }, + { + "artist": "OutKast Featuring Killer Mike", + "position": 51, + "title": "The Whole World" + }, + { + "artist": "Jay-Z", + "position": 52, + "title": "Girls, Girls, Girls" + }, + { + "artist": "Mary J. Blige", + "position": 53, + "title": "No More Drama" + }, + { + "artist": "Puddle Of Mudd", + "position": 54, + "title": "Blurry" + }, + { + "artist": "Maxwell", + "position": 55, + "title": "Lifetime" + }, + { + "artist": "Jo Dee Messina With Tim McGraw", + "position": 56, + "title": "Bring On The Rain" + }, + { + "artist": "LeAnn Rimes", + "position": 57, + "title": "Can't Fight The Moonlight" + }, + { + "artist": "Michelle Branch", + "position": 58, + "title": "Everywhere" + }, + { + "artist": "R. Kelly", + "position": 59, + "title": "The World's Greatest" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ginuwine & Tweet", + "position": 60, + "title": "Take Away" + }, + { + "artist": "Angie Stone", + "position": 61, + "title": "Brotha" + }, + { + "artist": "Fabolous", + "position": 62, + "title": "Young'n (Holla Back)" + }, + { + "artist": "Master P Featuring Weebie", + "position": 63, + "title": "Ooohhhwee" + }, + { + "artist": "Britney Spears", + "position": 64, + "title": "I'm A Slave 4 U" + }, + { + "artist": "Jagged Edge", + "position": 65, + "title": "Goodbye" + }, + { + "artist": "Brooks & Dunn", + "position": 66, + "title": "The Long Goodbye" + }, + { + "artist": "Travis Tritt", + "position": 67, + "title": "Love Of A Woman" + }, + { + "artist": "Joe", + "position": 68, + "title": "Let's Stay Home Tonight" + }, + { + "artist": "Incubus", + "position": 69, + "title": "Wish You Were Here" + }, + { + "artist": "Jermaine Dupri & Ludacris", + "position": 70, + "title": "Welcome To Atlanta" + }, + { + "artist": "Lonestar", + "position": 71, + "title": "With Me" + }, + { + "artist": "112", + "position": 72, + "title": "Dance With Me" + }, + { + "artist": "Lee Greenwood", + "position": 73, + "title": "God Bless The USA" + }, + { + "artist": "Jennifer Lopez Featuring Ja Rule", + "position": 74, + "title": "Ain't It Funny" + }, + { + "artist": "Juvenile", + "position": 75, + "title": "From Her Mama (Mama Got A**)" + }, + { + "artist": "Staind", + "position": 76, + "title": "Fade" + }, + { + "artist": "Glenn Lewis", + "position": 77, + "title": "Don't You Forget It" + }, + { + "artist": "U2", + "position": 78, + "title": "Stuck In A Moment You Can't Get Out Of" + }, + { + "artist": "Alien Ant Farm", + "position": 79, + "title": "Smooth Criminal" + }, + { + "artist": "Backstreet Boys", + "position": 80, + "title": "Drowning" + }, + { + "artist": "Mariah Carey", + "position": 81, + "title": "Never Too Far/Hero (Medley)" + }, + { + "artist": "Christina Milian", + "position": 82, + "title": "AM To PM" + }, + { + "artist": "Alan Jackson", + "position": 83, + "title": "Where I Come From" + }, + { + "artist": "Brian McKnight", + "position": 84, + "title": "Love Of My Life" + }, + { + "artist": "Method Man & Redman", + "position": 85, + "title": "Part II" + }, + { + "artist": "Puddle Of Mudd", + "position": 86, + "title": "Control" + }, + { + "artist": "Tim McGraw", + "position": 87, + "title": "Angry All The Time" + }, + { + "artist": "Bubba Sparxxx", + "position": 88, + "title": "Ugly" + }, + { + "artist": "Whitney Houston", + "position": 89, + "title": "The Star Spangled Banner" + }, + { + "artist": "Michael Jackson", + "position": 90, + "title": "You Rock My World" + }, + { + "artist": "Ludacris, LL Cool J & Keith Murray", + "position": 91, + "title": "Fatty Girl" + }, + { + "artist": "R. Kelly", + "position": 92, + "title": "Feelin' On Yo Booty" + }, + { + "artist": "Nas", + "position": 93, + "title": "Got Ur Self A..." + }, + { + "artist": "Tyrese", + "position": 94, + "title": "What Am I Gonna Do" + }, + { + "artist": "Reba", + "position": 95, + "title": "I'm A Survivor" + }, + { + "artist": "R.L., Snoop Dogg & Lil' Kim", + "position": 96, + "title": "Do U Wanna Roll (Dolittle Theme)" + }, + { + "artist": "Babyface", + "position": 97, + "title": "What If" + }, + { + "artist": "Jonell & Method Man", + "position": 98, + "title": "Round & Round" + }, + { + "artist": "Daniel Rodriguez", + "position": 99, + "title": "God Bless America" + }, + { + "artist": "DMX", + "position": 100, + "title": "Who We Be" + } + ], + "title": "2001 - Hot 100" + }, + { + "songs": [ + { + "artist": "Destiny's Child", + "position": 1, + "title": "Independent Women Part I" + }, + { + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "position": 2, + "title": "It Wasn't Me" + }, + { + "artist": "Mya", + "position": 3, + "title": "Case Of The Ex (Whatcha Gonna Do)" + }, + { + "artist": "Creed", + "position": 4, + "title": "With Arms Wide Open" + }, + { + "artist": "matchbox twenty", + "position": 5, + "title": "If You're Gone" + }, + { + "artist": "Dream", + "position": 6, + "title": "He Loves U Not" + }, + { + "artist": "Samantha Mumba", + "position": 7, + "title": "Gotta Tell You" + }, + { + "artist": "Debelah Morgan", + "position": 8, + "title": "Dance With Me" + }, + { + "artist": "3 Doors Down", + "position": 9, + "title": "Kryptonite" + }, + { + "artist": "Pink", + "position": 10, + "title": "Most Girls" + }, + { + "artist": "'N Sync", + "position": 11, + "title": "This I Promise You" + }, + { + "artist": "Lenny Kravitz", + "position": 12, + "title": "Again" + }, + { + "artist": "Jennifer Lopez", + "position": 13, + "title": "Love Don't Cost A Thing" + }, + { + "artist": "Evan And Jaron", + "position": 14, + "title": "Crazy For This Girl" + }, + { + "artist": "Kandi", + "position": 15, + "title": "Don't Think I'm Not" + }, + { + "artist": "Madonna", + "position": 16, + "title": "Don't Tell Me" + }, + { + "artist": "Britney Spears", + "position": 17, + "title": "Stronger" + }, + { + "artist": "SoulDecision Featuring Thrust", + "position": 18, + "title": "Faded" + }, + { + "artist": "Backstreet Boys", + "position": 19, + "title": "Shape Of My Heart" + }, + { + "artist": "Faith Hill", + "position": 20, + "title": "The Way You Love Me" + } + ], + "title": "2000 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Tim McGraw", + "position": 1, + "title": "My Next Thirty Years" + }, + { + "artist": "Dixie Chicks", + "position": 2, + "title": "Without You" + }, + { + "artist": "Sara Evans", + "position": 3, + "title": "Born To Fly" + }, + { + "artist": "Kenny Chesney", + "position": 4, + "title": "I Lost It" + }, + { + "artist": "Brad Paisley", + "position": 5, + "title": "We Danced" + }, + { + "artist": "Alan Jackson", + "position": 6, + "title": "www.memory" + }, + { + "artist": "Lonestar", + "position": 7, + "title": "Tell Her" + }, + { + "artist": "Phil Vassar", + "position": 8, + "title": "Just Another Day In Paradise" + }, + { + "artist": "Jo Dee Messina", + "position": 9, + "title": "Burn" + }, + { + "artist": "Travis Tritt", + "position": 10, + "title": "Best Of Intentions" + }, + { + "artist": "Lee Ann Womack", + "position": 11, + "title": "Ashes By Now" + }, + { + "artist": "Jamie O'Neal", + "position": 12, + "title": "There Is No Arizona" + }, + { + "artist": "Rascal Flatts", + "position": 13, + "title": "This Everyday Love" + }, + { + "artist": "John Michael Montgomery", + "position": 14, + "title": "The Little Girl" + }, + { + "artist": "Terri Clark", + "position": 15, + "title": "A Little Gasoline" + }, + { + "artist": "Keith Urban", + "position": 16, + "title": "But For The Grace Of God" + }, + { + "artist": "Garth Brooks", + "position": 17, + "title": "Wild Horses" + }, + { + "artist": "Toby Keith", + "position": 18, + "title": "You Shouldn't Kiss Me Like This" + }, + { + "artist": "The Clark Family Experience", + "position": 19, + "title": "Meanwhile Back At The Ranch" + }, + { + "artist": "Darryl Worley", + "position": 20, + "title": "A Good Day To Run" + }, + { + "artist": "Alabama", + "position": 21, + "title": "When It All Goes South" + }, + { + "artist": "Chris Cagle", + "position": 22, + "title": "My Love Goes On And On" + }, + { + "artist": "Andy Griggs", + "position": 23, + "title": "You Made Me That Way" + }, + { + "artist": "Aaron Tippin", + "position": 24, + "title": "Kiss This" + }, + { + "artist": "SheDaisy", + "position": 25, + "title": "Lucky 4 You (Tonight I'm Just Me)" + } + ], + "title": "2000 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Destiny's Child", + "position": 1, + "title": "Independent Women Part I" + }, + { + "artist": "Dream", + "position": 2, + "title": "He Loves U Not" + }, + { + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "position": 3, + "title": "It Wasn't Me" + }, + { + "artist": "Mya", + "position": 4, + "title": "Case Of The Ex (Whatcha Gonna Do)" + }, + { + "artist": "Creed", + "position": 5, + "title": "With Arms Wide Open" + }, + { + "artist": "OutKast", + "position": 6, + "title": "Ms. Jackson" + }, + { + "artist": "Faith Hill", + "position": 7, + "title": "The Way You Love Me" + }, + { + "artist": "matchbox twenty", + "position": 8, + "title": "If You're Gone" + }, + { + "artist": "3 Doors Down", + "position": 9, + "title": "Kryptonite" + }, + { + "artist": "Debelah Morgan", + "position": 10, + "title": "Dance With Me" + }, + { + "artist": "Jay-Z", + "position": 11, + "title": "I Just Wanna Love U (Give It 2 Me)" + }, + { + "artist": "'N Sync", + "position": 12, + "title": "This I Promise You" + }, + { + "artist": "Samantha Mumba", + "position": 13, + "title": "Gotta Tell You" + }, + { + "artist": "Pink", + "position": 14, + "title": "Most Girls" + }, + { + "artist": "R. Kelly", + "position": 15, + "title": "I Wish" + }, + { + "artist": "Lenny Kravitz", + "position": 16, + "title": "Again" + }, + { + "artist": "O-Town", + "position": 17, + "title": "Liquid Dreams" + }, + { + "artist": "Nelly", + "position": 18, + "title": "E.I." + }, + { + "artist": "Backstreet Boys", + "position": 19, + "title": "Shape Of My Heart" + }, + { + "artist": "Jennifer Lopez", + "position": 20, + "title": "Love Don't Cost A Thing" + }, + { + "artist": "Ja Rule Featuring Christina Milian", + "position": 21, + "title": "Between Me And You" + }, + { + "artist": "Barenaked Ladies", + "position": 22, + "title": "Pinch Me" + }, + { + "artist": "Evan And Jaron", + "position": 23, + "title": "Crazy For This Girl" + }, + { + "artist": "Ludacris Featuring Shawna", + "position": 24, + "title": "What's Your Fantasy" + }, + { + "artist": "U2", + "position": 25, + "title": "Beautiful Day" + }, + { + "artist": "Avant Featuring Ketara Wyatt", + "position": 26, + "title": "My First Love" + }, + { + "artist": "Madonna", + "position": 27, + "title": "Music" + }, + { + "artist": "Tim McGraw", + "position": 28, + "title": "My Next Thirty Years" + }, + { + "artist": "Britney Spears", + "position": 29, + "title": "Stronger" + }, + { + "artist": "Madonna", + "position": 30, + "title": "Don't Tell Me" + }, + { + "artist": "Musiq", + "position": 31, + "title": "Just Friends (Sunny)" + }, + { + "artist": "Mystikal Featuring Nivea", + "position": 32, + "title": "Danger (Been So Long)" + }, + { + "artist": "Dixie Chicks", + "position": 33, + "title": "Without You" + }, + { + "artist": "Sara Evans", + "position": 34, + "title": "Born To Fly" + }, + { + "artist": "Fuel", + "position": 35, + "title": "Hemorrhage (In My Hands)" + }, + { + "artist": "Kenny Chesney", + "position": 36, + "title": "I Lost It" + }, + { + "artist": "matchbox twenty", + "position": 37, + "title": "Bent" + }, + { + "artist": "K-Ci & JoJo", + "position": 38, + "title": "Crazy" + }, + { + "artist": "Mikaila", + "position": 39, + "title": "So In Love With Two" + }, + { + "artist": "Kandi", + "position": 40, + "title": "Don't Think I'm Not" + }, + { + "artist": "Lil Bow Wow", + "position": 41, + "title": "Bow Wow (That's My Name)" + }, + { + "artist": "Brad Paisley", + "position": 42, + "title": "We Danced" + }, + { + "artist": "Ricky Martin", + "position": 43, + "title": "She Bangs" + }, + { + "artist": "98 Degrees", + "position": 44, + "title": "My Everything" + }, + { + "artist": "Travis Tritt", + "position": 45, + "title": "Best Of Intentions" + }, + { + "artist": "Vertical Horizon", + "position": 46, + "title": "You're A God" + }, + { + "artist": "Carl Thomas", + "position": 47, + "title": "Emotional" + }, + { + "artist": "3LW", + "position": 48, + "title": "No More (Baby I'ma Do Right)" + }, + { + "artist": "Alan Jackson", + "position": 49, + "title": "www.memory" + }, + { + "artist": "Lonestar", + "position": 50, + "title": "Tell Her" + }, + { + "artist": "Phil Vassar", + "position": 51, + "title": "Just Another Day In Paradise" + }, + { + "artist": "Public Announcement", + "position": 52, + "title": "Mamacita" + }, + { + "artist": "Wyclef Jean Featuring Mary J. Blige", + "position": 53, + "title": "911" + }, + { + "artist": "Dave Hollister", + "position": 54, + "title": "One Woman Man" + }, + { + "artist": "Eminem Featuring Dido", + "position": 55, + "title": "Stan" + }, + { + "artist": "Lee Ann Womack", + "position": 56, + "title": "Ashes By Now" + }, + { + "artist": "Vitamin C", + "position": 57, + "title": "The Itch" + }, + { + "artist": "Jo Dee Messina", + "position": 58, + "title": "Burn" + }, + { + "artist": "Moby Featuring Gwen Stefani", + "position": 59, + "title": "South Side" + }, + { + "artist": "Cash Money Millionaires", + "position": 60, + "title": "Project Chick" + }, + { + "artist": "3 Doors Down", + "position": 61, + "title": "Loser" + }, + { + "artist": "John Michael Montgomery", + "position": 62, + "title": "The Little Girl" + }, + { + "artist": "David Gray", + "position": 63, + "title": "Babylon" + }, + { + "artist": "Jagged Edge", + "position": 64, + "title": "Promise" + }, + { + "artist": "112", + "position": 65, + "title": "It's Over Now" + }, + { + "artist": "Erykah Badu", + "position": 66, + "title": "Bag Lady" + }, + { + "artist": "Jamie O'Neal", + "position": 67, + "title": "There Is No Arizona" + }, + { + "artist": "NewSong", + "position": 68, + "title": "The Christmas Shoes" + }, + { + "artist": "BBMak", + "position": 69, + "title": "Still On Your Side" + }, + { + "artist": "Garth Brooks", + "position": 70, + "title": "Wild Horses" + }, + { + "artist": "Memphis Bleek Featuring Jay-Z & Missy Elliott", + "position": 71, + "title": "Is That Your Chick" + }, + { + "artist": "Keith Urban", + "position": 72, + "title": "But For The Grace Of God" + }, + { + "artist": "Limp Bizkit", + "position": 73, + "title": "Rollin'" + }, + { + "artist": "Kelly Price", + "position": 74, + "title": "You Should've Told Me" + }, + { + "artist": "Profyle", + "position": 75, + "title": "Liar" + }, + { + "artist": "Rascal Flatts", + "position": 76, + "title": "This Everyday Love" + }, + { + "artist": "Toby Keith", + "position": 77, + "title": "You Shouldn't Kiss Me Like This" + }, + { + "artist": "The Offspring", + "position": 78, + "title": "Original Prankster" + }, + { + "artist": "Yolanda Adams", + "position": 79, + "title": "Open My Heart" + }, + { + "artist": "Xzibit", + "position": 80, + "title": "X" + }, + { + "artist": "Shaggy Featuring Rayvon", + "position": 81, + "title": "Angel" + }, + { + "artist": "The Clark Family Experience", + "position": 82, + "title": "Meanwhile Back At The Ranch" + }, + { + "artist": "Billy Gilman", + "position": 83, + "title": "Oklahoma" + }, + { + "artist": "Beenie Man Featuring Mya", + "position": 84, + "title": "Girls Dem Sugar" + }, + { + "artist": "Ja Rule Featuring Lil' Mo And Vita", + "position": 85, + "title": "Put It On Me" + }, + { + "artist": "LeAnn Rimes", + "position": 86, + "title": "Can't Fight The Moonlight" + }, + { + "artist": "Jaheim", + "position": 87, + "title": "Could It Be" + }, + { + "artist": "Terri Clark", + "position": 88, + "title": "A Little Gasoline" + }, + { + "artist": "Lil' Kim Featuring Sisqo", + "position": 89, + "title": "How Many Licks?" + }, + { + "artist": "Boyz II Men", + "position": 90, + "title": "Thank You In Advance" + }, + { + "artist": "Chris Cagle", + "position": 91, + "title": "My Love Goes On And On" + }, + { + "artist": "Mos Def & Pharoahe Monch Featuring Nate Dogg", + "position": 92, + "title": "Oh No" + }, + { + "artist": "Marc Anthony", + "position": 93, + "title": "My Baby You" + }, + { + "artist": "98 Degrees", + "position": 94, + "title": "Give Me Just One Night (Una Noche)" + }, + { + "artist": "George Strait", + "position": 95, + "title": "Go On" + }, + { + "artist": "De La Soul Featuring Chaka Khan", + "position": 96, + "title": "All Good?" + }, + { + "artist": "Aaron Tippin", + "position": 97, + "title": "Kiss This" + }, + { + "artist": "Sunday", + "position": 98, + "title": "I Know" + }, + { + "artist": "Vince Gill", + "position": 99, + "title": "Feels Like Love" + }, + { + "artist": "Nine Days", + "position": 100, + "title": "If I Am" + } + ], + "title": "2000 - Hot 100" + }, + { + "songs": [ + { + "artist": "Faith Hill", + "position": 1, + "title": "Breathe" + }, + { + "artist": "Brad Paisley", + "position": 2, + "title": "He Didn't Have To Be" + }, + { + "artist": "Clint Black", + "position": 3, + "title": "When I Said I Do" + }, + { + "artist": "Reba", + "position": 4, + "title": "What Do You Say" + }, + { + "artist": "Dixie Chicks", + "position": 5, + "title": "Cowboy Take Me Away" + }, + { + "artist": "Alan Jackson", + "position": 6, + "title": "Pop A Top" + }, + { + "artist": "Tim McGraw", + "position": 7, + "title": "My Best Friend" + }, + { + "artist": "Yankee Grey", + "position": 8, + "title": "All Things Considered" + }, + { + "artist": "LeAnn Rimes", + "position": 9, + "title": "Big Deal" + }, + { + "artist": "John Michael Montgomery", + "position": 10, + "title": "Home To You" + }, + { + "artist": "Martina McBride", + "position": 11, + "title": "I Love You" + }, + { + "artist": "Tim McGraw", + "position": 12, + "title": "Something Like That" + }, + { + "artist": "Kenny Chesney", + "position": 13, + "title": "She Thinks My Tractor's Sexy" + }, + { + "artist": "Lonestar", + "position": 14, + "title": "Smile" + }, + { + "artist": "Shania Twain", + "position": 15, + "title": "Come On Over" + }, + { + "artist": "Clay Walker", + "position": 16, + "title": "Live, Laugh, Love" + }, + { + "artist": "Tracy Byrd", + "position": 17, + "title": "Put Your Hand In Mine" + }, + { + "artist": "Gary Allan", + "position": 18, + "title": "Smoke Rings In The Dark" + }, + { + "artist": "Ty Herndon", + "position": 19, + "title": "Steam" + }, + { + "artist": "Mark Wills", + "position": 20, + "title": "Back At One" + }, + { + "artist": "Brooks & Dunn", + "position": 21, + "title": "Beer Thirty" + }, + { + "artist": "George Strait", + "position": 22, + "title": "What Do You Say To That" + }, + { + "artist": "Lonestar", + "position": 23, + "title": "Amazed" + }, + { + "artist": "Joe Diffie", + "position": 24, + "title": "The Quittin' Kind" + }, + { + "artist": "Jo Dee Messina", + "position": 25, + "title": "Because You Love Me" + } + ], + "title": "1999 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Santana Featuring Rob Thomas", + "position": 1, + "title": "Smooth" + }, + { + "artist": "Brian McKnight", + "position": 2, + "title": "Back At One" + }, + { + "artist": "Jessica Simpson", + "position": 3, + "title": "I Wanna Love You Forever" + }, + { + "artist": "Savage Garden", + "position": 4, + "title": "I Knew I Loved You" + }, + { + "artist": "Whitney Houston", + "position": 5, + "title": "My Love Is Your Love" + }, + { + "artist": "Marc Anthony", + "position": 6, + "title": "I Need To Know" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring NAS, EVE & Q-Tip", + "position": 7, + "title": "Hot Boyz" + }, + { + "artist": "Donell Jones", + "position": 8, + "title": "U Know What's Up" + }, + { + "artist": "Blaque", + "position": 9, + "title": "Bring It All To Me" + }, + { + "artist": "Kevon Edmonds", + "position": 10, + "title": "24/7" + }, + { + "artist": "LFO", + "position": 11, + "title": "Girl On TV" + }, + { + "artist": "Jennifer Lopez", + "position": 12, + "title": "Waiting For Tonight" + }, + { + "artist": "Christina Aguilera", + "position": 13, + "title": "What A Girl Wants" + }, + { + "artist": "Smash Mouth", + "position": 14, + "title": "Then The Morning Comes" + }, + { + "artist": "Len", + "position": 15, + "title": "Steal My Sunshine" + }, + { + "artist": "Eiffel 65", + "position": 16, + "title": "Blue (Da Ba Dee)" + }, + { + "artist": "Jagged Edge", + "position": 17, + "title": "He Can't Love U" + }, + { + "artist": "Lou Bega", + "position": 18, + "title": "Mambo No. 5 (A Little Bit Of...)" + }, + { + "artist": "702", + "position": 19, + "title": "Where My Girls At?" + }, + { + "artist": "TLC", + "position": 20, + "title": "Unpretty" + }, + { + "artist": "Train", + "position": 21, + "title": "Meet Virginia" + }, + { + "artist": "Foo Fighters", + "position": 22, + "title": "Learn To Fly" + }, + { + "artist": "Sole Featuring JT Money & Kandi", + "position": 23, + "title": "4, 5, 6" + }, + { + "artist": "Montell Jordan", + "position": 24, + "title": "Get It On Tonite" + }, + { + "artist": "Juvenile Featuring Mannie Fresh & Lil' Wayne", + "position": 25, + "title": "Back That Thang Up" + }, + { + "artist": "LeAnn Rimes", + "position": 26, + "title": "Big Deal" + }, + { + "artist": "Ideal", + "position": 27, + "title": "Get Gone" + }, + { + "artist": "Faith Hill", + "position": 28, + "title": "Breathe" + }, + { + "artist": "Guy", + "position": 29, + "title": "Dancin'" + }, + { + "artist": "Celine Dion", + "position": 30, + "title": "That's The Way It Is" + }, + { + "artist": "Brad Paisley", + "position": 31, + "title": "He Didn't Have To Be" + }, + { + "artist": "Puff Daddy Featuring R. Kelly", + "position": 32, + "title": "Satisfy You" + }, + { + "artist": "Ol' Dirty Bastard Featuring Kelis", + "position": 33, + "title": "Got Your Money" + }, + { + "artist": "Sugar Ray", + "position": 34, + "title": "Someday" + }, + { + "artist": "Counting Crows", + "position": 35, + "title": "Hanginaround" + }, + { + "artist": "IMx", + "position": 36, + "title": "Stay The Night" + }, + { + "artist": "Goo Goo Dolls", + "position": 37, + "title": "Black Balloon" + }, + { + "artist": "Filter", + "position": 38, + "title": "Take A Picture" + }, + { + "artist": "Ricky Martin", + "position": 39, + "title": "Shake Your Bon-Bon" + }, + { + "artist": "Mint Condition", + "position": 40, + "title": "If You Love Me" + }, + { + "artist": "Clint Black", + "position": 41, + "title": "When I Said I Do" + }, + { + "artist": "Ice Cube Featuring Mack 10 & Ms. Toi", + "position": 42, + "title": "You Can Do It" + }, + { + "artist": "Marc Nelson", + "position": 43, + "title": "15 Minutes" + }, + { + "artist": "M2M", + "position": 44, + "title": "Don't Say You Love Me" + }, + { + "artist": "Lonestar", + "position": 45, + "title": "Amazed" + }, + { + "artist": "Reba", + "position": 46, + "title": "What Do You Say" + }, + { + "artist": "Christina Aguilera", + "position": 47, + "title": "The Christmas Song (Chestnuts Roasting On An Open Fire)" + }, + { + "artist": "Sisqo Featuring Make It Hot", + "position": 48, + "title": "Got To Get It" + }, + { + "artist": "Tal Bachman", + "position": 49, + "title": "She's So High" + }, + { + "artist": "Mariah Carey Featuring Joe & 98 Degrees", + "position": 50, + "title": "Thank God I Found You" + }, + { + "artist": "Mariah Carey Featuring Jay-Z", + "position": 51, + "title": "Heartbreaker" + }, + { + "artist": "Dixie Chicks", + "position": 52, + "title": "Cowboy Take Me Away" + }, + { + "artist": "Britney Spears", + "position": 53, + "title": "(You Drive Me) Crazy" + }, + { + "artist": "Tim McGraw", + "position": 54, + "title": "My Best Friend" + }, + { + "artist": "Alan Jackson", + "position": 55, + "title": "Pop A Top" + }, + { + "artist": "Robbie Williams", + "position": 56, + "title": "Angels" + }, + { + "artist": "Yankee Grey", + "position": 57, + "title": "All Things Considered" + }, + { + "artist": "Will Smith Featuring K-Ci", + "position": 58, + "title": "Will 2K" + }, + { + "artist": "Blink-182", + "position": 59, + "title": "All The Small Things" + }, + { + "artist": "Martina McBride", + "position": 60, + "title": "I Love You" + }, + { + "artist": "Creed", + "position": 61, + "title": "Higher" + }, + { + "artist": "B.G. Featuring Baby, Turk, Mannie Fresh, Juvenile & Lil' Wayne", + "position": 62, + "title": "Bling Bling" + }, + { + "artist": "Kelis", + "position": 63, + "title": "Caught Out There" + }, + { + "artist": "Mary J. Blige", + "position": 64, + "title": "Deep Inside" + }, + { + "artist": "Tim McGraw", + "position": 65, + "title": "Something Like That" + }, + { + "artist": "Eve", + "position": 66, + "title": "Gotta Man" + }, + { + "artist": "Enrique Iglesias", + "position": 67, + "title": "Rhythm Divine" + }, + { + "artist": "John Michael Montgomery", + "position": 68, + "title": "Home To You" + }, + { + "artist": "Amber", + "position": 69, + "title": "Sexual (Li Da Di)" + }, + { + "artist": "Backstreet Boys", + "position": 70, + "title": "Larger Than Life" + }, + { + "artist": "Ginuwine", + "position": 71, + "title": "None Of Ur Friends Business" + }, + { + "artist": "Destiny's Child", + "position": 72, + "title": "Bug A Boo" + }, + { + "artist": "Bush", + "position": 73, + "title": "The Chemicals Between Us" + }, + { + "artist": "Kenny Chesney", + "position": 74, + "title": "She Thinks My Tractor's Sexy" + }, + { + "artist": "D'Angelo Featuring Method Man And Redman", + "position": 75, + "title": "Left & Right" + }, + { + "artist": "Sixpence None The Richer", + "position": 76, + "title": "There She Goes" + }, + { + "artist": "Deborah Cox With R.L.", + "position": 77, + "title": "We Can't Be Friends" + }, + { + "artist": "Limp Bizkit Featuring Method Man", + "position": 78, + "title": "N 2 Gether Now" + }, + { + "artist": "R.E.M.", + "position": 79, + "title": "The Great Beyond" + }, + { + "artist": "Lonestar", + "position": 80, + "title": "Smile" + }, + { + "artist": "Shania Twain", + "position": 81, + "title": "Come On Over" + }, + { + "artist": "Fatboy Slim", + "position": 82, + "title": "The Rockafeller Skank" + }, + { + "artist": "Destiny's Child", + "position": 83, + "title": "Say My Name" + }, + { + "artist": "Lil' Wayne Featuring Juvenile & B.G.", + "position": 84, + "title": "Tha Block Is Hot" + }, + { + "artist": "'N Sync & Gloria Estefan", + "position": 85, + "title": "Music Of My Heart" + }, + { + "artist": "Angie Stone", + "position": 86, + "title": "No More Rain (In This Cloud)" + }, + { + "artist": "Rage Against The Machine", + "position": 87, + "title": "Guerrilla Radio" + }, + { + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Lil' Kim", + "position": 88, + "title": "Notorious B.I.G." + }, + { + "artist": "Kenny G", + "position": 89, + "title": "Auld Lang Syne" + }, + { + "artist": "Chico DeBarge", + "position": 90, + "title": "Give You What You Want (Fa Sure)" + }, + { + "artist": "Ty Herndon", + "position": 91, + "title": "Steam" + }, + { + "artist": "Prince", + "position": 92, + "title": "The Greatest Romance Ever Sold" + }, + { + "artist": "Warren G Featuring Mack 10", + "position": 93, + "title": "I Want It All" + }, + { + "artist": "Clay Walker", + "position": 94, + "title": "Live, Laugh, Love" + }, + { + "artist": "Limp Bizkit", + "position": 95, + "title": "Re-arranged" + }, + { + "artist": "J-Shin Featuring LaTocha Scott", + "position": 96, + "title": "One Night Stand" + }, + { + "artist": "SheDaisy", + "position": 97, + "title": "Deck The Halls" + }, + { + "artist": "Dr. Dre Featuring Snoop Dogg", + "position": 98, + "title": "Still D.R.E." + }, + { + "artist": "Beth Hart", + "position": 99, + "title": "L.A. Song" + }, + { + "artist": "Nas", + "position": 100, + "title": "NAStradamus" + } + ], + "title": "1999 - Hot 100" + }, + { + "songs": [ + { + "artist": "Terri Clark", + "position": 1, + "title": "You re Easy On The Eyes" + }, + { + "artist": "Brooks", + "position": 2, + "title": "Husbands And Wives" + }, + { + "artist": "Collin Raye", + "position": 3, + "title": "Someone You Used To Know" + }, + { + "artist": "Faith Hill", + "position": 4, + "title": "Let Me Let Go" + }, + { + "artist": "Clay Walker", + "position": 5, + "title": "You re Beginning To Get To Me" + }, + { + "artist": "Alan Jackson", + "position": 6, + "title": "Right On The Money" + }, + { + "artist": "Martina McBride", + "position": 7, + "title": "Wrong Again" + }, + { + "artist": "Aaron Tippin", + "position": 8, + "title": "For You I Will" + }, + { + "artist": "Blackhawk", + "position": 9, + "title": "There You Have It" + }, + { + "artist": "George Strait", + "position": 10, + "title": "We Really Shouldn t Be Doing This" + }, + { + "artist": "Tim McGraw", + "position": 11, + "title": "For A Little While" + }, + { + "artist": "Ty Herndon", + "position": 12, + "title": "It Must Be Love" + }, + { + "artist": "Randy Travis", + "position": 13, + "title": "Spirit Of A Boy, Wisdom Of A Man" + }, + { + "artist": "Jo Dee Messina", + "position": 14, + "title": "Stand Beside Me" + }, + { + "artist": "Reba", + "position": 15, + "title": "Wrong Night" + }, + { + "artist": "Diamond Rio", + "position": 16, + "title": "Unbelievable" + }, + { + "artist": "Dixie Chicks", + "position": 17, + "title": "Wide Open Spaces" + }, + { + "artist": "John Michael Montgomery", + "position": 18, + "title": "Hold On To Me" + }, + { + "artist": "Mark Chesnutt", + "position": 19, + "title": "I Don t Want To Miss A Thing" + }, + { + "artist": "Garth Brooks", + "position": 20, + "title": "It s Your Song" + }, + { + "artist": "Toby Keith", + "position": 21, + "title": "Getcha Some" + }, + { + "artist": "Sara Evans", + "position": 22, + "title": "No Place That Far" + }, + { + "artist": "Tim McGraw", + "position": 23, + "title": "Where The Green Grass Grows" + }, + { + "artist": "Billy Ray Cyrus", + "position": 24, + "title": "Busy Man" + }, + { + "artist": "The Wilkinsons", + "position": 25, + "title": "Fly (The Angel Song)" + } + ], + "title": "1998 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "R. Kelly", + "position": 1, + "title": "I m Your Angel" + }, + { + "artist": "Deborah Cox", + "position": 2, + "title": "Nobody s Supposed To Be Here" + }, + { + "artist": "Divine", + "position": 3, + "title": "Lately" + }, + { + "artist": "Shania Twain", + "position": 4, + "title": "From This Moment On" + }, + { + "artist": "Britney Spears", + "position": 5, + "title": "...Baby One More Time" + }, + { + "artist": "98 Degrees", + "position": 6, + "title": "Because Of You" + }, + { + "artist": "Lauryn Hill", + "position": 7, + "title": "Doo Wop (That Thing)" + }, + { + "artist": "Faith Evans", + "position": 8, + "title": "Love Like This" + }, + { + "artist": "Brandy", + "position": 9, + "title": "Have You Ever?" + }, + { + "artist": "Shawn Mullins", + "position": 10, + "title": "Lullaby" + }, + { + "artist": "Spice Girls", + "position": 11, + "title": "Goodbye" + }, + { + "artist": "Total Featuring Missy Elliott", + "position": 12, + "title": "Trippin" + }, + { + "artist": "Eagle-Eye Cherry", + "position": 13, + "title": "Save Tonight" + }, + { + "artist": "Faith Hill", + "position": 14, + "title": "This Kiss" + }, + { + "artist": "Jewel", + "position": 15, + "title": "Hands" + }, + { + "artist": "Third Eye Blind", + "position": 16, + "title": "Jumper" + }, + { + "artist": "Goo Goo Dolls", + "position": 17, + "title": "Slide" + }, + { + "artist": "Goo Goo Dolls", + "position": 18, + "title": "Iris" + }, + { + "artist": "Monica", + "position": 19, + "title": "The First Night" + }, + { + "artist": "Jay-Z Featuring Amil (Of Major Coinz)", + "position": 20, + "title": "Can I Get A..." + }, + { + "artist": "112 Featuring Mase", + "position": 21, + "title": "Love Me" + }, + { + "artist": "Edwin McCain", + "position": 22, + "title": "I ll Be" + }, + { + "artist": "Dru Hill Featuring Redman", + "position": 23, + "title": "How Deep Is Your Love" + }, + { + "artist": "Sheryl Crow", + "position": 24, + "title": "My Favorite Mistake" + }, + { + "artist": "BLACKstreet", + "position": 25, + "title": "Take Me There" + }, + { + "artist": "Alanis Morissette", + "position": 26, + "title": "Thank U" + }, + { + "artist": "Barenaked Ladies", + "position": 27, + "title": "One Week" + }, + { + "artist": "Sarah McLachlan", + "position": 28, + "title": "Angel" + }, + { + "artist": "Aaliyah", + "position": 29, + "title": "Are You That Somebody?" + }, + { + "artist": "Will Smith", + "position": 30, + "title": "Miami" + }, + { + "artist": "Eve 6", + "position": 31, + "title": "Inside Out" + }, + { + "artist": "Next", + "position": 32, + "title": "Too Close" + }, + { + "artist": "Monifah", + "position": 33, + "title": "Touch It" + }, + { + "artist": "N Sync", + "position": 34, + "title": "(God Must Have Spent) A Little More Time On You" + }, + { + "artist": "Jay-Z", + "position": 35, + "title": "Hard Knock Life (Ghetto Anthem)" + }, + { + "artist": "Dru Hill", + "position": 36, + "title": "These Are The Times" + }, + { + "artist": "Monica", + "position": 37, + "title": "Angel Of Mine" + }, + { + "artist": "2Pac", + "position": 38, + "title": "Changes" + }, + { + "artist": "Clay Walker", + "position": 39, + "title": "You re Beginning To Get To Me" + }, + { + "artist": "Collin Raye", + "position": 40, + "title": "Someone You Used To Know" + }, + { + "artist": "Madonna", + "position": 41, + "title": "The Power Of Good-Bye" + }, + { + "artist": "Ice Cube Featuring Mr. Short Khop", + "position": 42, + "title": "Pushin Weight" + }, + { + "artist": "Brian McKnight Featuring Tone", + "position": 43, + "title": "Hold Me" + }, + { + "artist": "Terri Clark", + "position": 44, + "title": "You re Easy On The Eyes" + }, + { + "artist": "Aaron Hall", + "position": 45, + "title": "All The Places (I Will Kiss You)" + }, + { + "artist": "Mo Thugs Family Featuring Bone Thugs-N-Harmony", + "position": 46, + "title": "Ghetto Cowboy" + }, + { + "artist": "Mark Chesnutt", + "position": 47, + "title": "I Don t Want To Miss A Thing" + }, + { + "artist": "Blackhawk", + "position": 48, + "title": "There You Have It" + }, + { + "artist": "Martina McBride", + "position": 49, + "title": "Wrong Again" + }, + { + "artist": "Brooks", + "position": 50, + "title": "Husbands And Wives" + }, + { + "artist": "Alan Jackson", + "position": 51, + "title": "Right On The Money" + }, + { + "artist": "New Radicals", + "position": 52, + "title": "You Get What You Give" + }, + { + "artist": "Lenny Kravitz", + "position": 53, + "title": "Fly Away" + }, + { + "artist": "Aaron Tippin", + "position": 54, + "title": "For You I Will" + }, + { + "artist": "Faith Hill", + "position": 55, + "title": "Let Me Let Go" + }, + { + "artist": "Whitney Houston", + "position": 56, + "title": "When You Believe" + }, + { + "artist": "Randy Travis", + "position": 57, + "title": "Spirit Of A Boy, Wisdom Of A Man" + }, + { + "artist": "OutKast", + "position": 58, + "title": "Rosa Parks" + }, + { + "artist": "The Offspring", + "position": 59, + "title": "Pretty Fly (For A White Guy)" + }, + { + "artist": "Tim McGraw", + "position": 60, + "title": "For A Little While" + }, + { + "artist": "TQ", + "position": 61, + "title": "Westside" + }, + { + "artist": "Keith Sweat Featuring Snoop Dogg", + "position": 62, + "title": "Come And Get With Me" + }, + { + "artist": "Ty Herndon", + "position": 63, + "title": "It Must Be Love" + }, + { + "artist": "George Strait", + "position": 64, + "title": "We Really Shouldn t Be Doing This" + }, + { + "artist": "Jo Dee Messina", + "position": 65, + "title": "Stand Beside Me" + }, + { + "artist": "Sara Evans", + "position": 66, + "title": "No Place That Far" + }, + { + "artist": "Dixie Chicks", + "position": 67, + "title": "Wide Open Spaces" + }, + { + "artist": "John Michael Montgomery", + "position": 68, + "title": "Hold On To Me" + }, + { + "artist": "U2", + "position": 69, + "title": "Sweetest Thing" + }, + { + "artist": "R. Kelly Featuring Keith Murray", + "position": 70, + "title": "Home Alone" + }, + { + "artist": "Voices Of Theory", + "position": 71, + "title": "Wherever You Go" + }, + { + "artist": "Aerosmith", + "position": 72, + "title": "I Don t Want To Miss A Thing" + }, + { + "artist": "Reba", + "position": 73, + "title": "Wrong Night" + }, + { + "artist": "Barenaked Ladies", + "position": 74, + "title": "It s All Been Done" + }, + { + "artist": "The Wilkinsons", + "position": 75, + "title": "Fly (The Angel Song)" + }, + { + "artist": "Diamond Rio", + "position": 76, + "title": "Unbelievable" + }, + { + "artist": "Cher", + "position": 77, + "title": "Believe" + }, + { + "artist": "Everclear", + "position": 78, + "title": "Father Of Mine" + }, + { + "artist": "R. Kelly", + "position": 79, + "title": "When A Woman s Fed Up" + }, + { + "artist": "Everlast", + "position": 80, + "title": "What It s Like" + }, + { + "artist": "Cake", + "position": 81, + "title": "Never There" + }, + { + "artist": "Brandy", + "position": 82, + "title": "Angel In Disguise" + }, + { + "artist": "Shaggy Featuring Janet", + "position": 83, + "title": "Luv Me, Luv Me" + }, + { + "artist": "Whitney Houston Feat. Faith Evans", + "position": 84, + "title": "Heartbreak Hotel" + }, + { + "artist": "matchbox 20", + "position": 85, + "title": "Back 2 Good" + }, + { + "artist": "Case", + "position": 86, + "title": "Faded Pictures" + }, + { + "artist": "Everything", + "position": 87, + "title": "Hooch" + }, + { + "artist": "Fastball", + "position": 88, + "title": "Fire Escape" + }, + { + "artist": "Xscape", + "position": 89, + "title": "My Little Secret" + }, + { + "artist": "Tim McGraw", + "position": 90, + "title": "Where The Green Grass Grows" + }, + { + "artist": "Five", + "position": 91, + "title": "It s The Things You Do" + }, + { + "artist": "Kirk Franklin Feat. Mary J. Blige, Bono, R. Kelly, Crystal Lewis", + "position": 92, + "title": "Lean On Me" + }, + { + "artist": "Garth Brooks", + "position": 93, + "title": "It s Your Song" + }, + { + "artist": "Hole", + "position": 94, + "title": "Celebrity Skin" + }, + { + "artist": "Mark Wills", + "position": 95, + "title": "Don t Laugh At Me" + }, + { + "artist": "Lee Ann Womack", + "position": 96, + "title": "A Little Past Little Rock" + }, + { + "artist": "Willie Max Featuring Raphael Saadiq", + "position": 97, + "title": "Can t Get Enough" + }, + { + "artist": "Alabama", + "position": 98, + "title": "How Do You Fall In Love" + }, + { + "artist": "Timbaland Featuring Missy \"Misdemeanor\" Elliott", + "position": 99, + "title": "Here We Come" + }, + { + "artist": "Travis Tritt", + "position": 100, + "title": "If I Lost You" + } + ], + "title": "1998 - Hot 100" + }, + { + "songs": [ + { + "artist": "Garth Brooks", + "position": 1, + "title": "Longneck Bottle" + }, + { + "artist": "Martina McBride", + "position": 2, + "title": "A Broken Wing" + }, + { + "artist": "Alan Jackson", + "position": 3, + "title": "Between The Devil And Me" + }, + { + "artist": "Michael Peterson", + "position": 4, + "title": "From Here To Eternity" + }, + { + "artist": "Trace Adkins", + "position": 5, + "title": "The Rest Of Mine" + }, + { + "artist": "Pam Tillis", + "position": 6, + "title": "Land Of The Living" + }, + { + "artist": "Toby Keith With Sting", + "position": 7, + "title": "I'm So Happy I Can't Stop Crying" + }, + { + "artist": "John Michael Montgomery", + "position": 8, + "title": "Angel In My Eyes" + }, + { + "artist": "Brooks & Dunn", + "position": 9, + "title": "He's Got You" + }, + { + "artist": "Tim McGraw", + "position": 10, + "title": "Just To See You Smile" + }, + { + "artist": "Sammy Kershaw", + "position": 11, + "title": "Love Of My Life" + }, + { + "artist": "Shania Twain", + "position": 12, + "title": "Love Gets Me Every Time" + }, + { + "artist": "LeAnn Rimes", + "position": 13, + "title": "On The Side Of Angels" + }, + { + "artist": "Lonestar", + "position": 14, + "title": "You Walked In" + }, + { + "artist": "Diamond Rio", + "position": 15, + "title": "Imagine That" + }, + { + "artist": "Patty Loveless", + "position": 16, + "title": "You Don't Seem To Miss Me" + }, + { + "artist": "Ty Herndon", + "position": 17, + "title": "I Have To Surrender" + }, + { + "artist": "Shania Twain", + "position": 18, + "title": "Don't Be Stupid (You Know I Love You)" + }, + { + "artist": "Lila McCann", + "position": 19, + "title": "I Wanna Fall In Love" + }, + { + "artist": "Lee Ann Womack", + "position": 20, + "title": "You've Got To Talk To Me" + }, + { + "artist": "George Strait", + "position": 21, + "title": "Today My World Slipped Away" + }, + { + "artist": "Anita Cochran (Duet With Steve Wariner)", + "position": 22, + "title": "What If I Said" + }, + { + "artist": "Alabama", + "position": 23, + "title": "Of Course I'm Alright" + }, + { + "artist": "Kenny Chesney", + "position": 24, + "title": "A Chance" + }, + { + "artist": "Clint Black", + "position": 25, + "title": "Something That We Do" + } + ], + "title": "1997 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Elton John", + "position": 1, + "title": "Candle In The Wind 1997/Something About The Way You Look Tonight" + }, + { + "artist": "LeAnn Rimes", + "position": 2, + "title": "How Do I Live" + }, + { + "artist": "Usher", + "position": 3, + "title": "You Make Me Wanna..." + }, + { + "artist": "Janet", + "position": 4, + "title": "Together Again" + }, + { + "artist": "Puff Daddy & The Family (Feat. The Notorious B.I.G. & Mase)", + "position": 5, + "title": "Been Around The World" + }, + { + "artist": "LSG", + "position": 6, + "title": "My Body" + }, + { + "artist": "Mase", + "position": 7, + "title": "Feel So Good" + }, + { + "artist": "Robyn", + "position": 8, + "title": "Show Me Love" + }, + { + "artist": "Savage Garden", + "position": 9, + "title": "Truly Madly Deeply" + }, + { + "artist": "Somethin' For The People Featuring Trina & Tamara", + "position": 10, + "title": "My Love Is The Shhh!" + }, + { + "artist": "Chumbawamba", + "position": 11, + "title": "Tubthumping" + }, + { + "artist": "Boyz II Men", + "position": 12, + "title": "A Song For Mama" + }, + { + "artist": "Hanson", + "position": 13, + "title": "I Will Come To You" + }, + { + "artist": "Paula Cole", + "position": 14, + "title": "I Don't Want To Wait" + }, + { + "artist": "Aaliyah", + "position": 15, + "title": "The One I Gave My Heart To" + }, + { + "artist": "Dru Hill", + "position": 16, + "title": "We're Not Making Love No More" + }, + { + "artist": "Allure Featuring 112", + "position": 17, + "title": "All Cried Out" + }, + { + "artist": "Spice Girls", + "position": 18, + "title": "Spice Up Your Life" + }, + { + "artist": "Next", + "position": 19, + "title": "Butta Love" + }, + { + "artist": "Uncle Sam", + "position": 20, + "title": "I Don't Ever Want To See You Again" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring Da Brat", + "position": 21, + "title": "Sock It 2 Me" + }, + { + "artist": "Jewel", + "position": 22, + "title": "Foolish Games/You Were Meant For Me" + }, + { + "artist": "Lisa Loeb", + "position": 23, + "title": "I Do" + }, + { + "artist": "Boyz II Men", + "position": 24, + "title": "4 Seasons Of Loneliness" + }, + { + "artist": "Third Eye Blind", + "position": 25, + "title": "Semi-Charmed Life" + }, + { + "artist": "Backstreet Boys", + "position": 26, + "title": "Quit Playing Games (With My Heart)" + }, + { + "artist": "Third Eye Blind", + "position": 27, + "title": "How's It Going To Be" + }, + { + "artist": "Total", + "position": 28, + "title": "What About Us" + }, + { + "artist": "Aqua", + "position": 29, + "title": "Lollipop (Candyman)" + }, + { + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Mase", + "position": 30, + "title": "Mo Money Mo Problems" + }, + { + "artist": "Fiona Apple", + "position": 31, + "title": "Criminal" + }, + { + "artist": "She Moves", + "position": 32, + "title": "Breaking All The Rules" + }, + { + "artist": "Nu Flavor", + "position": 33, + "title": "Heaven" + }, + { + "artist": "Sister Hazel", + "position": 34, + "title": "All For You" + }, + { + "artist": "Destiny's Child", + "position": 35, + "title": "No, No, No" + }, + { + "artist": "Sarah McLachlan", + "position": 36, + "title": "Building A Mystery" + }, + { + "artist": "The Notorious B.I.G.", + "position": 37, + "title": "Going Back To Cali" + }, + { + "artist": "H-Town", + "position": 38, + "title": "They Like It Slow" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 39, + "title": "If I Could Teach The World" + }, + { + "artist": "Puff Daddy & Faith Evans Featuring 112", + "position": 40, + "title": "I'll Be Missing You" + }, + { + "artist": "Mariah Carey", + "position": 41, + "title": "Honey" + }, + { + "artist": "Los Umbrellos", + "position": 42, + "title": "No Tengo Dinero" + }, + { + "artist": "Metallica", + "position": 43, + "title": "The Memory Remains" + }, + { + "artist": "98 Degrees", + "position": 44, + "title": "Invisible Man" + }, + { + "artist": "Spice Girls", + "position": 45, + "title": "2 Become 1" + }, + { + "artist": "Shawn Colvin", + "position": 46, + "title": "Sunny Came Home" + }, + { + "artist": "Mary J. Blige", + "position": 47, + "title": "Everything" + }, + { + "artist": "Shania Twain", + "position": 48, + "title": "Don't Be Stupid (You Know I Love You)" + }, + { + "artist": "Milestone", + "position": 49, + "title": "I Care 'Bout You" + }, + { + "artist": "Gary Barlow", + "position": 50, + "title": "So Help Me Girl" + }, + { + "artist": "Richard Marx & Donna Lewis", + "position": 51, + "title": "At The Beginning" + }, + { + "artist": "Billie Myers", + "position": 52, + "title": "Kiss The Rain" + }, + { + "artist": "Shania Twain", + "position": 53, + "title": "Love Gets Me Every Time" + }, + { + "artist": "Imani Coppola", + "position": 54, + "title": "Legend Of A Cowgirl" + }, + { + "artist": "Master P Featuring Pimp C And The Shocker", + "position": 55, + "title": "I Miss My Homies" + }, + { + "artist": "Alana Davis", + "position": 56, + "title": "32 Flavors" + }, + { + "artist": "Bee Gees", + "position": 57, + "title": "Still Waters (Run Deep)" + }, + { + "artist": "WC From Westside Connection", + "position": 58, + "title": "Just Clownin'" + }, + { + "artist": "LeAnn Rimes", + "position": 59, + "title": "You Light Up My Life" + }, + { + "artist": "Davina", + "position": 60, + "title": "So Good" + }, + { + "artist": "Mack 10", + "position": 61, + "title": "Backyard Boogie" + }, + { + "artist": "Big Punisher", + "position": 62, + "title": "I'm Not A Player" + }, + { + "artist": "Reba McEntire", + "position": 63, + "title": "What If" + }, + { + "artist": "Olive", + "position": 64, + "title": "You're Not Alone" + }, + { + "artist": "Sting & The Police", + "position": 65, + "title": "Roxanne `97 - Puff Daddy Remix" + }, + { + "artist": "David Bowie", + "position": 66, + "title": "I'm Afraid Of Americans" + }, + { + "artist": "Insane Clown Posse", + "position": 67, + "title": "Santa's A Fat Bitch" + }, + { + "artist": "Kimberly Scott", + "position": 68, + "title": "Tuck Me In" + }, + { + "artist": "Brian McKnight Featuring Mase", + "position": 69, + "title": "You Should Be Mine (Don't Waste Your Time)" + }, + { + "artist": "K-Ci & JoJo", + "position": 70, + "title": "Last Night's Letter" + }, + { + "artist": "Diana King", + "position": 71, + "title": "L-L-Lies" + }, + { + "artist": "Amber", + "position": 72, + "title": "One More Night" + }, + { + "artist": "Playa", + "position": 73, + "title": "Don't Stop The Music" + }, + { + "artist": "Martina McBride With Jim Brickman", + "position": 74, + "title": "Valentine" + }, + { + "artist": "LL Cool J Featuring Method Man, Redman, DMX, Canibus And Master P", + "position": 75, + "title": "4, 3, 2, 1" + }, + { + "artist": "Clint Black", + "position": 76, + "title": "Something That We Do" + }, + { + "artist": "Naughty By Nature", + "position": 77, + "title": "Mourn You Til I Join You" + }, + { + "artist": "KAI", + "position": 78, + "title": "Say You'll Stay" + }, + { + "artist": "2Pac", + "position": 79, + "title": "I Wonder If Heaven Got A Ghetto" + }, + { + "artist": "Lord Tariq & Peter Gunz", + "position": 80, + "title": "Deja Vu [Uptown Baby]" + }, + { + "artist": "Daft Punk", + "position": 81, + "title": "Around The World" + }, + { + "artist": "En Vogue", + "position": 82, + "title": "Too Gone, Too Long" + }, + { + "artist": "BeBe Winans", + "position": 83, + "title": "In Harm's Way" + }, + { + "artist": "Trace Adkins", + "position": 84, + "title": "The Rest Of Mine" + }, + { + "artist": "4.0", + "position": 85, + "title": "Have A Little Mercy" + }, + { + "artist": "K.P. & Envyi", + "position": 86, + "title": "Swing My Way" + }, + { + "artist": "Changing Faces (Featuring Jay-Z)", + "position": 87, + "title": "All Of My Days" + }, + { + "artist": "Gang Starr", + "position": 88, + "title": "You Know My Steez" + }, + { + "artist": "Queen Pen Featuring Teddy Riley", + "position": 89, + "title": "Man Behind The Music" + }, + { + "artist": "Prodigy", + "position": 90, + "title": "Smack My Bitch Up" + }, + { + "artist": "Deana Carter", + "position": 91, + "title": "Did I Shave My Legs For This?" + }, + { + "artist": "Sammy Kershaw", + "position": 92, + "title": "Love Of My Life" + }, + { + "artist": "LL Cool J", + "position": 93, + "title": "Phenomenon" + }, + { + "artist": "Le Click Featuring Kayo", + "position": 94, + "title": "Don't Go" + }, + { + "artist": "Ultra Nate", + "position": 95, + "title": "Free" + }, + { + "artist": "Sublime", + "position": 96, + "title": "Doin' Time" + }, + { + "artist": "Toby Keith With Sting", + "position": 97, + "title": "I'm So Happy I Can't Stop Crying" + }, + { + "artist": "Yvette Michele", + "position": 98, + "title": "DJ Keep Playin' (Get Your Music On)" + }, + { + "artist": "Billy Lawrence", + "position": 99, + "title": "Up & Down" + }, + { + "artist": "Barenaked Ladies", + "position": 100, + "title": "Brian Wilson" + } + ], + "title": "1997 - Hot 100" + }, + { + "songs": [ + { + "artist": "LeAnn Rimes", + "position": 1, + "title": "One Way Ticket (Because I Can)" + }, + { + "artist": "Alan Jackson", + "position": 2, + "title": "Little Bitty" + }, + { + "artist": "Reba McEntire", + "position": 3, + "title": "The Fear Of Being Alone" + }, + { + "artist": "Garth Brooks", + "position": 4, + "title": "That Ol' Wind" + }, + { + "artist": "Tracy Byrd", + "position": 5, + "title": "Big Love" + }, + { + "artist": "Kevin Sharp", + "position": 6, + "title": "Nobody Knows" + }, + { + "artist": "Trace Adkins", + "position": 7, + "title": "Every Light In The House" + }, + { + "artist": "John Michael Montgomery", + "position": 8, + "title": "Friends" + }, + { + "artist": "Tim McGraw", + "position": 9, + "title": "Maybe We Should Just Sleep On It" + }, + { + "artist": "Gary Allan", + "position": 10, + "title": "Her Man" + }, + { + "artist": "Tracy Lawrence", + "position": 11, + "title": "Is That A Tear" + }, + { + "artist": "Mary Chapin Carpenter", + "position": 12, + "title": "Let Me Into Your Heart" + }, + { + "artist": "Trisha Yearwood", + "position": 13, + "title": "Everybody Knows" + }, + { + "artist": "Mark Chesnutt", + "position": 14, + "title": "It's A Little Too Late" + }, + { + "artist": "Vince Gill", + "position": 15, + "title": "Pretty Little Adriana" + }, + { + "artist": "David Kersh", + "position": 16, + "title": "Goodnight Sweetheart" + }, + { + "artist": "Faith Hill", + "position": 17, + "title": "I Can't Do That Anymore" + }, + { + "artist": "Clint Black", + "position": 18, + "title": "Half Way Up" + }, + { + "artist": "Bryan White", + "position": 19, + "title": "That's Another Song" + }, + { + "artist": "Deana Carter", + "position": 20, + "title": "Strawberry Wine" + }, + { + "artist": "Brooks & Dunn", + "position": 21, + "title": "A Man This Lonely" + }, + { + "artist": "Rick Trevino", + "position": 22, + "title": "Running Out Of Reasons To Run" + }, + { + "artist": "Daryle Singletary", + "position": 23, + "title": "Amen Kind Of Love" + }, + { + "artist": "Mindy McCready (Featuring Lonestar's Richie McDonald)", + "position": 24, + "title": "Maybe He'll Notice Her Now" + }, + { + "artist": "Randy Travis", + "position": 25, + "title": "Would I" + } + ], + "title": "1996 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Toni Braxton", + "position": 1, + "title": "Un-Break My Heart" + }, + { + "artist": "R. Kelly", + "position": 2, + "title": "I Believe I Can Fly (From \"Space Jam\")" + }, + { + "artist": "En Vogue", + "position": 3, + "title": "Don't Let Go (Love) (From \"Set It Off\")" + }, + { + "artist": "BLACKstreet (Featuring Dr. Dre)", + "position": 4, + "title": "No Diggity" + }, + { + "artist": "Keith Sweat Featuring Athena Cage", + "position": 5, + "title": "Nobody" + }, + { + "artist": "Merril Bainbridge", + "position": 6, + "title": "Mouth" + }, + { + "artist": "Whitney Houston", + "position": 7, + "title": "I Believe In You And Me (From \"The Preacher's Wife\")" + }, + { + "artist": "Celine Dion", + "position": 8, + "title": "It's All Coming Back To Me Now" + }, + { + "artist": "New Edition", + "position": 9, + "title": "I'm Still In Love With You" + }, + { + "artist": "Barbra Streisand & Bryan Adams", + "position": 10, + "title": "I Finally Found Someone (From \"The Mirror Has Two Faces\")" + }, + { + "artist": "Ginuwine", + "position": 11, + "title": "Pony" + }, + { + "artist": "Los Del Rio", + "position": 12, + "title": "Macarena (Bayside Boys Mix)" + }, + { + "artist": "No Mercy", + "position": 13, + "title": "Where Do You Go" + }, + { + "artist": "Sheryl Crow", + "position": 14, + "title": "If It Makes You Happy" + }, + { + "artist": "Journey", + "position": 15, + "title": "When You Love A Woman" + }, + { + "artist": "Az Yet", + "position": 16, + "title": "Last Night (From \"The Nutty Professor\")" + }, + { + "artist": "Seal", + "position": 17, + "title": "Fly Like An Eagle (From \"Space Jam\")" + }, + { + "artist": "Donna Lewis", + "position": 18, + "title": "I Love You Always Forever" + }, + { + "artist": "Mint Condition", + "position": 19, + "title": "What Kind Of Man Would I Be" + }, + { + "artist": "Lil' Kim Featuring Puff Daddy", + "position": 20, + "title": "No Time" + }, + { + "artist": "Babyface Feat. LL Cool J, Howard Hewett, Jody Watley & Jef", + "position": 21, + "title": "This Is For The Lover In You" + }, + { + "artist": "Montell Jordan", + "position": 22, + "title": "Falling" + }, + { + "artist": "Keith Sweat", + "position": 23, + "title": "Twisted" + }, + { + "artist": "Dru Hill", + "position": 24, + "title": "Tell Me (From \"Eddie\")" + }, + { + "artist": "Eric Clapton", + "position": 25, + "title": "Change The World (From \"Phenomenon\")" + }, + { + "artist": "Amber", + "position": 26, + "title": "This Is Your Night" + }, + { + "artist": "Nas", + "position": 27, + "title": "Street Dreams" + }, + { + "artist": "Madonna", + "position": 28, + "title": "You Must Love Me (From \"Evita\")" + }, + { + "artist": "dc Talk", + "position": 29, + "title": "Just Between You And Me" + }, + { + "artist": "Toni Braxton", + "position": 30, + "title": "You're Makin' Me High/Let It Flow" + }, + { + "artist": "MC Lyte", + "position": 31, + "title": "Cold Rock A Party" + }, + { + "artist": "Dishwalla", + "position": 32, + "title": "Counting Blue Cars" + }, + { + "artist": "Jewel", + "position": 33, + "title": "Foolish Games/You Were Meant For Me" + }, + { + "artist": "Gina G", + "position": 34, + "title": "Ooh Aah... Just A Little Bit" + }, + { + "artist": "John Mellencamp", + "position": 35, + "title": "Key West Intermezzo (I Saw You First)" + }, + { + "artist": "702", + "position": 36, + "title": "Steelo" + }, + { + "artist": "Alanis Morissette", + "position": 37, + "title": "You Learn/You Oughta Know" + }, + { + "artist": "Ghost Town DJ's", + "position": 38, + "title": "My Boo" + }, + { + "artist": "112", + "position": 39, + "title": "Come See Me" + }, + { + "artist": "OutKast", + "position": 40, + "title": "ATLiens" + }, + { + "artist": "Nate Dogg Featuring Snoop Doggy Dogg", + "position": 41, + "title": "Never Leave Me Alone" + }, + { + "artist": "Bryan Adams", + "position": 42, + "title": "Let's Make A Night To Remember" + }, + { + "artist": "LL Cool J", + "position": 43, + "title": "Loungin" + }, + { + "artist": "The Cranberries", + "position": 44, + "title": "When You're Gone/Free To Decide" + }, + { + "artist": "Westside Connection", + "position": 45, + "title": "Bow Down" + }, + { + "artist": "Quad City DJ's", + "position": 46, + "title": "C'mon N' Ride It (The Train)" + }, + { + "artist": "Mack 10 & Tha Dogg Pound", + "position": 47, + "title": "Nothin' But The Cavi Hit (From \"Rhyme & Reason\")" + }, + { + "artist": "Tracy Chapman", + "position": 48, + "title": "Give Me One Reason" + }, + { + "artist": "The Smashing Pumpkins", + "position": 49, + "title": "Thirty-Three" + }, + { + "artist": "Jocelyn Enriquez", + "position": 50, + "title": "Do You Miss Me" + }, + { + "artist": "Donell Jones", + "position": 51, + "title": "Knocks Me Off My Feet" + }, + { + "artist": "Donna Lewis", + "position": 52, + "title": "Without Love" + }, + { + "artist": "Aaliyah", + "position": 53, + "title": "If Your Girl Only Knew" + }, + { + "artist": "Brandy, Tamia, Gladys Knight & Chaka Khan", + "position": 54, + "title": "Missing You (From \"Set It Off\")" + }, + { + "artist": "Rod Stewart", + "position": 55, + "title": "If We Fall In Love Tonight" + }, + { + "artist": "Quad City DJ's", + "position": 56, + "title": "Space Jam (From \"Space Jam\")" + }, + { + "artist": "Gloria Estefan", + "position": 57, + "title": "I'm Not Giving You Up" + }, + { + "artist": "K-Ci & JoJo", + "position": 58, + "title": "How Could You (From \"Bulletproof\")" + }, + { + "artist": "The Blackout Allstars", + "position": 59, + "title": "I Like It" + }, + { + "artist": "Alan Jackson", + "position": 60, + "title": "Little Bitty" + }, + { + "artist": "Total", + "position": 61, + "title": "When Boy Meets Girl" + }, + { + "artist": "Duncan Sheik", + "position": 62, + "title": "Barely Breathing" + }, + { + "artist": "Johnny Gill Featuring Roger Troutman", + "position": 63, + "title": "It's Your Body" + }, + { + "artist": "Better Than Ezra", + "position": 64, + "title": "Desperately Wanting" + }, + { + "artist": "Rockell", + "position": 65, + "title": "I Fell In Love" + }, + { + "artist": "Los Del Rio", + "position": 66, + "title": "Macarena Christmas" + }, + { + "artist": "Da Brat", + "position": 67, + "title": "Sittin' On Top Of The World" + }, + { + "artist": "The Braids", + "position": 68, + "title": "Bohemian Rhapsody (From \"High School High\")" + }, + { + "artist": "Kenny G", + "position": 69, + "title": "The Moment" + }, + { + "artist": "R.E.M.", + "position": 70, + "title": "Bittersweet Me" + }, + { + "artist": "The Original", + "position": 71, + "title": "I Luv U Baby" + }, + { + "artist": "Crush", + "position": 72, + "title": "Jellyhead" + }, + { + "artist": "Metallica", + "position": 73, + "title": "Hero Of The Day" + }, + { + "artist": "Richie Rich", + "position": 74, + "title": "Let's Ride" + }, + { + "artist": "The Isley Brothers Featuring Angela Winbush", + "position": 75, + "title": "Floatin' On Your Love" + }, + { + "artist": "Le Click", + "position": 76, + "title": "Tonight Is The Night" + }, + { + "artist": "Melissa Etheridge", + "position": 77, + "title": "Nowhere To Go" + }, + { + "artist": "Goodfellaz", + "position": 78, + "title": "Sugar Honey Ice Tea" + }, + { + "artist": "Luscious Jackson", + "position": 79, + "title": "Naked Eye" + }, + { + "artist": "Shania Twain", + "position": 80, + "title": "God Bless The Child" + }, + { + "artist": "Wild Orchid", + "position": 81, + "title": "At Night I Pray" + }, + { + "artist": "Susanna Hoffs", + "position": 82, + "title": "All I Want" + }, + { + "artist": "Luther Vandross", + "position": 83, + "title": "I Can Make It Better" + }, + { + "artist": "Phil Collins", + "position": 84, + "title": "Dance Into The Light" + }, + { + "artist": "The Wonders", + "position": 85, + "title": "That Thing You Do! (From \"That Thing You Do!\")" + }, + { + "artist": "Trace Adkins", + "position": 86, + "title": "Every Light In The House" + }, + { + "artist": "New Edition", + "position": 87, + "title": "Hit Me Off" + }, + { + "artist": "Robert Miles Featuring Maria Nayler", + "position": 88, + "title": "One And One" + }, + { + "artist": "John Michael Montgomery", + "position": 89, + "title": "Friends" + }, + { + "artist": "Elton John", + "position": 90, + "title": "You Can Make History (Young Again)" + }, + { + "artist": "Warren G Featuring Adina Howard", + "position": 91, + "title": "What's Love Got To Do With It (From \"Supercop\")" + }, + { + "artist": "The Tony Rich Project", + "position": 92, + "title": "Leavin'" + }, + { + "artist": "Johnny Gill", + "position": 93, + "title": "Let's Get The Mood Right" + }, + { + "artist": "Amanda Marshall", + "position": 94, + "title": "Birmingham" + }, + { + "artist": "Redman Featuring K-Solo", + "position": 95, + "title": "That's How It Is (It's Like That)" + }, + { + "artist": "dog's eye view", + "position": 96, + "title": "Everything Falls Apart/Small Wonders" + }, + { + "artist": "SWV", + "position": 97, + "title": "Use Your Heart" + }, + { + "artist": "LL Cool J", + "position": 98, + "title": "Ain't Nobody (From \"Beavis And Butt-Head Do America\")" + }, + { + "artist": "Angelina", + "position": 99, + "title": "I Don't Need Your Love" + }, + { + "artist": "Lost Boyz", + "position": 100, + "title": "Music Makes Me High" + } + ], + "title": "1996 - Hot 100" + }, + { + "songs": [ + { + "artist": "Aaron Tippin", + "position": 1, + "title": "That's As Close As I'll Get To Loving You" + }, + { + "artist": "Tim McGraw", + "position": 2, + "title": "Can't Be Really Gone" + }, + { + "artist": "Bryan White", + "position": 3, + "title": "Rebecca Lynn" + }, + { + "artist": "Clint Black", + "position": 4, + "title": "Life Gets Away" + }, + { + "artist": "Jeff Carson", + "position": 5, + "title": "The Car" + }, + { + "artist": "Faith Hill", + "position": 6, + "title": "It Matters To Me" + }, + { + "artist": "Pam Tillis", + "position": 7, + "title": "Deep Down" + }, + { + "artist": "Alan Jackson", + "position": 8, + "title": "Tall, Tall Trees" + }, + { + "artist": "Tracy Byrd", + "position": 9, + "title": "Love Lessons" + }, + { + "artist": "George Strait", + "position": 10, + "title": "Check Yes Or No" + }, + { + "artist": "John Michael Montgomery", + "position": 11, + "title": "Cowboy Love" + }, + { + "artist": "Shania Twain", + "position": 12, + "title": "(If You're Not In It For Love) I'm Outta Here!" + }, + { + "artist": "Terri Clark", + "position": 13, + "title": "When Boy Meets Girl" + }, + { + "artist": "Lee Roy Parnell", + "position": 14, + "title": "When A Woman Loves A Man" + }, + { + "artist": "Doug Stone", + "position": 15, + "title": "Born In The Dark" + }, + { + "artist": "Reba McEntire", + "position": 16, + "title": "Ring On Her Finger, Time On Her Hands" + }, + { + "artist": "Joe Diffie", + "position": 17, + "title": "Bigger Than The Beatles" + }, + { + "artist": "Doug Supernaw", + "position": 18, + "title": "Not Enough Hours In The Night" + }, + { + "artist": "Alabama", + "position": 19, + "title": "In Pictures" + }, + { + "artist": "Dwight Yoakam", + "position": 20, + "title": "Nothing" + }, + { + "artist": "Blackhawk", + "position": 21, + "title": "Like There Ain't No Yesterday" + }, + { + "artist": "Collin Raye", + "position": 22, + "title": "Not That Different" + }, + { + "artist": "Wade Hayes", + "position": 23, + "title": "What I Meant To Say" + }, + { + "artist": "Clay Walker", + "position": 24, + "title": "Who Needs You Baby" + }, + { + "artist": "John Berry", + "position": 25, + "title": "If I Had Any Pride Left At All" + } + ], + "title": "1995 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Mariah Carey & Boyz II Men", + "position": 1, + "title": "One Sweet Day" + }, + { + "artist": "Whitney Houston", + "position": 2, + "title": "Exhale (Shoop Shoop) (From \"Waiting To Exhale\")" + }, + { + "artist": "LL Cool J", + "position": 3, + "title": "Hey Lover" + }, + { + "artist": "Coolio Featuring L.V.", + "position": 4, + "title": "Gangsta's Paradise (From \"Dangerous Minds\")" + }, + { + "artist": "TLC", + "position": 5, + "title": "Diggin' On You" + }, + { + "artist": "Mariah Carey", + "position": 6, + "title": "Fantasy" + }, + { + "artist": "Monica", + "position": 7, + "title": "Before You Walk Out Of My Life/Like This And Like That" + }, + { + "artist": "Deep Blue Something", + "position": 8, + "title": "Breakfast At Tiffany's" + }, + { + "artist": "Goo Goo Dolls", + "position": 9, + "title": "Name" + }, + { + "artist": "The Beatles", + "position": 10, + "title": "Free As A Bird" + }, + { + "artist": "Madonna", + "position": 11, + "title": "You'll See" + }, + { + "artist": "Everything But The Girl", + "position": 12, + "title": "Missing" + }, + { + "artist": "Pearl Jam", + "position": 13, + "title": "I Got Id/Long Road" + }, + { + "artist": "Janet Jackson", + "position": 14, + "title": "Runaway" + }, + { + "artist": "Joan Osborne", + "position": 15, + "title": "One Of Us" + }, + { + "artist": "R. Kelly", + "position": 16, + "title": "You Remind Me Of Something" + }, + { + "artist": "Ace Of Base", + "position": 17, + "title": "Beautiful Life" + }, + { + "artist": "Groove Theory", + "position": 18, + "title": "Tell Me" + }, + { + "artist": "Take That", + "position": 19, + "title": "Back For Good" + }, + { + "artist": "Sophie B. Hawkins", + "position": 20, + "title": "As I Lay Me Down" + }, + { + "artist": "Kris Kross", + "position": 21, + "title": "Tonite's Tha Night" + }, + { + "artist": "Faith Evans", + "position": 22, + "title": "Soon As I Get Home" + }, + { + "artist": "Hootie & The Blowfish", + "position": 23, + "title": "Only Wanna Be With You" + }, + { + "artist": "3T", + "position": 24, + "title": "Anything" + }, + { + "artist": "Seal", + "position": 25, + "title": "Kiss From A Rose (From \"Batman Forever\")" + }, + { + "artist": "The Smashing Pumpkins", + "position": 26, + "title": "Bullet With Butterfly Wings" + }, + { + "artist": "Hootie & The Blowfish", + "position": 27, + "title": "Time" + }, + { + "artist": "Xscape", + "position": 28, + "title": "Who Can I Run To" + }, + { + "artist": "Natalie Merchant", + "position": 29, + "title": "Carnival" + }, + { + "artist": "Selena", + "position": 30, + "title": "Dreaming Of You" + }, + { + "artist": "Del Amitri", + "position": 31, + "title": "Roll To Me" + }, + { + "artist": "La Bouche", + "position": 32, + "title": "Be My Lover" + }, + { + "artist": "Jodeci", + "position": 33, + "title": "Love U 4 Life" + }, + { + "artist": "Planet Soul", + "position": 34, + "title": "Set U Free" + }, + { + "artist": "Coolio", + "position": 35, + "title": "Too Hot" + }, + { + "artist": "Blues Traveler", + "position": 36, + "title": "Run-Around" + }, + { + "artist": "Meat Loaf", + "position": 37, + "title": "I'd Lie For You (And That's The Truth)" + }, + { + "artist": "Elton John", + "position": 38, + "title": "Blessed" + }, + { + "artist": "Blues Traveler", + "position": 39, + "title": "Hook" + }, + { + "artist": "Collective Soul", + "position": 40, + "title": "The World I Know" + }, + { + "artist": "Natalie Merchant", + "position": 41, + "title": "Wonder" + }, + { + "artist": "Folk Implosion", + "position": 42, + "title": "Natural One (From \"Kids\")" + }, + { + "artist": "Total", + "position": 43, + "title": "No One Else" + }, + { + "artist": "TLC", + "position": 44, + "title": "Waterfalls" + }, + { + "artist": "Collective Soul", + "position": 45, + "title": "December" + }, + { + "artist": "Brandy", + "position": 46, + "title": "Sittin' Up In My Room (From \"Waiting To Exhale\")" + }, + { + "artist": "Eazy-E", + "position": 47, + "title": "Just Tah Let U Know" + }, + { + "artist": "All-4-One", + "position": 48, + "title": "I Can Love You Like That" + }, + { + "artist": "The Tony Rich Project", + "position": 49, + "title": "Nobody Knows" + }, + { + "artist": "Big Mountain", + "position": 50, + "title": "Get Together" + }, + { + "artist": "Goodie Mob.", + "position": 51, + "title": "Cell Therapy" + }, + { + "artist": "Jon B", + "position": 52, + "title": "Pretty Girl" + }, + { + "artist": "D'Angelo", + "position": 53, + "title": "Cruisin'" + }, + { + "artist": "Blahzay Blahzay", + "position": 54, + "title": "Danger" + }, + { + "artist": "Terry Ellis", + "position": 55, + "title": "Where Ever You Are" + }, + { + "artist": "Boyz II Men", + "position": 56, + "title": "I Remember" + }, + { + "artist": "Michael Jackson", + "position": 57, + "title": "You Are Not Alone" + }, + { + "artist": "The Rembrandts", + "position": 58, + "title": "I'll Be There For You/This House Is Not A Home" + }, + { + "artist": "Def Leppard", + "position": 59, + "title": "When Love & Hate Collide" + }, + { + "artist": "L.A.D.", + "position": 60, + "title": "Ridin' Low" + }, + { + "artist": "Bush", + "position": 61, + "title": "Comedown" + }, + { + "artist": "Lisa Loeb & Nine Stories", + "position": 62, + "title": "Do You Sleep?" + }, + { + "artist": "Brandy", + "position": 63, + "title": "Brokenhearted" + }, + { + "artist": "Shai", + "position": 64, + "title": "Come With Me" + }, + { + "artist": "Immature (Featuring Smooth)", + "position": 65, + "title": "We Got It" + }, + { + "artist": "Tim McGraw", + "position": 66, + "title": "I Like It, I Love It" + }, + { + "artist": "Sarah McLachlan", + "position": 67, + "title": "I Will Remember You (Live)" + }, + { + "artist": "Los Del Rio", + "position": 68, + "title": "Macarena (Bayside Boys Mix)" + }, + { + "artist": "Monifah", + "position": 69, + "title": "I Miss You (Come Back Home) (From \"New York Undercover\")" + }, + { + "artist": "Max-A-Million", + "position": 70, + "title": "Sexual Healing" + }, + { + "artist": "L.V.", + "position": 71, + "title": "Throw Your Hands Up" + }, + { + "artist": "Raekwon", + "position": 72, + "title": "Incarcerated Scarfaces/Ice Cream" + }, + { + "artist": "The Mighty Dub Katz", + "position": 73, + "title": "Magic Carpet Ride" + }, + { + "artist": "Silk", + "position": 74, + "title": "Hooked On You" + }, + { + "artist": "The Pharcyde", + "position": 75, + "title": "Runnin'" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 76, + "title": "East 1999" + }, + { + "artist": "The Click", + "position": 77, + "title": "Hurricane" + }, + { + "artist": "No Doubt", + "position": 78, + "title": "Just A Girl" + }, + { + "artist": "Better Than Ezra", + "position": 79, + "title": "Rosealia" + }, + { + "artist": "The Outhere Brothers", + "position": 80, + "title": "Boom Boom Boom" + }, + { + "artist": "Shania Twain", + "position": 81, + "title": "(If You're Not In It For Love) I'm Outta Here!/The Woman In Me" + }, + { + "artist": "Salt-N-Pepa", + "position": 82, + "title": "Ain't Nuthin' But A She Thing" + }, + { + "artist": "Cypress Hill", + "position": 83, + "title": "Throw Your Set In The Air" + }, + { + "artist": "Kool G Rap", + "position": 84, + "title": "Fast Life" + }, + { + "artist": "Deborah Cox", + "position": 85, + "title": "Sentimental" + }, + { + "artist": "Real McCoy", + "position": 86, + "title": "Automatic Lover (Call For Love)" + }, + { + "artist": "Faith Hill", + "position": 87, + "title": "It Matters To Me" + }, + { + "artist": "Edwin McCain", + "position": 88, + "title": "Solitude" + }, + { + "artist": "Fugees", + "position": 89, + "title": "Fu-Gee-La" + }, + { + "artist": "L.B.C. Crew Feat. Tray D & South Sentrell", + "position": 90, + "title": "Beware Of My Crew (From \"A Thin Line Between Love And Hate\")" + }, + { + "artist": "Artie The 1 Man Party", + "position": 91, + "title": "A Mover La Colita" + }, + { + "artist": "Frost", + "position": 92, + "title": "East Side Rendezvous" + }, + { + "artist": "Backstreet Boys", + "position": 93, + "title": "We've Got It Goin' On" + }, + { + "artist": "Capleton", + "position": 94, + "title": "Wings Of The Morning" + }, + { + "artist": "P.M. Dawn", + "position": 95, + "title": "Sometimes I Miss You So Much (Dedicated To The Christ Consciousness)" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 96, + "title": "1st Of Tha Month" + }, + { + "artist": "Genius/GZA Featuring Inspektah Deck", + "position": 97, + "title": "Cold World" + }, + { + "artist": "Quincy Jones Introducing Tamia", + "position": 98, + "title": "You Put A Move On My Heart" + }, + { + "artist": "Method Man", + "position": 99, + "title": "The Riddler (From \"Batman Forever\")" + }, + { + "artist": "Prince", + "position": 100, + "title": "Gold" + } + ], + "title": "1995 - Hot 100" + }, + { + "songs": [ + { + "artist": "Joe Diffie", + "position": 1, + "title": "Pickup Man" + }, + { + "artist": "Tim McGraw", + "position": 2, + "title": "Not A Moment Too Soon" + }, + { + "artist": "Faith Hill", + "position": 3, + "title": "Take Me As I Am" + }, + { + "artist": "Mark Chesnutt", + "position": 4, + "title": "Goin Through The Big D" + }, + { + "artist": "Randy Travis", + "position": 5, + "title": "This Is Me" + }, + { + "artist": "Rick Trevino", + "position": 6, + "title": "Doctor Time" + }, + { + "artist": "Reba McEntire", + "position": 7, + "title": "Till You Love Me" + }, + { + "artist": "Alan Jackson", + "position": 8, + "title": "Gone Country" + }, + { + "artist": "Vince Gill", + "position": 9, + "title": "When Love Finds You" + }, + { + "artist": "Brooks", + "position": 10, + "title": "I ll Never Forgive My Heart" + }, + { + "artist": "Pam Tillis", + "position": 11, + "title": "Mi Vida Loca (My Crazy Life)" + }, + { + "artist": "Lari White", + "position": 12, + "title": "Now I Know" + }, + { + "artist": "Diamond Rio", + "position": 13, + "title": "Night Is Fallin In My Heart" + }, + { + "artist": "Mark Collie", + "position": 14, + "title": "Hard Lovin Woman" + }, + { + "artist": "John Berry", + "position": 15, + "title": "You And Only You" + }, + { + "artist": "Aaron Tippin", + "position": 16, + "title": "I Got It Honest" + }, + { + "artist": "Sawyer Brown", + "position": 17, + "title": "This Time" + }, + { + "artist": "John Michael Montgomery", + "position": 18, + "title": "If You ve Got Love" + }, + { + "artist": "Doug Stone", + "position": 19, + "title": "Little Houses" + }, + { + "artist": "Tracy Byrd", + "position": 20, + "title": "The First Step" + }, + { + "artist": "David Ball", + "position": 21, + "title": "When The Thought Of You Catches Up With Me" + }, + { + "artist": "Patty Loveless", + "position": 22, + "title": "Here I Am" + }, + { + "artist": "Clint Black", + "position": 23, + "title": "Untanglin My Mind" + }, + { + "artist": "Collin Raye", + "position": 24, + "title": "My Kind Of Girl" + }, + { + "artist": "George Strait", + "position": 25, + "title": "The Big One" + } + ], + "title": "1994 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Boyz II Men", + "position": 1, + "title": "On Bended Knee" + }, + { + "artist": "Ini Kamoze", + "position": 2, + "title": "Here Comes The Hotstepper (From \"Ready To Wear\")" + }, + { + "artist": "Real McCoy", + "position": 3, + "title": "Another Night" + }, + { + "artist": "TLC", + "position": 4, + "title": "Creep" + }, + { + "artist": "Bon Jovi", + "position": 5, + "title": "Always" + }, + { + "artist": "Brandy", + "position": 6, + "title": "I Wanna Be Down" + }, + { + "artist": "Boyz II Men", + "position": 7, + "title": "I ll Make Love To You" + }, + { + "artist": "BLACKstreet", + "position": 8, + "title": "Before I Let You Go" + }, + { + "artist": "69 Boyz", + "position": 9, + "title": "Tootsee Roll" + }, + { + "artist": "Melissa Etheridge", + "position": 10, + "title": "I m The Only One" + }, + { + "artist": "Janet Jackson", + "position": 11, + "title": "You Want This/70 s Love Groove" + }, + { + "artist": "Madonna", + "position": 12, + "title": "Secret" + }, + { + "artist": "4PM", + "position": 13, + "title": "Sukiyaki" + }, + { + "artist": "Madonna", + "position": 14, + "title": "Take A Bow" + }, + { + "artist": "20 Fingers Featuring Gillette", + "position": 15, + "title": "Short Dick Man" + }, + { + "artist": "Des ree", + "position": 16, + "title": "You Gotta Be" + }, + { + "artist": "Sheryl Crow", + "position": 17, + "title": "All I Wanna Do" + }, + { + "artist": "Gloria Estefan", + "position": 18, + "title": "Turn The Beat Around (From \"The Specialist\")" + }, + { + "artist": "Barry White", + "position": 19, + "title": "Practice What You Preach" + }, + { + "artist": "Pretenders", + "position": 20, + "title": "I ll Stand By You" + }, + { + "artist": "Crystal Waters", + "position": 21, + "title": "100% Pure Love" + }, + { + "artist": "Corona", + "position": 22, + "title": "The Rhythm Of The Night" + }, + { + "artist": "Vanessa Williams", + "position": 23, + "title": "The Sweetest Days" + }, + { + "artist": "Tom Petty", + "position": 24, + "title": "You Don t Know How It Feels" + }, + { + "artist": "Hootie", + "position": 25, + "title": "Hold My Hand" + }, + { + "artist": "Four Seasons", + "position": 26, + "title": "December 1963 (Oh, What A Night)" + }, + { + "artist": "Ace Of Base", + "position": 27, + "title": "Living In Danger" + }, + { + "artist": "Jade", + "position": 28, + "title": "Every Day Of The Week" + }, + { + "artist": "Immature", + "position": 29, + "title": "Constantly" + }, + { + "artist": "Immature", + "position": 30, + "title": "Never Lie" + }, + { + "artist": "Deadeye Dick", + "position": 31, + "title": "New Age Girl (From \"Dumb And Dumber\")" + }, + { + "artist": "R.E.M.", + "position": 32, + "title": "What s The Frequency, Kenneth?" + }, + { + "artist": "Toni Braxton", + "position": 33, + "title": "I Belong To You/How Many Ways" + }, + { + "artist": "Mary J. Blige", + "position": 34, + "title": "Be Happy" + }, + { + "artist": "Craig Mack", + "position": 35, + "title": "Flava In Ya Ear" + }, + { + "artist": "Babyface", + "position": 36, + "title": "When Can I See You" + }, + { + "artist": "John Mellencamp With Me Shell Ndegeocello", + "position": 37, + "title": "Wild Night" + }, + { + "artist": "Zhane", + "position": 38, + "title": "Shame (From \"A Low Down Dirty Shame\")" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 39, + "title": "Thuggish Ruggish Bone" + }, + { + "artist": "Scarface", + "position": 40, + "title": "I Never Seen A Man Cry (aka I Seen A Man Die)" + }, + { + "artist": "Brownstone", + "position": 41, + "title": "If You Love Me" + }, + { + "artist": "Rappin 4-Tay", + "position": 42, + "title": "Playaz Club" + }, + { + "artist": "Sting", + "position": 43, + "title": "When We Dance" + }, + { + "artist": "N II U", + "position": 44, + "title": "I Miss You" + }, + { + "artist": "Method Man", + "position": 45, + "title": "Bring The Pain" + }, + { + "artist": "Jon Secada", + "position": 46, + "title": "Mental Picture" + }, + { + "artist": "Changing Faces", + "position": 47, + "title": "Foolin Around" + }, + { + "artist": "Aerosmith", + "position": 48, + "title": "Blind Man" + }, + { + "artist": "B.M.U. (Black Men United)", + "position": 49, + "title": "U Will Know (From \"Jason s Lyric\")" + }, + { + "artist": "Candlebox", + "position": 50, + "title": "Far Behind" + }, + { + "artist": "Warren G", + "position": 51, + "title": "Do You See" + }, + { + "artist": "Da Brat", + "position": 52, + "title": "Fa All Y all" + }, + { + "artist": "Keith Murray", + "position": 53, + "title": "The Most Beautifullest Thing In This World" + }, + { + "artist": "John Mellencamp", + "position": 54, + "title": "Dance Naked" + }, + { + "artist": "Elton John", + "position": 55, + "title": "Circle Of Life (From \"The Lion King\")" + }, + { + "artist": "Amy Grant With Vince Gill", + "position": 56, + "title": "House Of Love" + }, + { + "artist": "Lucas", + "position": 57, + "title": "Lucas With The Lid Off" + }, + { + "artist": "Toad The Wet Sprocket", + "position": 58, + "title": "Something s Always Wrong" + }, + { + "artist": "Luther Vandross", + "position": 59, + "title": "Always And Forever" + }, + { + "artist": "Heavy D", + "position": 60, + "title": "Black Coffee" + }, + { + "artist": "Hole", + "position": 61, + "title": "Doll Parts" + }, + { + "artist": "Guns N Roses", + "position": 62, + "title": "Sympathy For The Devil (\"Interview With The Vampire\")" + }, + { + "artist": "The Notorious B.I.G.", + "position": 63, + "title": "Juicy/Unbelievable" + }, + { + "artist": "Andru Donalds", + "position": 64, + "title": "Mishale" + }, + { + "artist": "2 Unlimited", + "position": 65, + "title": "Get Ready For This" + }, + { + "artist": "69 Boyz", + "position": 66, + "title": "Kitty Kitty" + }, + { + "artist": "Aaliyah", + "position": 67, + "title": "At Your Best (You Are Love)" + }, + { + "artist": "Joe Diffie", + "position": 68, + "title": "Pickup Man" + }, + { + "artist": "Urge Overkill", + "position": 69, + "title": "Girl, You ll Be A Woman Soon (From \"Pulp Fiction\")" + }, + { + "artist": "Luther Vandross", + "position": 70, + "title": "Endless Love" + }, + { + "artist": "Harry Connick, Jr.", + "position": 71, + "title": "(I Could Only) Whisper Your Name" + }, + { + "artist": "Eagles", + "position": 72, + "title": "Get Over It" + }, + { + "artist": "Craig Mack", + "position": 73, + "title": "Get Down" + }, + { + "artist": "Keith Sweat (Featuring Kut Klose)", + "position": 74, + "title": "Get Up On It" + }, + { + "artist": "Martin Page", + "position": 75, + "title": "In The House Of Stone And Light" + }, + { + "artist": "Silk", + "position": 76, + "title": "I Can Go Deep (From \"A Low Down Dirty Shame\")" + }, + { + "artist": "Mazzy Star", + "position": 77, + "title": "Fade Into You" + }, + { + "artist": "Lords Of The Underground", + "position": 78, + "title": "Tic Toc" + }, + { + "artist": "The Rolling Stones", + "position": 79, + "title": "Out Of Tears" + }, + { + "artist": "Reba McEntire", + "position": 80, + "title": "Till You Love Me" + }, + { + "artist": "Sheryl Crow", + "position": 81, + "title": "Strong Enough" + }, + { + "artist": "Steve Perry", + "position": 82, + "title": "Missing You" + }, + { + "artist": "The Flaming Lips", + "position": 83, + "title": "She Don t Use Jelly" + }, + { + "artist": "Huey Lewis", + "position": 84, + "title": "But It s Alright" + }, + { + "artist": "Tevin Campbell", + "position": 85, + "title": "Don t Say Goodbye Girl" + }, + { + "artist": "Shaquille O Neal", + "position": 86, + "title": "Biological Didn t Bother" + }, + { + "artist": "Anita Baker", + "position": 87, + "title": "I Apologize" + }, + { + "artist": "Joshua Kadison", + "position": 88, + "title": "Picture Postcards From L.A." + }, + { + "artist": "Nine", + "position": 89, + "title": "Whutcha Want?" + }, + { + "artist": "Lil Suzy", + "position": 90, + "title": "Promise Me" + }, + { + "artist": "Jeff Foxworthy", + "position": 91, + "title": "Redneck Stomp" + }, + { + "artist": "Freedy Johnston", + "position": 92, + "title": "Bad Reputation" + }, + { + "artist": "Dru Down", + "position": 93, + "title": "Pimp Of The Year" + }, + { + "artist": "The Murmurs", + "position": 94, + "title": "You Suck" + }, + { + "artist": "Liz Phair", + "position": 95, + "title": "Supernova" + }, + { + "artist": "Fu-Schnickens", + "position": 96, + "title": "Breakdown" + }, + { + "artist": "Weezer", + "position": 97, + "title": "Undone - The Sweater Song" + }, + { + "artist": "Tracy Lawrence", + "position": 98, + "title": "I See It Now" + }, + { + "artist": "Anita Baker", + "position": 99, + "title": "Body" + }, + { + "artist": "Doctor Dre", + "position": 100, + "title": "Back Up Off Me!" + } + ], + "title": "1994 - Hot 100" + }, + { + "songs": [ + { + "artist": "Doug Supernaw", + "position": 1, + "title": "I Don't Call Him Daddy" + }, + { + "artist": "Trisha Yearwood", + "position": 2, + "title": "The Song Remembers When" + }, + { + "artist": "Dwight Yoakam", + "position": 3, + "title": "Fast As You" + }, + { + "artist": "Tanya Tucker", + "position": 4, + "title": "Soon" + }, + { + "artist": "Sawyer Brown", + "position": 5, + "title": "The Boys & Me" + }, + { + "artist": "Faith Hill", + "position": 6, + "title": "Wild One" + }, + { + "artist": "Doug Stone", + "position": 7, + "title": "I Never Knew Love" + }, + { + "artist": "Wynonna", + "position": 8, + "title": "Is It Over Yet" + }, + { + "artist": "Billy Ray Cyrus", + "position": 9, + "title": "Somebody New" + }, + { + "artist": "Clay Walker", + "position": 10, + "title": "Live Until I Die" + }, + { + "artist": "Shenandoah", + "position": 11, + "title": "I Want To Be Loved Like That" + }, + { + "artist": "Little Texas", + "position": 12, + "title": "God Blessed Texas" + }, + { + "artist": "Clint Black", + "position": 13, + "title": "State Of Mind" + }, + { + "artist": "Joe Diffie", + "position": 14, + "title": "John Deere Green" + }, + { + "artist": "Sammy Kershaw", + "position": 15, + "title": "Queen Of My Double Wide Trailer" + }, + { + "artist": "John Michael Montgomery", + "position": 16, + "title": "I Swear" + }, + { + "artist": "Toby Keith", + "position": 17, + "title": "A Little Less Talk And A Lot More Action" + }, + { + "artist": "Boy Howdy", + "position": 18, + "title": "She'd Give Anything" + }, + { + "artist": "Patty Loveless", + "position": 19, + "title": "You Will" + }, + { + "artist": "Aaron Tippin", + "position": 20, + "title": "The Call Of The Wild" + }, + { + "artist": "Tracy Lawrence", + "position": 21, + "title": "My Second Home" + }, + { + "artist": "John Berry", + "position": 22, + "title": "Kiss Me In The Car" + }, + { + "artist": "Garth Brooks", + "position": 23, + "title": "American Honky-Tonk Bar Association" + }, + { + "artist": "Hal Ketchum", + "position": 24, + "title": "Someplace Far Away (Careful What You're Dreaming)" + }, + { + "artist": "Billy Dean", + "position": 25, + "title": "We Just Disagree" + } + ], + "title": "1993 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Mariah Carey", + "position": 1, + "title": "Hero" + }, + { + "artist": "Janet Jackson", + "position": 2, + "title": "Again" + }, + { + "artist": "Ace Of Base", + "position": 3, + "title": "All That She Wants" + }, + { + "artist": "Meat Loaf", + "position": 4, + "title": "I'd Do Anything For Love (But I Won't Do That)" + }, + { + "artist": "Bryan Adams/Rod Stewart/Sting", + "position": 5, + "title": "All For Love" + }, + { + "artist": "DRS", + "position": 6, + "title": "Gangsta Lean" + }, + { + "artist": "Salt-N-Pepa", + "position": 7, + "title": "Shoop" + }, + { + "artist": "Toni Braxton", + "position": 8, + "title": "Breathe Again" + }, + { + "artist": "Snoop Dogg", + "position": 9, + "title": "What's My Name?" + }, + { + "artist": "Michael Bolton", + "position": 10, + "title": "Said I Loved You...But I Lied" + }, + { + "artist": "Bryan Adams", + "position": 11, + "title": "Please Forgive Me" + }, + { + "artist": "Tevin Campbell", + "position": 12, + "title": "Can We Talk" + }, + { + "artist": "Tag Team", + "position": 13, + "title": "Whoomp! (There It Is)" + }, + { + "artist": "Xscape", + "position": 14, + "title": "Just Kickin' It" + }, + { + "artist": "2Pac", + "position": 15, + "title": "Keep Ya Head Up" + }, + { + "artist": "The Cranberries", + "position": 16, + "title": "Linger" + }, + { + "artist": "Zhane", + "position": 17, + "title": "Hey Mr. D.J." + }, + { + "artist": "10,000 Maniacs", + "position": 18, + "title": "Because The Night" + }, + { + "artist": "Domino", + "position": 19, + "title": "Getto Jam" + }, + { + "artist": "Culture Beat", + "position": 20, + "title": "Mr. Vain" + }, + { + "artist": "Babyface", + "position": 21, + "title": "Never Keeping Secrets" + }, + { + "artist": "Haddaway", + "position": 22, + "title": "What Is Love" + }, + { + "artist": "Jodeci", + "position": 23, + "title": "Cry For You" + }, + { + "artist": "Jimmy Cliff", + "position": 24, + "title": "I Can See Clearly Now (From \"Cool Runnings\")" + }, + { + "artist": "K7", + "position": 25, + "title": "Come Baby Come" + }, + { + "artist": "Mariah Carey", + "position": 26, + "title": "Dreamlover" + }, + { + "artist": "R. Kelly", + "position": 27, + "title": "Sex Me (Parts I & II)" + }, + { + "artist": "Celine Dion", + "position": 28, + "title": "The Power Of Love" + }, + { + "artist": "Billy Joel", + "position": 29, + "title": "All About Soul" + }, + { + "artist": "Hi-Five", + "position": 30, + "title": "Never Should've Let You Go (From \"Sister Act 2\")" + }, + { + "artist": "Color Me Badd", + "position": 31, + "title": "Time And Chance" + }, + { + "artist": "Gabrielle", + "position": 32, + "title": "Dreams" + }, + { + "artist": "Joshua Kadison", + "position": 33, + "title": "Jessie" + }, + { + "artist": "Queen Latifah", + "position": 34, + "title": "U.N.I.T.Y." + }, + { + "artist": "Aerosmith", + "position": 35, + "title": "Cryin'" + }, + { + "artist": "Tony Toni Tone", + "position": 36, + "title": "Anniversary" + }, + { + "artist": "Phil Collins", + "position": 37, + "title": "Both Sides Of The Story" + }, + { + "artist": "Billy Joel", + "position": 38, + "title": "The River Of Dreams" + }, + { + "artist": "Shaquille O'Neal", + "position": 39, + "title": "(I Know I Got) Skillz" + }, + { + "artist": "Inner Circle", + "position": 40, + "title": "Sweat (A La La La La Long)" + }, + { + "artist": "Blind Melon", + "position": 41, + "title": "No Rain" + }, + { + "artist": "Xscape", + "position": 42, + "title": "Understanding" + }, + { + "artist": "Janet Jackson", + "position": 43, + "title": "If" + }, + { + "artist": "Zapp & Roger", + "position": 44, + "title": "Slow And Easy" + }, + { + "artist": "Aerosmith", + "position": 45, + "title": "Amazing" + }, + { + "artist": "Gin Blossoms", + "position": 46, + "title": "Found Out About You" + }, + { + "artist": "Mr. Big", + "position": 47, + "title": "Wild World" + }, + { + "artist": "Toni Braxton", + "position": 48, + "title": "Another Sad Love Song" + }, + { + "artist": "Eazy-E", + "position": 49, + "title": "Real Muthaphuckkin G's" + }, + { + "artist": "Def Leppard", + "position": 50, + "title": "Two Steps Behind (From \"Last Action Hero\")" + }, + { + "artist": "UB40", + "position": 51, + "title": "Higher Ground" + }, + { + "artist": "Rod Stewart", + "position": 52, + "title": "Reason To Believe" + }, + { + "artist": "Boyz II Men", + "position": 53, + "title": "Let It Snow" + }, + { + "artist": "US 3", + "position": 54, + "title": "Cantaloop (Flip Fantasia)" + }, + { + "artist": "A Tribe Called Quest", + "position": 55, + "title": "Award Tour" + }, + { + "artist": "Elton John & Kiki Dee", + "position": 56, + "title": "True Love" + }, + { + "artist": "Intro", + "position": 57, + "title": "Come Inside" + }, + { + "artist": "Lisette Melendez", + "position": 58, + "title": "Goody Goody" + }, + { + "artist": "Def Leppard", + "position": 59, + "title": "Miss You In A Heartbeat" + }, + { + "artist": "Collage", + "position": 60, + "title": "I'll Be Loving You" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 61, + "title": "Soul To Squeeze (From \"Coneheads\")" + }, + { + "artist": "Rick Astley", + "position": 62, + "title": "Hopelessly" + }, + { + "artist": "Das EFX", + "position": 63, + "title": "Freakit" + }, + { + "artist": "R.E.M.", + "position": 64, + "title": "Everybody Hurts" + }, + { + "artist": "Little Texas", + "position": 65, + "title": "God Blessed Texas" + }, + { + "artist": "U2", + "position": 66, + "title": "Stay (Faraway, So Close!)" + }, + { + "artist": "The Lemonheads", + "position": 67, + "title": "Into Your Arms" + }, + { + "artist": "Expose", + "position": 68, + "title": "As Long As I Can Dream" + }, + { + "artist": "The Breeders", + "position": 69, + "title": "Cannonball" + }, + { + "artist": "Shai", + "position": 70, + "title": "Yours" + }, + { + "artist": "The Goodmen", + "position": 71, + "title": "Give It Up" + }, + { + "artist": "Kenny G", + "position": 72, + "title": "Sentimental" + }, + { + "artist": "Mista Grimm", + "position": 73, + "title": "Indo Smoke (From \"Poetic Justice\")" + }, + { + "artist": "Ice Cube", + "position": 74, + "title": "Really Doe" + }, + { + "artist": "Wu-Tang Clan", + "position": 75, + "title": "Method Man" + }, + { + "artist": "Jade", + "position": 76, + "title": "Looking For Mr. Do Right" + }, + { + "artist": "Taylor Dayne", + "position": 77, + "title": "Send Me A Lover" + }, + { + "artist": "Dr. Dre", + "position": 78, + "title": "Let Me Ride" + }, + { + "artist": "Lisa Keith", + "position": 79, + "title": "Better Than You" + }, + { + "artist": "Dwight Yoakam", + "position": 80, + "title": "Fast As You" + }, + { + "artist": "Souls Of Mischief", + "position": 81, + "title": "93 'Til Infinity" + }, + { + "artist": "Jazzy Jeff & The Fresh Prince", + "position": 82, + "title": "I'm Looking For The One (To Be With Me)" + }, + { + "artist": "Haddaway", + "position": 83, + "title": "Life (Everybody Needs Somebody To Love)" + }, + { + "artist": "Chantay Savage", + "position": 84, + "title": "Betcha'll Never Find" + }, + { + "artist": "Trisha Yearwood", + "position": 85, + "title": "The Song Remembers When" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 86, + "title": "Mary Jane's Last Dance" + }, + { + "artist": "Heart", + "position": 87, + "title": "Will You Be There (In The Morning)" + }, + { + "artist": "Kate Bush", + "position": 88, + "title": "Rubberband Girl" + }, + { + "artist": "Rozalla", + "position": 89, + "title": "I Love Music (From \"Carlito's Way\")" + }, + { + "artist": "Robin S.", + "position": 90, + "title": "Love For Love" + }, + { + "artist": "Joe Diffie", + "position": 91, + "title": "John Deere Green" + }, + { + "artist": "Kris Kross", + "position": 92, + "title": "I'm Real" + }, + { + "artist": "Reality", + "position": 93, + "title": "Yolanda" + }, + { + "artist": "RAab", + "position": 94, + "title": "Foreplay" + }, + { + "artist": "Bell Biv Devoe", + "position": 95, + "title": "Something In Your Eyes" + }, + { + "artist": "Nightcrawlers", + "position": 96, + "title": "Push The Feeling On" + }, + { + "artist": "Clay Walker", + "position": 97, + "title": "What's It To You" + }, + { + "artist": "Lords Of The Underground", + "position": 98, + "title": "Here Come The Lords" + }, + { + "artist": "Inner Circle", + "position": 99, + "title": "Rock With You" + }, + { + "artist": "MC Ren", + "position": 100, + "title": "Same Ol' Shit" + } + ], + "title": "1993 - Hot 100" + }, + { + "songs": [ + { + "artist": "Vince Gill", + "position": 1, + "title": "Don t Let Our Love Start Slippin Away" + }, + { + "artist": "Alan Jackson", + "position": 2, + "title": "She s Got The Rhythm (And I Got The Blues)" + }, + { + "artist": "Garth Brooks", + "position": 3, + "title": "Somewhere Other Than The Night" + }, + { + "artist": "Hal Ketchum", + "position": 4, + "title": "Sure Love" + }, + { + "artist": "Clint Black", + "position": 5, + "title": "Burn One Down" + }, + { + "artist": "George Strait", + "position": 6, + "title": "I Cross My Heart" + }, + { + "artist": "Trisha Yearwood", + "position": 7, + "title": "Walkaway Joe" + }, + { + "artist": "Brooks", + "position": 8, + "title": "Lost And Found" + }, + { + "artist": "Restless Heart", + "position": 9, + "title": "When She Cries" + }, + { + "artist": "Tracy Lawrence", + "position": 10, + "title": "Somebody Paints The Wall" + }, + { + "artist": "Randy Travis", + "position": 11, + "title": "Look Heart, No Hands" + }, + { + "artist": "Lee Roy Parnell", + "position": 12, + "title": "Love Without Mercy" + }, + { + "artist": "Reba McEntire", + "position": 13, + "title": "Take It Back" + }, + { + "artist": "Sammy Kershaw", + "position": 14, + "title": "Anywhere But Here" + }, + { + "artist": "John Michael Montgomery", + "position": 15, + "title": "Life s A Dance" + }, + { + "artist": "Ricky Van Shelton", + "position": 16, + "title": "Wild Man" + }, + { + "artist": "Doug Stone", + "position": 17, + "title": "Too Busy Being In Love" + }, + { + "artist": "Tanya Tucker", + "position": 18, + "title": "Two Sparrows In A Hurricane" + }, + { + "artist": "Alabama", + "position": 19, + "title": "I m In A Hurry (And Don t Know Why)" + }, + { + "artist": "Diamond Rio", + "position": 20, + "title": "In A Week Or Two" + }, + { + "artist": "Little Texas", + "position": 21, + "title": "What Were You Thinkin" + }, + { + "artist": "Travis Tritt", + "position": 22, + "title": "Can I Trust You With My Heart" + }, + { + "artist": "Chris LeDoux", + "position": 23, + "title": "Cadillac Ranch" + }, + { + "artist": "John Anderson", + "position": 24, + "title": "Let Go Of The Stone" + }, + { + "artist": "Wynonna", + "position": 25, + "title": "My Strongest Weakness" + } + ], + "title": "1992 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Whitney Houston", + "position": 1, + "title": "I Will Always Love You (From \"The Bodyguard\")" + }, + { + "artist": "Wreckx-N-Effect", + "position": 2, + "title": "Rump Shaker" + }, + { + "artist": "Shai", + "position": 3, + "title": "If I Ever Fall In Love" + }, + { + "artist": "Boyz II Men", + "position": 4, + "title": "In The Still Of The Nite (From \"The Jacksons\")" + }, + { + "artist": "P.M. Dawn", + "position": 5, + "title": "I d Die Without You (From \"Boomerang\")" + }, + { + "artist": "Snap", + "position": 6, + "title": "Rhythm Is A Dancer" + }, + { + "artist": "Bobby Brown", + "position": 7, + "title": "Good Enough" + }, + { + "artist": "Shanice", + "position": 8, + "title": "Saving Forever For You (From \"Beverly Hills, 90210\")" + }, + { + "artist": "The Heights", + "position": 9, + "title": "How Do You Talk To An Angel" + }, + { + "artist": "Mary J. Blige", + "position": 10, + "title": "Real Love" + }, + { + "artist": "TLC", + "position": 11, + "title": "What About Your Friends" + }, + { + "artist": "Michael Bolton", + "position": 12, + "title": "To Love Somebody" + }, + { + "artist": "Madonna", + "position": 13, + "title": "Deeper And Deeper" + }, + { + "artist": "Saigon Kick", + "position": 14, + "title": "Love Is On The Way" + }, + { + "artist": "Jon Secada", + "position": 15, + "title": "Do You Believe In Us" + }, + { + "artist": "Eric Clapton", + "position": 16, + "title": "Layla" + }, + { + "artist": "Spin Doctors", + "position": 17, + "title": "Little Miss Can t Be Wrong" + }, + { + "artist": "Restless Heart", + "position": 18, + "title": "When She Cries" + }, + { + "artist": "Go West", + "position": 19, + "title": "Faithful" + }, + { + "artist": "Annie Lennox", + "position": 20, + "title": "Walking On Broken Glass" + }, + { + "artist": "Boyz II Men", + "position": 21, + "title": "End Of The Road (From \"Boomerang\")" + }, + { + "artist": "Mad Cobra", + "position": 22, + "title": "Flex" + }, + { + "artist": "Damn Yankees", + "position": 23, + "title": "Where You Goin Now" + }, + { + "artist": "N2Deep", + "position": 24, + "title": "Back To The Hotel" + }, + { + "artist": "Genesis", + "position": 25, + "title": "Never A Time" + }, + { + "artist": "Elton John", + "position": 26, + "title": "The Last Song" + }, + { + "artist": "Charles", + "position": 27, + "title": "Would I Lie To You?" + }, + { + "artist": "R.E.M.", + "position": 28, + "title": "Drive" + }, + { + "artist": "Prince And The New Power Generation", + "position": 29, + "title": "7" + }, + { + "artist": "Patty Smyth", + "position": 30, + "title": "Sometimes Love Just Ain t Enough" + }, + { + "artist": "Portrait", + "position": 31, + "title": "Here We Go Again!" + }, + { + "artist": "House Of Pain", + "position": 32, + "title": "Jump Around" + }, + { + "artist": "Expose", + "position": 33, + "title": "I Wish The Phone Would Ring" + }, + { + "artist": "Toad The Wet Sprocket", + "position": 34, + "title": "Walk On The Ocean" + }, + { + "artist": "U2", + "position": 35, + "title": "Who s Gonna Ride Your Wild Horses" + }, + { + "artist": "Arrested Development", + "position": 36, + "title": "People Everyday" + }, + { + "artist": "Bon Jovi", + "position": 37, + "title": "Keep The Faith" + }, + { + "artist": "En Vogue", + "position": 38, + "title": "Give It Up, Turn It Loose" + }, + { + "artist": "Lo-Key?", + "position": 39, + "title": "I Got A Thang 4 Ya!" + }, + { + "artist": "En Vogue", + "position": 40, + "title": "Free Your Mind" + }, + { + "artist": "Bell Biv Devoe", + "position": 41, + "title": "Gangsta" + }, + { + "artist": "Peabo Bryson", + "position": 42, + "title": "A Whole New World (Aladdin s Theme)" + }, + { + "artist": "The S.O.U.L. S.Y.S.T.E.M.", + "position": 43, + "title": "It s Gonna Be A Lovely Day" + }, + { + "artist": "TLC", + "position": 44, + "title": "Baby-Baby-Baby" + }, + { + "artist": "Shabba Ranks (Featuring Johnny Gill)", + "position": 45, + "title": "Slow And Sexy" + }, + { + "artist": "Toni Braxton", + "position": 46, + "title": "Love Shoulda Brought You Home (From \"Boomerang\")" + }, + { + "artist": "Trey Lorenz", + "position": 47, + "title": "Someone To Hold" + }, + { + "artist": "Jon Secada", + "position": 48, + "title": "Just Another Day" + }, + { + "artist": "Sade", + "position": 49, + "title": "No Ordinary Love" + }, + { + "artist": "Celine Dion", + "position": 50, + "title": "Love Can Move Mountains" + }, + { + "artist": "Def Leppard", + "position": 51, + "title": "Have You Ever Needed Someone So Bad" + }, + { + "artist": "Dan Baird", + "position": 52, + "title": "I Love You Period" + }, + { + "artist": "Arrested Development", + "position": 53, + "title": "Mr. Wendal" + }, + { + "artist": "Michael Jackson", + "position": 54, + "title": "Heal The World" + }, + { + "artist": "After 7", + "position": 55, + "title": "Baby I m For Real/Natural High" + }, + { + "artist": "Hi-Five", + "position": 56, + "title": "Quality Time" + }, + { + "artist": "Mary J. Blige", + "position": 57, + "title": "Reminisce" + }, + { + "artist": "Shakespear s Sister", + "position": 58, + "title": "I Don t Care" + }, + { + "artist": "Madonna", + "position": 59, + "title": "Erotica" + }, + { + "artist": "Def Leppard", + "position": 60, + "title": "Stand Up (Kick Love Into Motion)" + }, + { + "artist": "Father M.C.", + "position": 61, + "title": "Everything s Gonna Be Alright" + }, + { + "artist": "Paperboy", + "position": 62, + "title": "Ditty" + }, + { + "artist": "Michael W. Smith", + "position": 63, + "title": "I Will Be Here For You" + }, + { + "artist": "Color Me Badd", + "position": 64, + "title": "Forever Love (From \"Mo Money\")" + }, + { + "artist": "Peter Gabriel", + "position": 65, + "title": "Steam" + }, + { + "artist": "10,000 Maniacs", + "position": 66, + "title": "These Are Days" + }, + { + "artist": "House Of Pain", + "position": 67, + "title": "Shamrocks And Shenanigans (Boom Shalock Lock Boom)" + }, + { + "artist": "Lighter Shade Of Brown", + "position": 68, + "title": "Homies" + }, + { + "artist": "The Soup Dragons", + "position": 69, + "title": "Pleasure" + }, + { + "artist": "Chuckii Booker", + "position": 70, + "title": "Games" + }, + { + "artist": "Firehouse", + "position": 71, + "title": "When I Look Into Your Eyes" + }, + { + "artist": "Positive K", + "position": 72, + "title": "I Got A Man" + }, + { + "artist": "George LaMond", + "position": 73, + "title": "Baby, I Believe In You" + }, + { + "artist": "Goddess", + "position": 74, + "title": "Sexual" + }, + { + "artist": "Classic Example", + "position": 75, + "title": "It s Alright (From \"South Central\")" + }, + { + "artist": "Jade", + "position": 76, + "title": "Don t Walk Away" + }, + { + "artist": "Richard Marx", + "position": 77, + "title": "Chains Around My Heart" + }, + { + "artist": "Al B. Sure!", + "position": 78, + "title": "Right Now" + }, + { + "artist": "Jeremy Jordan", + "position": 79, + "title": "The Right Kind Of Love (From \"Beverly Hills, 90210\")" + }, + { + "artist": "Kenny G", + "position": 80, + "title": "Forever In Love" + }, + { + "artist": "Kris Kross", + "position": 81, + "title": "I Missed The Bus" + }, + { + "artist": "Ice Cube", + "position": 82, + "title": "Wicked" + }, + { + "artist": "Smart E s", + "position": 83, + "title": "Sesame s Treet" + }, + { + "artist": "Wynonna", + "position": 84, + "title": "No One Else On Earth" + }, + { + "artist": "Megadeth", + "position": 85, + "title": "Symphony Of Destruction" + }, + { + "artist": "Guns N Roses", + "position": 86, + "title": "Yesterdays" + }, + { + "artist": "Bad Company", + "position": 87, + "title": "This Could Be The One" + }, + { + "artist": "Sound Factory", + "position": 88, + "title": "Understand This Groove" + }, + { + "artist": "Billy Ray Cyrus", + "position": 89, + "title": "Could ve Been Me" + }, + { + "artist": "Home Team", + "position": 90, + "title": "Pick It Up" + }, + { + "artist": "Cathy Dennis", + "position": 91, + "title": "Irresistible" + }, + { + "artist": "Chante Moore", + "position": 92, + "title": "Love s Taken Over" + }, + { + "artist": "Patty Smyth", + "position": 93, + "title": "No Mistakes" + }, + { + "artist": "Firehouse", + "position": 94, + "title": "Sleeping With You" + }, + { + "artist": "R. Kelly", + "position": 95, + "title": "Slow Dance (Hey Mr. DJ)" + }, + { + "artist": "Grand Puba", + "position": 96, + "title": "360 Degrees (What Goes Around)" + }, + { + "artist": "CeCe Peniston", + "position": 97, + "title": "Crazy Love" + }, + { + "artist": "AB Logic", + "position": 98, + "title": "Get Up (Move Boy Move)" + }, + { + "artist": "Arrested Development", + "position": 99, + "title": "Revolution (From \"Malcolm X\")" + }, + { + "artist": "Tevin Campbell", + "position": 100, + "title": "Alone With You" + } + ], + "title": "1992 - Hot 100" + }, + { + "songs": [ + { + "artist": "Brooks", + "position": 1, + "title": "My Next Broken Heart" + }, + { + "artist": "Reba McEntire", + "position": 2, + "title": "For My Broken Heart" + }, + { + "artist": "Collin Raye", + "position": 3, + "title": "Love, Me" + }, + { + "artist": "Restless Heart", + "position": 4, + "title": "You Can Depend On Me" + }, + { + "artist": "George Strait", + "position": 5, + "title": "The Chill Of An Early Fall" + }, + { + "artist": "Vince Gill", + "position": 6, + "title": "Look At Us" + }, + { + "artist": "Steve Wariner", + "position": 7, + "title": "Leave Him Out Of This" + }, + { + "artist": "Billy Dean", + "position": 8, + "title": "You Don t Count The Cost" + }, + { + "artist": "Tanya Tucker", + "position": 9, + "title": "(Without You) What Do I Do With Me" + }, + { + "artist": "Tracy Lawrence", + "position": 10, + "title": "Sticks And Stones" + }, + { + "artist": "Sammy Kershaw", + "position": 11, + "title": "Cadillac Style" + }, + { + "artist": "Garth Brooks", + "position": 12, + "title": "Shameless" + }, + { + "artist": "Little Texas", + "position": 13, + "title": "Some Guys Have All The Love" + }, + { + "artist": "The Remingtons", + "position": 14, + "title": "A Long Time Ago" + }, + { + "artist": "Doug Stone", + "position": 15, + "title": "A Jukebox With A Country Song" + }, + { + "artist": "Alabama", + "position": 16, + "title": "Then Again" + }, + { + "artist": "Randy Travis", + "position": 17, + "title": "Forever Together" + }, + { + "artist": "Mary Chapin Carpenter", + "position": 18, + "title": "Going Out Tonight" + }, + { + "artist": "Hal Ketchum", + "position": 19, + "title": "I Know Where Love Lives" + }, + { + "artist": "Sawyer Brown", + "position": 20, + "title": "The Dirt Road" + }, + { + "artist": "Suzy Bogguss", + "position": 21, + "title": "Someday Soon" + }, + { + "artist": "Mark Chesnutt", + "position": 22, + "title": "Broken Promise Land" + }, + { + "artist": "Travis Tritt With Marty Stuart", + "position": 23, + "title": "The Whiskey Ain t Workin" + }, + { + "artist": "Rob Crosby", + "position": 24, + "title": "Still Burnin For You" + }, + { + "artist": "Travis Tritt", + "position": 25, + "title": "Anymore" + } + ], + "title": "1991 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Michael Jackson", + "position": 1, + "title": "Black Or White" + }, + { + "artist": "Boyz II Men", + "position": 2, + "title": "It s So Hard To Say Goodbye To Yesterday" + }, + { + "artist": "Color Me Badd", + "position": 3, + "title": "All 4 Love" + }, + { + "artist": "P.M. Dawn", + "position": 4, + "title": "Set Adrift On Memory Bliss" + }, + { + "artist": "Michael Bolton", + "position": 5, + "title": "When A Man Loves A Woman" + }, + { + "artist": "Mariah Carey", + "position": 6, + "title": "Can t Let Go" + }, + { + "artist": "Paula Abdul", + "position": 7, + "title": "Blowing Kisses In The Wind" + }, + { + "artist": "CeCe Peniston", + "position": 8, + "title": "Finally" + }, + { + "artist": "M.C. Hammer", + "position": 9, + "title": "2 Legit 2 Quit" + }, + { + "artist": "Marky Mark", + "position": 10, + "title": "Wildside" + }, + { + "artist": "Amy Grant", + "position": 11, + "title": "That s What Love Is For" + }, + { + "artist": "Richard Marx", + "position": 12, + "title": "Keep Coming Back" + }, + { + "artist": "Genesis", + "position": 13, + "title": "No Son Of Mine" + }, + { + "artist": "Prince And The N.P.G.", + "position": 14, + "title": "Cream" + }, + { + "artist": "Naughty By Nature", + "position": 15, + "title": "O.P.P." + }, + { + "artist": "Salt-N-Pepa", + "position": 16, + "title": "Let s Talk About Sex" + }, + { + "artist": "Nirvana", + "position": 17, + "title": "Smells Like Teen Spirit" + }, + { + "artist": "Guns N Roses", + "position": 18, + "title": "Don t Cry" + }, + { + "artist": "George Michael/Elton John", + "position": 19, + "title": "Don t Let The Sun Go Down On Me" + }, + { + "artist": "M.C. Hammer", + "position": 20, + "title": "Addams Groove" + }, + { + "artist": "Bryan Adams", + "position": 21, + "title": "Can t Stop This Thing We Started" + }, + { + "artist": "Gloria Estefan", + "position": 22, + "title": "Live For Loving You" + }, + { + "artist": "Roberta Flack With Maxi Priest", + "position": 23, + "title": "Set The Night To Music" + }, + { + "artist": "Rod Stewart", + "position": 24, + "title": "Broken Arrow" + }, + { + "artist": "Shanice", + "position": 25, + "title": "I Love Your Smile" + }, + { + "artist": "U2", + "position": 26, + "title": "Mysterious Ways" + }, + { + "artist": "Natural Selection", + "position": 27, + "title": "Do Anything" + }, + { + "artist": "Jodeci", + "position": 28, + "title": "Forever My Lady" + }, + { + "artist": "Karyn White", + "position": 29, + "title": "Romantic" + }, + { + "artist": "Prince And The N.P.G.", + "position": 30, + "title": "Diamonds And Pearls" + }, + { + "artist": "Lisa Stansfield", + "position": 31, + "title": "Change" + }, + { + "artist": "Tevin Campbell", + "position": 32, + "title": "Tell Me What You Want Me To Do" + }, + { + "artist": "Nia Peeples", + "position": 33, + "title": "Street Of Dreams" + }, + { + "artist": "Roxette", + "position": 34, + "title": "Spending My Time" + }, + { + "artist": "Karyn White", + "position": 35, + "title": "The Way I Feel About You" + }, + { + "artist": "Stacy Earl", + "position": 36, + "title": "Love Me All Up" + }, + { + "artist": "Mariah Carey", + "position": 37, + "title": "Emotions" + }, + { + "artist": "Angelica", + "position": 38, + "title": "Angel Baby" + }, + { + "artist": "Geto Boys", + "position": 39, + "title": "Mind Playing Tricks On Me" + }, + { + "artist": "Cher", + "position": 40, + "title": "Save Up All Your Tears" + }, + { + "artist": "Keith Sweat", + "position": 41, + "title": "Keep It Comin" + }, + { + "artist": "Tracie Spencer", + "position": 42, + "title": "Tender Kisses" + }, + { + "artist": "Vanessa Williams", + "position": 43, + "title": "Running Back To You" + }, + { + "artist": "Motley Crue", + "position": 44, + "title": "Home Sweet Home" + }, + { + "artist": "The Storm", + "position": 45, + "title": "I ve Got A Lot To Learn About Love" + }, + { + "artist": "Curtis Stigers", + "position": 46, + "title": "I Wonder Why" + }, + { + "artist": "Metallica", + "position": 47, + "title": "Enter Sandman" + }, + { + "artist": "Van Halen", + "position": 48, + "title": "Top Of The World" + }, + { + "artist": "Shabba Ranks/Maxi Priest", + "position": 49, + "title": "Housecall" + }, + { + "artist": "Heavy D", + "position": 50, + "title": "Is It Good To You" + }, + { + "artist": "Kym Sims", + "position": 51, + "title": "Too Blind To See It" + }, + { + "artist": "D.J. Jazzy Jeff", + "position": 52, + "title": "Ring My Bell" + }, + { + "artist": "Metallica", + "position": 53, + "title": "The Unforgiven" + }, + { + "artist": "Lita Ford", + "position": 54, + "title": "Shot Of Poison" + }, + { + "artist": "The Party", + "position": 55, + "title": "In My Dreams" + }, + { + "artist": "Bonnie Raitt", + "position": 56, + "title": "I Can t Make You Love Me" + }, + { + "artist": "Scorpions", + "position": 57, + "title": "Send Me An Angel" + }, + { + "artist": "Public Enemy", + "position": 58, + "title": "Can t Truss It" + }, + { + "artist": "Natural Selection", + "position": 59, + "title": "Hearts Don t Think (They Feel)" + }, + { + "artist": "Firehouse", + "position": 60, + "title": "All She Wrote" + }, + { + "artist": "Icy Blu", + "position": 61, + "title": "I Wanna Be Your Girl" + }, + { + "artist": "Kid N Play", + "position": 62, + "title": "Ain t Gonna Hurt Nobody" + }, + { + "artist": "Lighter Shade Of Brown", + "position": 63, + "title": "On A Sunday Afternoon" + }, + { + "artist": "Digital Underground", + "position": 64, + "title": "Kiss You Back" + }, + { + "artist": "C+C Music Factory Presents Zelma Davis", + "position": 65, + "title": "Just A Touch Of Love" + }, + { + "artist": "The Farm", + "position": 66, + "title": "Groovy Train" + }, + { + "artist": "Right Said Fred", + "position": 67, + "title": "I m Too Sexy" + }, + { + "artist": "Lisette Melendez", + "position": 68, + "title": "A Day In My Life (Without You)" + }, + { + "artist": "M.C. Breed", + "position": 69, + "title": "Ain t No Future In Yo Fronting" + }, + { + "artist": "Vanessa Williams", + "position": 70, + "title": "The Comfort Zone" + }, + { + "artist": "Jody Watley", + "position": 71, + "title": "I Want You" + }, + { + "artist": "The 2 Live Crew", + "position": 72, + "title": "Pop That Coochie" + }, + { + "artist": "Ozzy Osbourne", + "position": 73, + "title": "No More Tears" + }, + { + "artist": "Corina", + "position": 74, + "title": "Whispers" + }, + { + "artist": "Atlantic Starr", + "position": 75, + "title": "Love Crazy" + }, + { + "artist": "Laissez Faire", + "position": 76, + "title": "In Paradise" + }, + { + "artist": "Voyce", + "position": 77, + "title": "Within My Heart" + }, + { + "artist": "Boyz II Men", + "position": 78, + "title": "Uhh Ahh" + }, + { + "artist": "John Mellencamp", + "position": 79, + "title": "Get A Leg Up" + }, + { + "artist": "Tone-Loc", + "position": 80, + "title": "All Through The Night" + }, + { + "artist": "Kenny Loggins", + "position": 81, + "title": "Conviction Of The Heart" + }, + { + "artist": "Mr. Big", + "position": 82, + "title": "To Be With You" + }, + { + "artist": "Big Audio", + "position": 83, + "title": "Rush" + }, + { + "artist": "Jesus Jones", + "position": 84, + "title": "Real Real Real" + }, + { + "artist": "Eddie Money", + "position": 85, + "title": "I ll Get By" + }, + { + "artist": "Bette Midler", + "position": 86, + "title": "Every Road Leads Back To You" + }, + { + "artist": "Bryan Adams", + "position": 87, + "title": "There Will Never Be Another Tonight" + }, + { + "artist": "Prince And The N.P.G.", + "position": 88, + "title": "Insatiable" + }, + { + "artist": "The Shamen", + "position": 89, + "title": "Move Any Mountain" + }, + { + "artist": "Damian Dame", + "position": 90, + "title": "Right Down To It" + }, + { + "artist": "U2", + "position": 91, + "title": "The Fly" + }, + { + "artist": "The KLF", + "position": 92, + "title": "What Time Is Love?" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 93, + "title": "Give It Away" + }, + { + "artist": "Simply Red", + "position": 94, + "title": "Something Got Me Started" + }, + { + "artist": "Guns N Roses", + "position": 95, + "title": "Live And Let Die" + }, + { + "artist": "Cathy Dennis", + "position": 96, + "title": "Everybody Move" + }, + { + "artist": "UB40", + "position": 97, + "title": "Groovin" + }, + { + "artist": "Hi-Five", + "position": 98, + "title": "Just Another Girlfriend" + }, + { + "artist": "EMF", + "position": 99, + "title": "Lies" + }, + { + "artist": "Blue Train", + "position": 100, + "title": "All I Need Is You" + } + ], + "title": "1991 - Hot 100" + }, + { + "songs": [ + { + "artist": "George Strait", + "position": 1, + "title": "I ve Come To Expect It From You" + }, + { + "artist": "Garth Brooks", + "position": 2, + "title": "Unanswered Prayers" + }, + { + "artist": "Vince Gill", + "position": 3, + "title": "Never Knew Lonely" + }, + { + "artist": "Alan Jackson", + "position": 4, + "title": "Chasin That Neon Rainbow" + }, + { + "artist": "Shenandoah", + "position": 5, + "title": "Ghost In This House" + }, + { + "artist": "Clint Black", + "position": 6, + "title": "Put Yourself In My Shoes" + }, + { + "artist": "Alabama", + "position": 7, + "title": "Forever s As Far As I ll Go" + }, + { + "artist": "Ricky Van Shelton", + "position": 8, + "title": "Life s Little Ups And Downs" + }, + { + "artist": "Conway Twitty", + "position": 9, + "title": "Crazy In Love" + }, + { + "artist": "K.T. Oslin", + "position": 10, + "title": "Come Next Monday" + }, + { + "artist": "Tanya Tucker", + "position": 11, + "title": "It Won t Be Me" + }, + { + "artist": "Carlene Carter", + "position": 12, + "title": "Come On Back" + }, + { + "artist": "Reba McEntire", + "position": 13, + "title": "Rumor Has It" + }, + { + "artist": "Paul Overstreet", + "position": 14, + "title": "Daddy s Come Around" + }, + { + "artist": "Kathy Mattea", + "position": 15, + "title": "A Few Good Things Remain" + }, + { + "artist": "Dwight Yoakam", + "position": 16, + "title": "Turn It On, Turn It Up, Turn Me Loose" + }, + { + "artist": "Don Williams", + "position": 17, + "title": "Back In My Younger Days" + }, + { + "artist": "Mary Chapin Carpenter", + "position": 18, + "title": "You Win Again" + }, + { + "artist": "Mark Chesnutt", + "position": 19, + "title": "Brother Jukebox" + }, + { + "artist": "Joe Diffie", + "position": 20, + "title": "Home" + }, + { + "artist": "Doug Stone", + "position": 21, + "title": "These Lips Don t Know How To Say Goodbye" + }, + { + "artist": "Holly Dunn", + "position": 22, + "title": "You Really Had Me Going" + }, + { + "artist": "Rodney Crowell", + "position": 23, + "title": "Now That We re Alone" + }, + { + "artist": "Lee Greenwood", + "position": 24, + "title": "We ve Got It Made" + }, + { + "artist": "Highway 101", + "position": 25, + "title": "Someone Else s Trouble Now" + } + ], + "title": "1990 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Stevie B", + "position": 1, + "title": "Because I Love You (The Postman Song)" + }, + { + "artist": "Madonna", + "position": 2, + "title": "Justify My Love" + }, + { + "artist": "Bette Midler", + "position": 3, + "title": "From A Distance" + }, + { + "artist": "Wilson Phillips", + "position": 4, + "title": "Impulsive" + }, + { + "artist": "DNA Featuring Suzanne Vega", + "position": 5, + "title": "Tom s Diner" + }, + { + "artist": "Damn Yankees", + "position": 6, + "title": "High Enough" + }, + { + "artist": "Whitney Houston", + "position": 7, + "title": "I m Your Baby Tonight" + }, + { + "artist": "George Michael", + "position": 8, + "title": "Freedom" + }, + { + "artist": "UB40", + "position": 9, + "title": "The Way You Do The Things You Do" + }, + { + "artist": "Ralph Tresvant", + "position": 10, + "title": "Sensitivity" + }, + { + "artist": "Janet Jackson", + "position": 11, + "title": "Love Will Never Do (Without You)" + }, + { + "artist": "Jon Bon Jovi", + "position": 12, + "title": "Miracle (From \"Young Guns II\")" + }, + { + "artist": "Poison", + "position": 13, + "title": "Something To Believe In" + }, + { + "artist": "Mariah Carey", + "position": 14, + "title": "Love Takes Time" + }, + { + "artist": "Deee-Lite", + "position": 15, + "title": "Groove Is In The Heart" + }, + { + "artist": "Surface", + "position": 16, + "title": "The First Time" + }, + { + "artist": "Winger", + "position": 17, + "title": "Miles Away" + }, + { + "artist": "Steve Winwood", + "position": 18, + "title": "One And Only Man" + }, + { + "artist": "2 In A Room", + "position": 19, + "title": "Wiggle It" + }, + { + "artist": "Nelson", + "position": 20, + "title": "After The Rain" + }, + { + "artist": "C+C Music Factory", + "position": 21, + "title": "Gonna Make You Sweat" + }, + { + "artist": "Tony Toni Tone", + "position": 22, + "title": "Feels Good" + }, + { + "artist": "Vanilla Ice", + "position": 23, + "title": "Play That Funky Music" + }, + { + "artist": "Cathy Dennis", + "position": 24, + "title": "Just Another Dream" + }, + { + "artist": "Will To Power", + "position": 25, + "title": "I m Not In Love" + }, + { + "artist": "The Outfield", + "position": 26, + "title": "For You" + }, + { + "artist": "Phil Collins", + "position": 27, + "title": "Hang In Long Enough" + }, + { + "artist": "Alias", + "position": 28, + "title": "More Than Words Can Say" + }, + { + "artist": "Elisa Fiorillo", + "position": 29, + "title": "On The Way Up" + }, + { + "artist": "Heart", + "position": 30, + "title": "Stranded" + }, + { + "artist": "Johnny Gill", + "position": 31, + "title": "Fairweather Friend" + }, + { + "artist": "Debbie Gibson", + "position": 32, + "title": "Anything Is Possible" + }, + { + "artist": "Robert Palmer", + "position": 33, + "title": "You re Amazing" + }, + { + "artist": "Dino", + "position": 34, + "title": "Gentle" + }, + { + "artist": "Vanilla Ice", + "position": 35, + "title": "Ice Ice Baby" + }, + { + "artist": "Keith Sweat", + "position": 36, + "title": "I ll Give All My Love To You" + }, + { + "artist": "Donny Osmond", + "position": 37, + "title": "My Love Is A Fire" + }, + { + "artist": "Candyman", + "position": 38, + "title": "Knockin Boots" + }, + { + "artist": "INXS", + "position": 39, + "title": "Disappear" + }, + { + "artist": "Righteous Brothers", + "position": 40, + "title": "Unchained Melody" + }, + { + "artist": "LL Cool J", + "position": 41, + "title": "Around The Way Girl" + }, + { + "artist": "Daryl Hall John Oates", + "position": 42, + "title": "So Close" + }, + { + "artist": "Breathe Featuring David Glasper", + "position": 43, + "title": "Does She Love That Man?" + }, + { + "artist": "Too Short", + "position": 44, + "title": "The Ghetto" + }, + { + "artist": "Elton John", + "position": 45, + "title": "You Gotta Love Someone" + }, + { + "artist": "Warrant", + "position": 46, + "title": "I Saw Red" + }, + { + "artist": "M.C. Hammer", + "position": 47, + "title": "Pray" + }, + { + "artist": "Don Henley", + "position": 48, + "title": "New York Minute" + }, + { + "artist": "Cher", + "position": 49, + "title": "The Shoop Shoop Song (It s In His Kiss)" + }, + { + "artist": "The Black Crowes", + "position": 50, + "title": "Hard To Handle" + }, + { + "artist": "Celine Dion", + "position": 51, + "title": "Where Does My Heart Beat Now" + }, + { + "artist": "Depeche Mode", + "position": 52, + "title": "World In My Eyes" + }, + { + "artist": "Whitney Houston", + "position": 53, + "title": "All The Man That I Need" + }, + { + "artist": "Soho", + "position": 54, + "title": "Hippychick" + }, + { + "artist": "Pebbles", + "position": 55, + "title": "Love Makes Things Happen" + }, + { + "artist": "Bad Company", + "position": 56, + "title": "If You Needed Somebody" + }, + { + "artist": "Bell Biv Devoe", + "position": 57, + "title": "B.B.D. (I Thought It Was Me)?" + }, + { + "artist": "George LaMond (Duet With Brenda K. Starr)", + "position": 58, + "title": "No Matter What" + }, + { + "artist": "James Ingram", + "position": 59, + "title": "I Don t Have The Heart" + }, + { + "artist": "AC/DC", + "position": 60, + "title": "Moneytalks" + }, + { + "artist": "Iggy Pop With Kate Pierson", + "position": 61, + "title": "Candy" + }, + { + "artist": "After 7", + "position": 62, + "title": "Heat Of The Moment" + }, + { + "artist": "Maxi Priest", + "position": 63, + "title": "Close To You" + }, + { + "artist": "Chris Isaak", + "position": 64, + "title": "Wicked Game" + }, + { + "artist": "Guy", + "position": 65, + "title": "I Wanna Get With U" + }, + { + "artist": "Tony Toni Tone", + "position": 66, + "title": "It Never Rains (In Southern California)" + }, + { + "artist": "Cinderella", + "position": 67, + "title": "Shelter Me" + }, + { + "artist": "Black Box", + "position": 68, + "title": "I Don t Know Anybody Else" + }, + { + "artist": "After 7", + "position": 69, + "title": "Can t Stop" + }, + { + "artist": "Joey B. Ellis", + "position": 70, + "title": "Go For It! (Heart And Fire)" + }, + { + "artist": "Jude Cole", + "position": 71, + "title": "House Full Of Reasons" + }, + { + "artist": "Information Society", + "position": 72, + "title": "Think" + }, + { + "artist": "Trixter", + "position": 73, + "title": "Give It To Me Good" + }, + { + "artist": "Styx", + "position": 74, + "title": "Show Me The Way" + }, + { + "artist": "Tevin Campbell", + "position": 75, + "title": "Round And Round" + }, + { + "artist": "Pebbles", + "position": 76, + "title": "Giving You The Benefit" + }, + { + "artist": "Maxi Priest", + "position": 77, + "title": "Just A Little Bit Longer" + }, + { + "artist": "Urban Dance Squad", + "position": 78, + "title": "Deeper Shade Of Soul" + }, + { + "artist": "Oleta Adams", + "position": 79, + "title": "Get Here" + }, + { + "artist": "Billy Joel", + "position": 80, + "title": "And So It Goes" + }, + { + "artist": "Warrant", + "position": 81, + "title": "Cherry Pie" + }, + { + "artist": "TKA Featuring Michelle Visage", + "position": 82, + "title": "Crash (Have Some Fun)" + }, + { + "artist": "Concrete Blonde", + "position": 83, + "title": "Joey" + }, + { + "artist": "Pat", + "position": 84, + "title": "Use It Up And Wear It Out" + }, + { + "artist": "Candyman", + "position": 85, + "title": "Melt In Your Mouth" + }, + { + "artist": "2nu", + "position": 86, + "title": "This Is Ponderous" + }, + { + "artist": "David Cassidy", + "position": 87, + "title": "Lyin To Myself" + }, + { + "artist": "Al B. Sure!", + "position": 88, + "title": "Missunderstanding" + }, + { + "artist": "Tracie Spencer", + "position": 89, + "title": "This House" + }, + { + "artist": "Notorious", + "position": 90, + "title": "The Swalk" + }, + { + "artist": "The Party", + "position": 91, + "title": "I Found Love" + }, + { + "artist": "Timmy T.", + "position": 92, + "title": "One More Try" + }, + { + "artist": "Paul Simon", + "position": 93, + "title": "The Obvious Child" + }, + { + "artist": "Nelson", + "position": 94, + "title": "(Can t Live Without Your) Love And Affection" + }, + { + "artist": "Cheap Trick", + "position": 95, + "title": "Wherever Would I Be" + }, + { + "artist": "Slaughter", + "position": 96, + "title": "Spend My Life" + }, + { + "artist": "Righteous Brothers", + "position": 97, + "title": "Unchained Melody" + }, + { + "artist": "Janet Jackson", + "position": 98, + "title": "Black Cat" + }, + { + "artist": "Special Generation", + "position": 99, + "title": "Love Me Just For Me" + }, + { + "artist": "Phil Collins", + "position": 100, + "title": "Something Happened On The Way To Heaven" + } + ], + "title": "1990 - Hot 100" + }, + { + "songs": [ + { + "artist": "Highway 101", + "position": 1, + "title": "Who s Lonely Now" + }, + { + "artist": "Lorrie Morgan", + "position": 2, + "title": "Out Of Your Shoes" + }, + { + "artist": "Billy Joe Royal", + "position": 3, + "title": "Till I Can t Take It Anymore" + }, + { + "artist": "Keith Whitley", + "position": 4, + "title": "It Ain t Nothin" + }, + { + "artist": "Rodney Crowell", + "position": 5, + "title": "Many A Long" + }, + { + "artist": "Glen Campbell", + "position": 6, + "title": "She s Gone, Gone, Gone" + }, + { + "artist": "Vern Gosdin", + "position": 7, + "title": "That Just About Does It" + }, + { + "artist": "Skip Ewing", + "position": 8, + "title": "It s You Again" + }, + { + "artist": "Tanya Tucker", + "position": 9, + "title": "My Arms Stay Open All Night" + }, + { + "artist": "Willie Nelson", + "position": 10, + "title": "There You Are" + }, + { + "artist": "Clint Black", + "position": 11, + "title": "Nobody s Home" + }, + { + "artist": "The Charlie Daniels Band", + "position": 12, + "title": "Simple Man" + }, + { + "artist": "The Nitty Gritty Dirt Band", + "position": 13, + "title": "When It s Gone" + }, + { + "artist": "Steve Wariner", + "position": 14, + "title": "When I Could Come Home To You" + }, + { + "artist": "Ronnie Milsap", + "position": 15, + "title": "A Woman In Love" + }, + { + "artist": "Lionel Cartwright", + "position": 16, + "title": "In My Eyes" + }, + { + "artist": "The Desert Rose Band", + "position": 17, + "title": "Start All Over Again" + }, + { + "artist": "Ricky Van Shelton", + "position": 18, + "title": "Statue Of A Fool" + }, + { + "artist": "The Judds", + "position": 19, + "title": "One Man Woman" + }, + { + "artist": "Baillie And The Boys", + "position": 20, + "title": "I Can t Turn The Tide" + }, + { + "artist": "Kathy Mattea", + "position": 21, + "title": "Where ve You Been" + }, + { + "artist": "Alabama", + "position": 22, + "title": "Southern Star" + }, + { + "artist": "Shenandoah", + "position": 23, + "title": "Two Dozen Roses" + }, + { + "artist": "Holly Dunn", + "position": 24, + "title": "There Goes My Heart Again" + }, + { + "artist": "George Strait", + "position": 25, + "title": "Overnight Success" + } + ], + "title": "1989 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Phil Collins", + "position": 1, + "title": "Another Day In Paradise" + }, + { + "artist": "Janet Jackson", + "position": 2, + "title": "Rhythm Nation" + }, + { + "artist": "Linda Ronstadt (Featuring Aaron Neville)", + "position": 3, + "title": "Don t Know Much" + }, + { + "artist": "Technotronic", + "position": 4, + "title": "Pump Up The Jam" + }, + { + "artist": "Taylor Dayne", + "position": 5, + "title": "With Every Beat Of My Heart" + }, + { + "artist": "Michael Bolton", + "position": 6, + "title": "How Am I Supposed To Live Without You" + }, + { + "artist": "New Kids On The Block", + "position": 7, + "title": "This One s For The Children" + }, + { + "artist": "Cher", + "position": 8, + "title": "Just Like Jesse James" + }, + { + "artist": "Billy Joel", + "position": 9, + "title": "We Didn t Start The Fire" + }, + { + "artist": "Jody Watley", + "position": 10, + "title": "Everything" + }, + { + "artist": "Soul II Soul", + "position": 11, + "title": "Back To Life" + }, + { + "artist": "Jive Bunny", + "position": 12, + "title": "Swing The Mood" + }, + { + "artist": "Lou Gramm", + "position": 13, + "title": "Just Between You And Me" + }, + { + "artist": "Tom Petty", + "position": 14, + "title": "Free Fallin" + }, + { + "artist": "Tesla", + "position": 15, + "title": "Love Song" + }, + { + "artist": "Rod Stewart", + "position": 16, + "title": "Downtown Train" + }, + { + "artist": "Joe Cocker", + "position": 17, + "title": "When The Night Comes" + }, + { + "artist": "Seduction", + "position": 18, + "title": "Two To Make It Right" + }, + { + "artist": "Bon Jovi", + "position": 19, + "title": "Living In Sin" + }, + { + "artist": "Madonna", + "position": 20, + "title": "Oh Father" + }, + { + "artist": "Milli Vanilli", + "position": 21, + "title": "Blame It On The Rain" + }, + { + "artist": "Skid Row", + "position": 22, + "title": "I Remember You" + }, + { + "artist": "The Rolling Stones", + "position": 23, + "title": "Rock And A Hard Place" + }, + { + "artist": "Aerosmith", + "position": 24, + "title": "Janie s Got A Gun" + }, + { + "artist": "Quincy Jones Featuring Ray Charles", + "position": 25, + "title": "I ll Be Good To You" + }, + { + "artist": "Babyface", + "position": 26, + "title": "Tender Lover" + }, + { + "artist": "Eddie Money", + "position": 27, + "title": "Peace In Our Time" + }, + { + "artist": "The B-52 s", + "position": 28, + "title": "Love Shack" + }, + { + "artist": "Chicago", + "position": 29, + "title": "What Kind Of Man Would I Be?" + }, + { + "artist": "Kix", + "position": 30, + "title": "Don t Close Your Eyes" + }, + { + "artist": "Expose", + "position": 31, + "title": "Tell Me Why" + }, + { + "artist": "Paula Abdul (Duet With The Wild Pair)", + "position": 32, + "title": "Opposites Attract" + }, + { + "artist": "Paula Abdul", + "position": 33, + "title": "(It s Just) The Way That You Love Me" + }, + { + "artist": "Michael Damian", + "position": 34, + "title": "Was It Nothing At All" + }, + { + "artist": "Young MC", + "position": 35, + "title": "Principal s Office" + }, + { + "artist": "Young MC", + "position": 36, + "title": "Bust A Move" + }, + { + "artist": "Motley Crue", + "position": 37, + "title": "Kickstart My Heart" + }, + { + "artist": "Bad English", + "position": 38, + "title": "When I See You Smile" + }, + { + "artist": "Tina Turner", + "position": 39, + "title": "Steamy Windows" + }, + { + "artist": "Roxette", + "position": 40, + "title": "Dangerous" + }, + { + "artist": "Shana", + "position": 41, + "title": "I Want You" + }, + { + "artist": "Sybil", + "position": 42, + "title": "Don t Make Me Over" + }, + { + "artist": "Poco", + "position": 43, + "title": "Nothin To Hide" + }, + { + "artist": "Gloria Estefan", + "position": 44, + "title": "Here We Are" + }, + { + "artist": "The Cover Girls", + "position": 45, + "title": "We Can t Go Wrong" + }, + { + "artist": "Whitesnake", + "position": 46, + "title": "Fool For Your Loving" + }, + { + "artist": "Don Henley", + "position": 47, + "title": "The Last Worthless Evening" + }, + { + "artist": "Michel le", + "position": 48, + "title": "No More Lies" + }, + { + "artist": "Richard Marx", + "position": 49, + "title": "Angelia" + }, + { + "artist": "The 2 Live Crew", + "position": 50, + "title": "Me So Horny" + }, + { + "artist": "Milli Vanilli", + "position": 51, + "title": "All Or Nothing" + }, + { + "artist": "Jaya", + "position": 52, + "title": "If You Leave Me Now" + }, + { + "artist": "Bad English", + "position": 53, + "title": "Price Of Love" + }, + { + "artist": "Tears For Fears", + "position": 54, + "title": "Woman In Chains" + }, + { + "artist": "Belinda Carlisle", + "position": 55, + "title": "Leave A Light On" + }, + { + "artist": "Fiona (Duet With Kip Winger)", + "position": 56, + "title": "Everything You Do (You re Sexing Me)" + }, + { + "artist": "Alice Cooper", + "position": 57, + "title": "Poison" + }, + { + "artist": "Bonham", + "position": 58, + "title": "Wait For You" + }, + { + "artist": "Marcia Griffiths", + "position": 59, + "title": "Electric Boogie" + }, + { + "artist": "Paul Carrack", + "position": 60, + "title": "I Live By The Groove" + }, + { + "artist": "D-Mob With Cathy Dennis", + "position": 61, + "title": "C Mon And Get My Love" + }, + { + "artist": "SaFire", + "position": 62, + "title": "I Will Survive (From \"She-Devil\")" + }, + { + "artist": "Prince (With Sheena Easton)", + "position": 63, + "title": "The Arms Of Orion" + }, + { + "artist": "Jermaine Jackson", + "position": 64, + "title": "Don t Take It Personal" + }, + { + "artist": "Kevin Paige", + "position": 65, + "title": "Don t Shut Me Out" + }, + { + "artist": "Great White", + "position": 66, + "title": "The Angel Song" + }, + { + "artist": "Depeche Mode", + "position": 67, + "title": "Personal Jesus" + }, + { + "artist": "Pajama Party", + "position": 68, + "title": "Over And Over" + }, + { + "artist": "Luther Vandross", + "position": 69, + "title": "Here And Now" + }, + { + "artist": "The B-52 s", + "position": 70, + "title": "Roam" + }, + { + "artist": "Kenny G", + "position": 71, + "title": "Going Home" + }, + { + "artist": "Eric Clapton", + "position": 72, + "title": "Pretending" + }, + { + "artist": "Neneh Cherry", + "position": 73, + "title": "Heart" + }, + { + "artist": "Dino", + "position": 74, + "title": "Never 2 Much Of U" + }, + { + "artist": "Roxette", + "position": 75, + "title": "Listen To Your Heart" + }, + { + "artist": "Christopher Max", + "position": 76, + "title": "Serious Kinda Girl" + }, + { + "artist": "The Smithereens", + "position": 77, + "title": "A Girl Like You" + }, + { + "artist": "New Kids On The Block", + "position": 78, + "title": "Didn t I (Blow Your Mind)" + }, + { + "artist": "Bobby Brown", + "position": 79, + "title": "Rock Wit cha" + }, + { + "artist": "Gloria Estefan", + "position": 80, + "title": "Get On Your Feet" + }, + { + "artist": "Warrant", + "position": 81, + "title": "Sometimes She Cries" + }, + { + "artist": "The Cure", + "position": 82, + "title": "Lullaby" + }, + { + "artist": "Kiss", + "position": 83, + "title": "Hide Your Heart" + }, + { + "artist": "Loverboy", + "position": 84, + "title": "Too Hot" + }, + { + "artist": "Michael Penn", + "position": 85, + "title": "No Myth" + }, + { + "artist": "Alannah Myles", + "position": 86, + "title": "Black Velvet" + }, + { + "artist": "Diving For Pearls", + "position": 87, + "title": "Gimme Your Good Lovin" + }, + { + "artist": "Lil Louis", + "position": 88, + "title": "French Kiss" + }, + { + "artist": "Abstrac", + "position": 89, + "title": "Right And Hype" + }, + { + "artist": "Michael Morales", + "position": 90, + "title": "I Don t Know" + }, + { + "artist": "Stevie B", + "position": 91, + "title": "Girl I Am Searching For You" + }, + { + "artist": "Janet Jackson", + "position": 92, + "title": "Miss You Much" + }, + { + "artist": "Starship", + "position": 93, + "title": "I Didn t Mean To Stay All Night" + }, + { + "artist": "Sharon Bryant", + "position": 94, + "title": "Foolish Heart" + }, + { + "artist": "Christopher Williams", + "position": 95, + "title": "Talk To Myself" + }, + { + "artist": "After 7", + "position": 96, + "title": "Heat Of The Moment" + }, + { + "artist": "New Kids On The Block", + "position": 97, + "title": "Cover Girl" + }, + { + "artist": "Hooters", + "position": 98, + "title": "500 Miles" + }, + { + "artist": "Saraya", + "position": 99, + "title": "Back To The Bullet" + }, + { + "artist": "Chunky A", + "position": 100, + "title": "Owwww!" + } + ], + "title": "1989 - Hot 100" + }, + { + "songs": [ + { + "artist": "Keith Whitley", + "position": 1, + "title": "When You Say Nothing At All" + }, + { + "artist": "K.T. Oslin", + "position": 2, + "title": "Hold Me" + }, + { + "artist": "Paul Overstreet", + "position": 3, + "title": "Love Helps Those" + }, + { + "artist": "The Judds", + "position": 4, + "title": "Change Of Heart" + }, + { + "artist": "Shenandoah", + "position": 5, + "title": "Mama Knows" + }, + { + "artist": "Rodney Crowell", + "position": 6, + "title": "She s Crazy For Leaving" + }, + { + "artist": "Eddie Rabbitt", + "position": 7, + "title": "We Must Be Doin Somethin Right" + }, + { + "artist": "Baillie And The Boys", + "position": 8, + "title": "Long Shot" + }, + { + "artist": "Patty Loveless", + "position": 9, + "title": "Blue Side Of Town" + }, + { + "artist": "Randy Travis", + "position": 10, + "title": "Deeper Than The Holler" + }, + { + "artist": "Restless Heart", + "position": 11, + "title": "A Tender Lie" + }, + { + "artist": "Highway 101", + "position": 12, + "title": "All The Reasons Why" + }, + { + "artist": "Steve Wariner", + "position": 13, + "title": "Hold On (A Little Longer)" + }, + { + "artist": "The Statler Brothers", + "position": 14, + "title": "Let s Get Started If We re Gonna Break My Heart" + }, + { + "artist": "Skip Ewing", + "position": 15, + "title": "Burnin A Hole In My Heart" + }, + { + "artist": "Earl Thomas Conley", + "position": 16, + "title": "What I d Say" + }, + { + "artist": "Alabama", + "position": 17, + "title": "Song Of The South" + }, + { + "artist": "Hank Williams Jr.", + "position": 18, + "title": "Early In The Morning And Late At Night" + }, + { + "artist": "Dan Seals", + "position": 19, + "title": "Big Wheels In The Moonlight" + }, + { + "artist": "Dwight Yoakam", + "position": 20, + "title": "I Sang Dixie" + }, + { + "artist": "Kathy Mattea", + "position": 21, + "title": "Life As We Knew It" + }, + { + "artist": "The Shooters", + "position": 22, + "title": "Borderline" + }, + { + "artist": "The Forester Sisters", + "position": 23, + "title": "Sincerely" + }, + { + "artist": "Holly Dunn", + "position": 24, + "title": "(It s Always Gonna Be) Someday" + }, + { + "artist": "Gene Watson", + "position": 25, + "title": "Don t Waste It On The Blues" + } + ], + "title": "1988 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Poison", + "position": 1, + "title": "Every Rose Has Its Thorn" + }, + { + "artist": "Bobby Brown", + "position": 2, + "title": "My Prerogative" + }, + { + "artist": "Chicago", + "position": 3, + "title": "Look Away" + }, + { + "artist": "Anita Baker", + "position": 4, + "title": "Giving You The Best That I Got" + }, + { + "artist": "Boy Meets Girl", + "position": 5, + "title": "Waiting For A Star To Fall" + }, + { + "artist": "Phil Collins", + "position": 6, + "title": "Two Hearts" + }, + { + "artist": "Guns N Roses", + "position": 7, + "title": "Welcome To The Jungle" + }, + { + "artist": "Bangles", + "position": 8, + "title": "In Your Room" + }, + { + "artist": "Eddie Money", + "position": 9, + "title": "Walk On Water" + }, + { + "artist": "Taylor Dayne", + "position": 10, + "title": "Don t Rush Me" + }, + { + "artist": "Will To Power", + "position": 11, + "title": "Baby, I Love Your Way/Freebird Medley" + }, + { + "artist": "Def Leppard", + "position": 12, + "title": "Armageddon It" + }, + { + "artist": "Michael Jackson", + "position": 13, + "title": "Smooth Criminal" + }, + { + "artist": "Boys Club", + "position": 14, + "title": "I Remember Holding You" + }, + { + "artist": "Duran Duran", + "position": 15, + "title": "I Don t Want Your Love" + }, + { + "artist": "Kenny G", + "position": 16, + "title": "Silhouette" + }, + { + "artist": "Breathe", + "position": 17, + "title": "How Can I Fall?" + }, + { + "artist": "When In Rome", + "position": 18, + "title": "The Promise" + }, + { + "artist": "Annie Lennox", + "position": 19, + "title": "Put A Little Love In Your Heart" + }, + { + "artist": "Van Halen", + "position": 20, + "title": "Finish What Ya Started" + }, + { + "artist": "Was (Not Was)", + "position": 21, + "title": "Spy In The House Of Love" + }, + { + "artist": "Karyn White", + "position": 22, + "title": "The Way You Love Me" + }, + { + "artist": "Robert Palmer", + "position": 23, + "title": "Early In The Morning" + }, + { + "artist": "Tiffany", + "position": 24, + "title": "All This Time" + }, + { + "artist": "White Lion", + "position": 25, + "title": "When The Children Cry" + }, + { + "artist": "Bon Jovi", + "position": 26, + "title": "Born To Be My Baby" + }, + { + "artist": "Sheriff", + "position": 27, + "title": "When I m With You" + }, + { + "artist": "Joan Jett And The Blackhearts", + "position": 28, + "title": "Little Liar" + }, + { + "artist": "Steve Winwood", + "position": 29, + "title": "Holding On" + }, + { + "artist": "Maxi Priest", + "position": 30, + "title": "Wild World" + }, + { + "artist": "Samantha Fox", + "position": 31, + "title": "I Wanna Have Some Fun" + }, + { + "artist": "Cheryl \"Pepsii\" Riley", + "position": 32, + "title": "Thanks For My Child" + }, + { + "artist": "Cheap Trick", + "position": 33, + "title": "Ghost Town" + }, + { + "artist": "Sheena Easton", + "position": 34, + "title": "The Lover In Me" + }, + { + "artist": "Paula Abdul", + "position": 35, + "title": "Straight Up" + }, + { + "artist": "U2", + "position": 36, + "title": "Desire" + }, + { + "artist": "Tone-Loc", + "position": 37, + "title": "Wild Thing" + }, + { + "artist": "The Beach Boys", + "position": 38, + "title": "Kokomo (From The \"Cocktail\" Soundtrack)" + }, + { + "artist": "The Escape Club", + "position": 39, + "title": "Wild, Wild West" + }, + { + "artist": "The Art Of Noise Featuring Tom Jones", + "position": 40, + "title": "Kiss" + }, + { + "artist": "Information Society", + "position": 41, + "title": "Walking Away" + }, + { + "artist": "Robbie Nevil", + "position": 42, + "title": "Back On Holiday" + }, + { + "artist": "Bon Jovi", + "position": 43, + "title": "Bad Medicine" + }, + { + "artist": "Rick Astley", + "position": 44, + "title": "She Wants To Dance With Me" + }, + { + "artist": "Edie Brickell", + "position": 45, + "title": "What I Am" + }, + { + "artist": "The Boys", + "position": 46, + "title": "Dial My Heart" + }, + { + "artist": "New Kids On The Block", + "position": 47, + "title": "You Got It (The Right Stuff)" + }, + { + "artist": "Tracy Chapman", + "position": 48, + "title": "Baby Can I Hold You" + }, + { + "artist": "Ivan Neville", + "position": 49, + "title": "Not Just Another Girl" + }, + { + "artist": "Kylie Minogue", + "position": 50, + "title": "The Loco-Motion" + }, + { + "artist": "U2", + "position": 51, + "title": "Angel Of Harlem" + }, + { + "artist": "Judson Spence", + "position": 52, + "title": "Yeah, Yeah, Yeah" + }, + { + "artist": "Erasure", + "position": 53, + "title": "A Little Respect" + }, + { + "artist": "Cinderella", + "position": 54, + "title": "Don t Know What You Got (Till It s Gone)" + }, + { + "artist": "Phil Collins", + "position": 55, + "title": "Groovy Kind Of Love" + }, + { + "artist": "Fleetwood Mac", + "position": 56, + "title": "As Long As You Follow" + }, + { + "artist": "The Escape Club", + "position": 57, + "title": "Shake For The Sheik" + }, + { + "artist": "George Michael", + "position": 58, + "title": "Kissing A Fool" + }, + { + "artist": "Traveling Wilburys", + "position": 59, + "title": "Handle With Care" + }, + { + "artist": "Eighth Wonder", + "position": 60, + "title": "Cross My Heart" + }, + { + "artist": "Rod Stewart", + "position": 61, + "title": "My Heart Can t Tell You No" + }, + { + "artist": "Kylie Minogue", + "position": 62, + "title": "It s No Secret" + }, + { + "artist": "Siouxsie and The Banshees", + "position": 63, + "title": "Peek-A-Boo" + }, + { + "artist": "The Georgia Satellites", + "position": 64, + "title": "Hippy Hippy Shake (From \"Cocktail\")" + }, + { + "artist": "Alphaville", + "position": 65, + "title": "Forever Young" + }, + { + "artist": "Tracie Spencer", + "position": 66, + "title": "Symptoms Of True Love" + }, + { + "artist": "Basia", + "position": 67, + "title": "New Day For You" + }, + { + "artist": "UB40", + "position": 68, + "title": "Red Red Wine" + }, + { + "artist": "D.J. Jazzy Jeff", + "position": 69, + "title": "Girls Ain t Nothing But Trouble" + }, + { + "artist": "Pet Shop Boys", + "position": 70, + "title": "Domino Dancing" + }, + { + "artist": "Rod Stewart", + "position": 71, + "title": "Forever Young" + }, + { + "artist": "Vixen", + "position": 72, + "title": "Edge Of A Broken Heart" + }, + { + "artist": "Bobby McFerrin", + "position": 73, + "title": "Don t Worry, Be Happy (From \"Cocktail\")" + }, + { + "artist": "Randy Newman", + "position": 74, + "title": "It s Money That Matters" + }, + { + "artist": "Giant Steps", + "position": 75, + "title": "Another Lover" + }, + { + "artist": "Michelle Shocked", + "position": 76, + "title": "Anchorage" + }, + { + "artist": "Tommy Conwell And The Young Rumblers", + "position": 77, + "title": "If We Never Meet Again" + }, + { + "artist": "Mike", + "position": 78, + "title": "Nobody s Perfect" + }, + { + "artist": "Barbra Streisand", + "position": 79, + "title": "Till I Loved You" + }, + { + "artist": "Ann Wilson", + "position": 80, + "title": "Surrender To Me (From \"Tequila Sunrise\")" + }, + { + "artist": "Starship", + "position": 81, + "title": "Wild Again (From \"Cocktail\")" + }, + { + "artist": "Al B. Sure!", + "position": 82, + "title": "Killing Me Softly" + }, + { + "artist": "The Timelords", + "position": 83, + "title": "Doctorin The Tardis" + }, + { + "artist": "INXS", + "position": 84, + "title": "Never Tear Us Apart" + }, + { + "artist": "Duran Duran", + "position": 85, + "title": "All She Wants Is" + }, + { + "artist": "Fairground Attraction", + "position": 86, + "title": "Perfect" + }, + { + "artist": "Kon Kan", + "position": 87, + "title": "I Beg Your Pardon" + }, + { + "artist": "Bobby Brown", + "position": 88, + "title": "Don t Be Cruel" + }, + { + "artist": "SaFire", + "position": 89, + "title": "Boy, I ve Been Told" + }, + { + "artist": "Def Leppard", + "position": 90, + "title": "Love Bites" + }, + { + "artist": "Martika", + "position": 91, + "title": "More Than You Know" + }, + { + "artist": "J.J. Fad", + "position": 92, + "title": "Is It Love" + }, + { + "artist": "Taylor Dayne", + "position": 93, + "title": "I ll Always Love You" + }, + { + "artist": "New Kids On The Block", + "position": 94, + "title": "Please Don t Go Girl" + }, + { + "artist": "Sir Mix-A-Lot", + "position": 95, + "title": "Posse On Broadway" + }, + { + "artist": "Luther Vandross", + "position": 96, + "title": "Any Love" + }, + { + "artist": "L Trimm", + "position": 97, + "title": "Cars With The Boom" + }, + { + "artist": "Camouflage", + "position": 98, + "title": "The Great Commandment" + }, + { + "artist": "Information Society", + "position": 99, + "title": "What s On Your Mind (Pure Energy)" + }, + { + "artist": "Whitney Houston", + "position": 100, + "title": "One Moment In Time" + } + ], + "title": "1988 - Hot 100" + }, + { + "songs": [ + { + "artist": "Highway 101", + "position": 1, + "title": "Somewhere Tonight" + }, + { + "artist": "Kenny Rogers", + "position": 2, + "title": "I Prefer The Moonlight" + }, + { + "artist": "Exile", + "position": 3, + "title": "I Can't Get Close Enough" + }, + { + "artist": "Dan Seals", + "position": 4, + "title": "One Friend" + }, + { + "artist": "Hank Williams Jr.", + "position": 5, + "title": "Heaven Can't Be Found" + }, + { + "artist": "Ronnie Milsap", + "position": 6, + "title": "Where Do The Nights Go" + }, + { + "artist": "Kathy Mattea", + "position": 7, + "title": "Goin' Gone" + }, + { + "artist": "Glen Campbell", + "position": 8, + "title": "Still Within The Sound Of My Voice" + }, + { + "artist": "K.T. Oslin", + "position": 9, + "title": "Do Ya'" + }, + { + "artist": "Restless Heart", + "position": 10, + "title": "Wheels" + }, + { + "artist": "Michael Johnson", + "position": 11, + "title": "Crying Shame" + }, + { + "artist": "The O'Kanes", + "position": 12, + "title": "Just Lovin' You" + }, + { + "artist": "Lyle Lovett", + "position": 13, + "title": "Give Back My Heart" + }, + { + "artist": "Billy Joe Royal", + "position": 14, + "title": "I'll Pin A Note On Your Pillow" + }, + { + "artist": "Crystal Gayle", + "position": 15, + "title": "Only Love Can Save Me Now" + }, + { + "artist": "Don Williams", + "position": 16, + "title": "I Wouldn't Be A Man" + }, + { + "artist": "The Desert Rose Band", + "position": 17, + "title": "One Step Forward" + }, + { + "artist": "Rosanne Cash", + "position": 18, + "title": "Tennessee Flat Top Box" + }, + { + "artist": "Ricky Skaggs", + "position": 19, + "title": "I'm Tired" + }, + { + "artist": "The Forester Sisters", + "position": 20, + "title": "Lyin' In His Arms Again" + }, + { + "artist": "T.G. Sheppard", + "position": 21, + "title": "One For The Money" + }, + { + "artist": "Merle Haggard", + "position": 22, + "title": "Twinkle, Twinkle Lucky Star" + }, + { + "artist": "Waylon Jennings", + "position": 23, + "title": "Rough And Rowdy Days" + }, + { + "artist": "Foster & Lloyd", + "position": 24, + "title": "Sure Thing" + }, + { + "artist": "Dwight Yoakam", + "position": 25, + "title": "Please Please Baby" + } + ], + "title": "1987 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "George Michael", + "position": 1, + "title": "Faith" + }, + { + "artist": "Whitney Houston", + "position": 2, + "title": "So Emotional" + }, + { + "artist": "Whitesnake", + "position": 3, + "title": "Is This Love" + }, + { + "artist": "George Harrison", + "position": 4, + "title": "Got My Mind Set On You" + }, + { + "artist": "Debbie Gibson", + "position": 5, + "title": "Shake Your Love" + }, + { + "artist": "Jody Watley", + "position": 6, + "title": "Don't You Want Me" + }, + { + "artist": "Michael Jackson", + "position": 7, + "title": "The Way You Make Me Feel" + }, + { + "artist": "Pretty Poison", + "position": 8, + "title": "Catch Me (I'm Falling) (From The Film \"Hiding Out\")" + }, + { + "artist": "John Mellencamp", + "position": 9, + "title": "Cherry Bomb" + }, + { + "artist": "INXS", + "position": 10, + "title": "Need You Tonight" + }, + { + "artist": "Steve Winwood", + "position": 11, + "title": "Valerie" + }, + { + "artist": "Taylor Dayne", + "position": 12, + "title": "Tell It To My Heart" + }, + { + "artist": "Elton John", + "position": 13, + "title": "Candle In The Wind" + }, + { + "artist": "Aerosmith", + "position": 14, + "title": "Dude (Looks Like A Lady)" + }, + { + "artist": "Bangles", + "position": 15, + "title": "Hazy Shade Of Winter" + }, + { + "artist": "Tiffany", + "position": 16, + "title": "Could've Been" + }, + { + "artist": "Belinda Carlisle", + "position": 17, + "title": "Heaven Is A Place On Earth" + }, + { + "artist": "Heart", + "position": 18, + "title": "There's The Girl" + }, + { + "artist": "Def Leppard", + "position": 19, + "title": "Animal" + }, + { + "artist": "Expose", + "position": 20, + "title": "Seasons Change" + }, + { + "artist": "Bill Medley & Jennifer Warnes", + "position": 21, + "title": "(I've Had) The Time Of My Life" + }, + { + "artist": "Icehouse", + "position": 22, + "title": "Crazy" + }, + { + "artist": "Prince", + "position": 23, + "title": "I Could Never Take The Place Of Your Man" + }, + { + "artist": "Michael Bolton", + "position": 24, + "title": "That's What Love Is All About" + }, + { + "artist": "Eric Carmen", + "position": 25, + "title": "Hungry Eyes (From \"Dirty Dancing\")" + }, + { + "artist": "Roger", + "position": 26, + "title": "I Want To Be Your Man" + }, + { + "artist": "Laura Branigan", + "position": 27, + "title": "Power Of Love" + }, + { + "artist": "Sting", + "position": 28, + "title": "We'll Be Together" + }, + { + "artist": "Richard Marx", + "position": 29, + "title": "Should've Known Better" + }, + { + "artist": "Bruce Springsteen", + "position": 30, + "title": "Tunnel Of Love" + }, + { + "artist": "Natalie Cole", + "position": 31, + "title": "I Live For Your Love" + }, + { + "artist": "New Order", + "position": 32, + "title": "True Faith" + }, + { + "artist": "Foreigner", + "position": 33, + "title": "Say You Will" + }, + { + "artist": "Paul Carrack", + "position": 34, + "title": "Don't Shed A Tear" + }, + { + "artist": "Men Without Hats", + "position": 35, + "title": "Pop Goes The World" + }, + { + "artist": "Stryper", + "position": 36, + "title": "Honestly" + }, + { + "artist": "The Kane Gang", + "position": 37, + "title": "Motortown" + }, + { + "artist": "Fleetwood Mac", + "position": 38, + "title": "Everywhere" + }, + { + "artist": "Pet Shop Boys & Dusty Springfield", + "position": 39, + "title": "What Have I Done To Deserve This?" + }, + { + "artist": "Salt-N-Pepa", + "position": 40, + "title": "Push It" + }, + { + "artist": "The Cure", + "position": 41, + "title": "Just Like Heaven" + }, + { + "artist": "R.E.M.", + "position": 42, + "title": "The One I Love" + }, + { + "artist": "Tiffany", + "position": 43, + "title": "I Think We're Alone Now" + }, + { + "artist": "Cher", + "position": 44, + "title": "I Found Someone" + }, + { + "artist": "Gloria Estefan & Miami Sound Machine", + "position": 45, + "title": "Can't Stay Away From You" + }, + { + "artist": "M/A/R/R/S", + "position": 46, + "title": "Pump Up The Volume" + }, + { + "artist": "Bourgeois Tagg", + "position": 47, + "title": "I Don't Mind At All" + }, + { + "artist": "Bananarama", + "position": 48, + "title": "I Can't Help It" + }, + { + "artist": "Stevie Wonder", + "position": 49, + "title": "Skeletons" + }, + { + "artist": "The Jets", + "position": 50, + "title": "I Do You" + }, + { + "artist": "The Cover Girls", + "position": 51, + "title": "Because Of You" + }, + { + "artist": "Billy Idol", + "position": 52, + "title": "Mony Mony" + }, + { + "artist": "U2", + "position": 53, + "title": "In God's Country" + }, + { + "artist": "Deja", + "position": 54, + "title": "You And Me Tonight" + }, + { + "artist": "Patrick Swayze (Featuring Wendy Fraser)", + "position": 55, + "title": "She's Like The Wind" + }, + { + "artist": "Squeeze", + "position": 56, + "title": "853-5937" + }, + { + "artist": "Cutting Crew", + "position": 57, + "title": "I've Been In Love Before" + }, + { + "artist": "Shanice Wilson", + "position": 58, + "title": "(Baby Tell Me) Can You Dance" + }, + { + "artist": "Georgio", + "position": 59, + "title": "Lover's Lane" + }, + { + "artist": "Billy Idol", + "position": 60, + "title": "Hot In The City" + }, + { + "artist": "Rick Astley", + "position": 61, + "title": "Never Gonna Give You Up" + }, + { + "artist": "Squeeze", + "position": 62, + "title": "Hourglass" + }, + { + "artist": "Powersource (Solo...Sharon)", + "position": 63, + "title": "Dear Mr. Jesus" + }, + { + "artist": "Yes", + "position": 64, + "title": "Rhythm Of Love" + }, + { + "artist": "Dan Hill", + "position": 65, + "title": "Never Thought (That I Could Love)" + }, + { + "artist": "Earth, Wind & Fire", + "position": 66, + "title": "System Of Survival" + }, + { + "artist": "Buster Poindexter & His Banshees Of Blue", + "position": 67, + "title": "Hot Hot Hot" + }, + { + "artist": "Kiss", + "position": 68, + "title": "Reason To Live" + }, + { + "artist": "Poison", + "position": 69, + "title": "I Won't Forget You" + }, + { + "artist": "Eurythmics", + "position": 70, + "title": "I Need A Man" + }, + { + "artist": "Fleetwood Mac", + "position": 71, + "title": "Little Lies" + }, + { + "artist": "Swing Out Sister", + "position": 72, + "title": "Breakout" + }, + { + "artist": "Yes", + "position": 73, + "title": "Love Will Find A Way" + }, + { + "artist": "Alexander O'Neal", + "position": 74, + "title": "Criticize" + }, + { + "artist": "Prince", + "position": 75, + "title": "U Got The Look" + }, + { + "artist": "Swing Out Sister", + "position": 76, + "title": "Twilight World" + }, + { + "artist": "Mick Jagger", + "position": 77, + "title": "Throwaway" + }, + { + "artist": "Bruce Springsteen", + "position": 78, + "title": "Brilliant Disguise" + }, + { + "artist": "REO Speedwagon", + "position": 79, + "title": "In My Dreams" + }, + { + "artist": "Boy George", + "position": 80, + "title": "Live My Life (From The Film \"Hiding Out\")" + }, + { + "artist": "The Alarm", + "position": 81, + "title": "Rain In The Summertime" + }, + { + "artist": "Dokken", + "position": 82, + "title": "Burning Like A Flame" + }, + { + "artist": "Tony Terry", + "position": 83, + "title": "She's Fly" + }, + { + "artist": "Noel", + "position": 84, + "title": "Silent Morning" + }, + { + "artist": "Europe", + "position": 85, + "title": "Cherokee" + }, + { + "artist": "Lisa Lisa & Cult Jam Featuring Full Force", + "position": 86, + "title": "Someone To Love Me For Me" + }, + { + "artist": "Glenn Jones", + "position": 87, + "title": "We've Only Just Begun (The Romance Is Not Over)" + }, + { + "artist": "Glenn Medeiros", + "position": 88, + "title": "Lonely Won't Leave Me Alone" + }, + { + "artist": "Expose", + "position": 89, + "title": "Let Me Be The One" + }, + { + "artist": "Smokey Robinson", + "position": 90, + "title": "What's Too Much" + }, + { + "artist": "Motley Crue", + "position": 91, + "title": "You're All I Need" + }, + { + "artist": "Kool & The Gang", + "position": 92, + "title": "Special Way" + }, + { + "artist": "Sammy Hagar", + "position": 93, + "title": "Eagles Fly" + }, + { + "artist": "Pet Shop Boys", + "position": 94, + "title": "It's A Sin" + }, + { + "artist": "Heart", + "position": 95, + "title": "Who Will You Run To" + }, + { + "artist": "Depeche Mode", + "position": 96, + "title": "Never Let Me Down Again" + }, + { + "artist": "Madonna", + "position": 97, + "title": "Causing A Commotion" + }, + { + "artist": "Whitesnake", + "position": 98, + "title": "Here I Go Again" + }, + { + "artist": "Martha Davis", + "position": 99, + "title": "Don't Tell Me The Time" + }, + { + "artist": "Kenny G. (Vocal By Lenny Williams)", + "position": 100, + "title": "Don't Make Me Wait For Love" + } + ], + "title": "1987 - Hot 100" + }, + { + "songs": [ + { + "artist": "Hank Williams Jr.", + "position": 1, + "title": "Mind Your Own Business" + }, + { + "artist": "Michael Johnson", + "position": 2, + "title": "Give Me Wings" + }, + { + "artist": "Reba McEntire", + "position": 3, + "title": "What Am I Gonna Do About You" + }, + { + "artist": "Ricky Skaggs", + "position": 4, + "title": "Love s Gonna Get You Someday" + }, + { + "artist": "The Judds", + "position": 5, + "title": "Cry Myself To Sleep" + }, + { + "artist": "Don Williams", + "position": 6, + "title": "Then It s Love" + }, + { + "artist": "Conway Twitty", + "position": 7, + "title": "Fallin For You For Years" + }, + { + "artist": "T.G. Sheppard", + "position": 8, + "title": "Half Past Forever (Till I m Blue In The Heart)" + }, + { + "artist": "Dan Seals", + "position": 9, + "title": "You Still Move Me" + }, + { + "artist": "The O Kanes", + "position": 10, + "title": "Oh Darlin" + }, + { + "artist": "Judy Rodman", + "position": 11, + "title": "She Thinks That She ll Marry" + }, + { + "artist": "Pake McEntire", + "position": 12, + "title": "Bad Love" + }, + { + "artist": "John Conlee", + "position": 13, + "title": "The Carpenter" + }, + { + "artist": "Gary Morris", + "position": 14, + "title": "Leave Me Lonely" + }, + { + "artist": "Lionel Richie", + "position": 15, + "title": "Deep River Woman" + }, + { + "artist": "Bellamy Brothers With the Forester Sisters", + "position": 16, + "title": "Too Much Is Not Enough" + }, + { + "artist": "Eddie Rabbitt", + "position": 17, + "title": "Gotta Have You" + }, + { + "artist": "Lyle Lovett", + "position": 18, + "title": "Cowboy Man" + }, + { + "artist": "Tanya Tucker", + "position": 19, + "title": "I ll Come Back As Another Woman" + }, + { + "artist": "Ronnie Milsap", + "position": 20, + "title": "How Do I Turn You On" + }, + { + "artist": "Crystal Gayle", + "position": 21, + "title": "Straight To The Heart" + }, + { + "artist": "The Nitty Gritty Dirt Band", + "position": 22, + "title": "Fire In The Sky" + }, + { + "artist": "Keith Whitley", + "position": 23, + "title": "Homecoming 63" + }, + { + "artist": "Eddy Raven", + "position": 24, + "title": "Right Hand Man" + }, + { + "artist": "Mel McDaniel", + "position": 25, + "title": "Stand On It" + } + ], + "title": "1986 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Bangles", + "position": 1, + "title": "Walk Like An Egyptian" + }, + { + "artist": "Wang Chung", + "position": 2, + "title": "Everybody Have Fun Tonight" + }, + { + "artist": "Duran Duran", + "position": 3, + "title": "Notorious" + }, + { + "artist": "Gregory Abbott", + "position": 4, + "title": "Shake You Down" + }, + { + "artist": "Bruce Hornsby", + "position": 5, + "title": "The Way It Is" + }, + { + "artist": "Robbie Nevil", + "position": 6, + "title": "C est La Vie" + }, + { + "artist": "Janet Jackson", + "position": 7, + "title": "Control" + }, + { + "artist": "Bruce Springsteen", + "position": 8, + "title": "War" + }, + { + "artist": "Ben E. King", + "position": 9, + "title": "Stand By Me" + }, + { + "artist": "Pretenders", + "position": 10, + "title": "Don't Get Me Wrong" + }, + { + "artist": "Billy Idol", + "position": 11, + "title": "To Be A Lover" + }, + { + "artist": "Survivor", + "position": 12, + "title": "Is This Love" + }, + { + "artist": "Genesis", + "position": 13, + "title": "Land Of Confusion" + }, + { + "artist": "Kool", + "position": 14, + "title": "Victory" + }, + { + "artist": "Billy Vera", + "position": 15, + "title": "At This Moment" + }, + { + "artist": "John Berry", + "position": 16, + "title": "Love Is Forever" + }, + { + "artist": "Howard Jones", + "position": 17, + "title": "You Know I Love You ... Don t You?" + }, + { + "artist": "Glass Tiger", + "position": 18, + "title": "Someday" + }, + { + "artist": "Timbuk 3", + "position": 19, + "title": "The Future s So Bright, I Gotta Wear Shades" + }, + { + "artist": "Huey Lewis", + "position": 20, + "title": "Hip To Be Square" + }, + { + "artist": "Peter Cetera With Amy Grant", + "position": 21, + "title": "The Next Time I Fall" + }, + { + "artist": "Madonna", + "position": 22, + "title": "Open Your Heart" + }, + { + "artist": "Kansas", + "position": 23, + "title": "All I Wanted" + }, + { + "artist": "Bon Jovi", + "position": 24, + "title": "You Give Love A Bad Name" + }, + { + "artist": "Carly Simon", + "position": 25, + "title": "Coming Around Again" + }, + { + "artist": "Cyndi Lauper", + "position": 26, + "title": "Change Of Heart" + }, + { + "artist": "Samantha Fox", + "position": 27, + "title": "Touch Me (I Want Your Body)" + }, + { + "artist": "Gloria Estefan", + "position": 28, + "title": "Falling In Love (Uh-Oh)" + }, + { + "artist": "Run-D.M.C.", + "position": 29, + "title": "You Be Illin" + }, + { + "artist": "The Georgia Satellites", + "position": 30, + "title": "Keep Your Hands To Yourself" + }, + { + "artist": "Tina Turner", + "position": 31, + "title": "Two People" + }, + { + "artist": "Nancy Martinez", + "position": 32, + "title": "For Tonight" + }, + { + "artist": "Cameo", + "position": 33, + "title": "Word Up" + }, + { + "artist": "Billy Joel", + "position": 34, + "title": "This Is The Time" + }, + { + "artist": "Boston", + "position": 35, + "title": "We re Ready" + }, + { + "artist": "Chicago", + "position": 36, + "title": "Will You Still Love Me?" + }, + { + "artist": "Chico DeBarge", + "position": 37, + "title": "Talk To Me" + }, + { + "artist": "The Human League", + "position": 38, + "title": "Human" + }, + { + "artist": "Ready For The World", + "position": 39, + "title": "Love You Down" + }, + { + "artist": "Luther Vandross", + "position": 40, + "title": "Stop To Love" + }, + { + "artist": "Lionel Richie", + "position": 41, + "title": "Love Will Conquer All" + }, + { + "artist": "The Jets", + "position": 42, + "title": "You Got It All" + }, + { + "artist": "Lionel Richie", + "position": 43, + "title": "Ballerina Girl" + }, + { + "artist": "Benjamin Orr", + "position": 44, + "title": "Stay The Night" + }, + { + "artist": "The Pointer Sisters", + "position": 45, + "title": "Goldmine" + }, + { + "artist": "Cinderella", + "position": 46, + "title": "Nobody s Fool" + }, + { + "artist": "Freddie Jackson", + "position": 47, + "title": "Tasty Love" + }, + { + "artist": "Bon Jovi", + "position": 48, + "title": "Livin On A Prayer" + }, + { + "artist": "Journey", + "position": 49, + "title": "I ll Be Alright Without You" + }, + { + "artist": "Peter Gabriel", + "position": 50, + "title": "Big Time" + }, + { + "artist": "Talking Heads", + "position": 51, + "title": "Wild Wild Life" + }, + { + "artist": "Aretha Franklin", + "position": 52, + "title": "Jimmy Lee" + }, + { + "artist": "Jesse Johnson (Featuring Sly Stone)", + "position": 53, + "title": "Crazay" + }, + { + "artist": "The Human League", + "position": 54, + "title": "I Need Your Loving" + }, + { + "artist": "Anita Baker", + "position": 55, + "title": "Caught Up In The Rapture" + }, + { + "artist": "Don Johnson", + "position": 56, + "title": "Heartache Away" + }, + { + "artist": "Madonna", + "position": 57, + "title": "True Blue" + }, + { + "artist": "Boston", + "position": 58, + "title": "Amanda" + }, + { + "artist": "Eddie Money", + "position": 59, + "title": "Take Me Home Tonight" + }, + { + "artist": "Corey Hart", + "position": 60, + "title": "Can t Help Falling In Love" + }, + { + "artist": "Debbie Harry", + "position": 61, + "title": "French Kissin" + }, + { + "artist": "Jeff Lorber", + "position": 62, + "title": "Facts Of Love" + }, + { + "artist": "Dead Or Alive", + "position": 63, + "title": "Brand New Lover" + }, + { + "artist": "Toto", + "position": 64, + "title": "I ll Be Over You" + }, + { + "artist": "Eddie Money", + "position": 65, + "title": "I Wanna Go Back" + }, + { + "artist": "Ann Wilson", + "position": 66, + "title": "The Best Man In The World" + }, + { + "artist": "Linda Ronstadt", + "position": 67, + "title": "Somewhere Out There (From \"An American Tail\")" + }, + { + "artist": "Beastie Boys", + "position": 68, + "title": "(You Gotta) Fight For Your Right (To Party!)" + }, + { + "artist": "Orchestral Manoeuvres In The Dark", + "position": 69, + "title": "(Forever) Live And Die" + }, + { + "artist": "Grace Jones", + "position": 70, + "title": "I m Not Perfect (But I m Perfect For You)" + }, + { + "artist": "Oran Juice Jones", + "position": 71, + "title": "The Rain" + }, + { + "artist": "Bobby Brown", + "position": 72, + "title": "Girlfriend" + }, + { + "artist": "Stacey Q", + "position": 73, + "title": "We Connect" + }, + { + "artist": "Paul Young", + "position": 74, + "title": "Some People" + }, + { + "artist": "Commodores", + "position": 75, + "title": "Goin To The Bank" + }, + { + "artist": "Pet Shop Boys", + "position": 76, + "title": "Suburbia" + }, + { + "artist": "Toto", + "position": 77, + "title": "Without Your Love" + }, + { + "artist": "David", + "position": 78, + "title": "Welcome To The Boomtown" + }, + { + "artist": "Robert Palmer", + "position": 79, + "title": "I Didn t Mean To Turn You On" + }, + { + "artist": "Cameo", + "position": 80, + "title": "Candy" + }, + { + "artist": "Ric Ocasek", + "position": 81, + "title": "True To You" + }, + { + "artist": "Paul Simon", + "position": 82, + "title": "Graceland" + }, + { + "artist": "Bob Geldof", + "position": 83, + "title": "This Is The World Calling" + }, + { + "artist": "Lisa Lisa", + "position": 84, + "title": "All Cried Out" + }, + { + "artist": "Daryl Hall", + "position": 85, + "title": "Foolish Pride" + }, + { + "artist": "Ric Ocasek", + "position": 86, + "title": "Emotion In Motion" + }, + { + "artist": "The Communards", + "position": 87, + "title": "Don't Leave Me This Way" + }, + { + "artist": "Bob Seger", + "position": 88, + "title": "Miami" + }, + { + "artist": "John Parr", + "position": 89, + "title": "Blame It On The Radio" + }, + { + "artist": "El DeBarge", + "position": 90, + "title": "Someone" + }, + { + "artist": "Secret Ties", + "position": 91, + "title": "Dancin In My Sleep" + }, + { + "artist": "Uptown", + "position": 92, + "title": "(I Know) I m Losing You" + }, + { + "artist": "Bananarama", + "position": 93, + "title": "A Trick Of The Night" + }, + { + "artist": "Stacy Lattisaw", + "position": 94, + "title": "Nail It To The Wall" + }, + { + "artist": "Eurythmics", + "position": 95, + "title": "Thorn In My Side" + }, + { + "artist": "Five Star", + "position": 96, + "title": "If I Say Yes" + }, + { + "artist": "Cyndi Lauper", + "position": 97, + "title": "True Colors" + }, + { + "artist": "Anita Baker", + "position": 98, + "title": "Sweet Love" + }, + { + "artist": "Steve Winwood", + "position": 99, + "title": "Freedom Overspill" + }, + { + "artist": "Rod Stewart", + "position": 100, + "title": "Every Beat Of My Heart" + } + ], + "title": "1986 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Judds", + "position": 1, + "title": "Have Mercy" + }, + { + "artist": "Kenny Rogers", + "position": 2, + "title": "Morning Desire" + }, + { + "artist": "Dan Seals", + "position": 3, + "title": "Bop" + }, + { + "artist": "Rosanne Cash", + "position": 4, + "title": "Never Be You" + }, + { + "artist": "Reba McEntire", + "position": 5, + "title": "Only In My Mind" + }, + { + "artist": "The Nitty Gritty Dirt Band", + "position": 6, + "title": "Home Again In My Heart" + }, + { + "artist": "Janie Frickie", + "position": 7, + "title": "Somebody Else s Fire" + }, + { + "artist": "Gene Watson", + "position": 8, + "title": "Memories To Burn" + }, + { + "artist": "The Forester Sisters", + "position": 9, + "title": "Just In Case" + }, + { + "artist": "Eddie Rabbitt", + "position": 10, + "title": "A World Without Love" + }, + { + "artist": "Restless Heart", + "position": 11, + "title": "(Back To The) Heartbreak Kid" + }, + { + "artist": "Juice Newton", + "position": 12, + "title": "Hurt" + }, + { + "artist": "John Conlee", + "position": 13, + "title": "Old School" + }, + { + "artist": "George Strait", + "position": 14, + "title": "The Chair" + }, + { + "artist": "Crystal Gayle And Gary Morris", + "position": 15, + "title": "Makin Up For Lost Time" + }, + { + "artist": "T. Graham Brown", + "position": 16, + "title": "I Tell It Like It Used To Be" + }, + { + "artist": "Sawyer Brown", + "position": 17, + "title": "Betty s Bein Bad" + }, + { + "artist": "Marie Osmond", + "position": 18, + "title": "There s No Stopping Your Heart" + }, + { + "artist": "Conway Twitty", + "position": 19, + "title": "The Legend And The Man" + }, + { + "artist": "Billy Joe Royal", + "position": 20, + "title": "Burned Like A Rocket" + }, + { + "artist": "Steve Wariner", + "position": 21, + "title": "You Can Dream Of Me" + }, + { + "artist": "The Oak Ridge Boys", + "position": 22, + "title": "Come On In (You Did The Best You Could)" + }, + { + "artist": "George Jones", + "position": 23, + "title": "The One I Loved Back Then (The Corvette Song)" + }, + { + "artist": "Waylon Jennings", + "position": 24, + "title": "The Devil s On The Loose" + }, + { + "artist": "Glen Campbell", + "position": 25, + "title": "It s Just A Matter Of Time" + } + ], + "title": "1985 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Lionel Richie", + "position": 1, + "title": "Say You, Say Me (Title Song From White Nights)" + }, + { + "artist": "Eddie Murphy", + "position": 2, + "title": "Party All The Time" + }, + { + "artist": "Simple Minds", + "position": 3, + "title": "Alive And Kicking" + }, + { + "artist": "Dionne", + "position": 4, + "title": "That s What Friends Are For" + }, + { + "artist": "Klymaxx", + "position": 5, + "title": "I Miss You" + }, + { + "artist": "John Mellencamp", + "position": 6, + "title": "Small Town" + }, + { + "artist": "Mr. Mister", + "position": 7, + "title": "Broken Wings" + }, + { + "artist": "Phil Collins/Marilyn Martin", + "position": 8, + "title": "Separate Lives (Theme From White Nights)" + }, + { + "artist": "The Cars", + "position": 9, + "title": "Tonight She Comes" + }, + { + "artist": "Arcadia", + "position": 10, + "title": "Election Day" + }, + { + "artist": "Stevie Nicks", + "position": 11, + "title": "Talk To Me" + }, + { + "artist": "ZZ Top", + "position": 12, + "title": "Sleeping Bag" + }, + { + "artist": "Dire Straits", + "position": 13, + "title": "Walk Of Life" + }, + { + "artist": "Scritti Politti", + "position": 14, + "title": "Perfect Way" + }, + { + "artist": "Survivor", + "position": 15, + "title": "Burning Heart" + }, + { + "artist": "Bruce Springsteen", + "position": 16, + "title": "My Hometown" + }, + { + "artist": "Sting", + "position": 17, + "title": "Love Is The Seventh Wave" + }, + { + "artist": "Kool", + "position": 18, + "title": "Emergency" + }, + { + "artist": "Bryan Adams/Tina Turner", + "position": 19, + "title": "It s Only Love" + }, + { + "artist": "Wham!", + "position": 20, + "title": "I m Your Man" + }, + { + "artist": "Miami Sound Machine", + "position": 21, + "title": "Conga" + }, + { + "artist": "Stevie Wonder", + "position": 22, + "title": "Go Home" + }, + { + "artist": "Clarence Clemons", + "position": 23, + "title": "You re A Friend Of Mine" + }, + { + "artist": "Paul McCartney", + "position": 24, + "title": "Spies Like Us" + }, + { + "artist": "Heart", + "position": 25, + "title": "Never" + }, + { + "artist": "Starship", + "position": 26, + "title": "We Built This City" + }, + { + "artist": "Night Ranger", + "position": 27, + "title": "Goodbye" + }, + { + "artist": "Ta Mara", + "position": 28, + "title": "Everybody Dance" + }, + { + "artist": "Starpoint", + "position": 29, + "title": "Object Of My Desire" + }, + { + "artist": "Jellybean", + "position": 30, + "title": "Sidewalk Talk" + }, + { + "artist": "Billy Ocean", + "position": 31, + "title": "When The Going Gets Tough (Jewel Of The Nile Theme)" + }, + { + "artist": "Pat Benatar", + "position": 32, + "title": "Sex As A Weapon" + }, + { + "artist": "Pete Townsend", + "position": 33, + "title": "Face The Face" + }, + { + "artist": "Aretha Franklin", + "position": 34, + "title": "Who s Zoomin Who" + }, + { + "artist": "Elton John", + "position": 35, + "title": "Wrap Her Up" + }, + { + "artist": "Whitney Houston", + "position": 36, + "title": "How Will I Know" + }, + { + "artist": "Sheila E", + "position": 37, + "title": "A Love Bizarre" + }, + { + "artist": "Sade", + "position": 38, + "title": "The Sweetest Taboo" + }, + { + "artist": "Corey Hart", + "position": 39, + "title": "Everything In My Heart" + }, + { + "artist": "Thompson Twins", + "position": 40, + "title": "Lay Your Hands On Me" + }, + { + "artist": "Artists United Against Apartheid", + "position": 41, + "title": "Sun City" + }, + { + "artist": "Eurythmics And Aretha Franklin", + "position": 42, + "title": "Sisters Are Doing It For Themselves" + }, + { + "artist": "A-Ha", + "position": 43, + "title": "The Sun Always Shines on T.V." + }, + { + "artist": "James Brown", + "position": 44, + "title": "Living In America" + }, + { + "artist": "Baltimora", + "position": 45, + "title": "Tarzan Boy (From \"Teenage Mutant Ninja Turtles III\")" + }, + { + "artist": "The Dream Academy", + "position": 46, + "title": "Life In A Northern Town" + }, + { + "artist": "Glenn Frey", + "position": 47, + "title": "You Belong To The City" + }, + { + "artist": "Rush", + "position": 48, + "title": "The Big Money" + }, + { + "artist": "Sheena Easton", + "position": 49, + "title": "Do It For Love" + }, + { + "artist": "Mr. Mister", + "position": 50, + "title": "Kyrie" + }, + { + "artist": "Wang Chung", + "position": 51, + "title": "To Live And Die In L.A." + }, + { + "artist": "Mike", + "position": 52, + "title": "Silent Running" + }, + { + "artist": "Asia", + "position": 53, + "title": "Go" + }, + { + "artist": "Ready For The World", + "position": 54, + "title": "Digital Display" + }, + { + "artist": "New Edition", + "position": 55, + "title": "Count Me Out" + }, + { + "artist": "Twisted Sister", + "position": 56, + "title": "Leader Of The Pack" + }, + { + "artist": "Paul Young", + "position": 57, + "title": "Everything Must Change" + }, + { + "artist": "Stevie Wonder", + "position": 58, + "title": "Part-Time Lover" + }, + { + "artist": "Jack Wagner", + "position": 59, + "title": "Too Young" + }, + { + "artist": "Freddie Jackson", + "position": 60, + "title": "You Are My Lady" + }, + { + "artist": "Jan Hammer", + "position": 61, + "title": "Miami Vice Theme" + }, + { + "artist": "Freddie Jackson", + "position": 62, + "title": "He ll Never Love You (Like I Do)" + }, + { + "artist": "Barbra Streisand", + "position": 63, + "title": "Somewhere (From West Side Story)" + }, + { + "artist": "Queen", + "position": 64, + "title": "One Vision" + }, + { + "artist": "Starship", + "position": 65, + "title": "Sara" + }, + { + "artist": "Hooters", + "position": 66, + "title": "Day By Day" + }, + { + "artist": "Isley/Jasper/Isley", + "position": 67, + "title": "Caravan Of Love" + }, + { + "artist": "David Foster", + "position": 68, + "title": "Love Theme From St. Elmo s Fire (Instrumental)" + }, + { + "artist": "Tears For Fears", + "position": 69, + "title": "Head Over Heels" + }, + { + "artist": "Lisa Lisa", + "position": 70, + "title": "Can You Feel The Beat" + }, + { + "artist": "James Taylor", + "position": 71, + "title": "Everyday" + }, + { + "artist": "Kenny Rogers", + "position": 72, + "title": "Morning Desire" + }, + { + "artist": "Tina Turner", + "position": 73, + "title": "One Of The Living" + }, + { + "artist": "Charlie Sexton", + "position": 74, + "title": "Beat s So Lonely" + }, + { + "artist": "Kate Bush", + "position": 75, + "title": "Running Up That Hill" + }, + { + "artist": "El DeBarge With DeBarge", + "position": 76, + "title": "The Heart Is Not So Smart" + }, + { + "artist": "O.M.D.", + "position": 77, + "title": "Secret" + }, + { + "artist": "Chaka Khan", + "position": 78, + "title": "Own The Night" + }, + { + "artist": "ABC", + "position": 79, + "title": "Be Near Me" + }, + { + "artist": "Atlantic Starr", + "position": 80, + "title": "Secret Lovers" + }, + { + "artist": "Nick Lowe", + "position": 81, + "title": "I Knew The Bride (When She Use To Rock N Roll)" + }, + { + "artist": "Eugene Wilde", + "position": 82, + "title": "Don t Say No Tonight" + }, + { + "artist": "John Cafferty", + "position": 83, + "title": "Small Town Girl" + }, + { + "artist": "Loverboy", + "position": 84, + "title": "Dangerous" + }, + { + "artist": "Sly Fox", + "position": 85, + "title": "Let s Go All The Way" + }, + { + "artist": "Fortune", + "position": 86, + "title": "Stacy" + }, + { + "artist": "Alisha", + "position": 87, + "title": "Baby Talk" + }, + { + "artist": "Joni Mitchell", + "position": 88, + "title": "Good Friends" + }, + { + "artist": "Roger Daltrey", + "position": 89, + "title": "Let Me Down Easy" + }, + { + "artist": "Kiss", + "position": 90, + "title": "Tears Are Falling" + }, + { + "artist": "The Alarm", + "position": 91, + "title": "Strength" + }, + { + "artist": "Whitney Houston", + "position": 92, + "title": "Saving All My Love For You" + }, + { + "artist": "Loverboy", + "position": 93, + "title": "Lovin Every Minute Of It" + }, + { + "artist": "Talking Heads", + "position": 94, + "title": "And She Was" + }, + { + "artist": "The Pointer Sisters", + "position": 95, + "title": "Freedom" + }, + { + "artist": "Olivia Newton-John", + "position": 96, + "title": "Soul Kiss" + }, + { + "artist": "A-Ha", + "position": 97, + "title": "Take On Me" + }, + { + "artist": "Sting", + "position": 98, + "title": "Fortress Around Your Heart" + }, + { + "artist": "Ray Parker Jr.", + "position": 99, + "title": "Girls Are More Fun" + }, + { + "artist": "John Mellencamp", + "position": 100, + "title": "Lonely Ol Night" + } + ], + "title": "1985 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Judds", + "position": 1, + "title": "Why Not Me" + }, + { + "artist": "George Jones", + "position": 2, + "title": "She's My Rock" + }, + { + "artist": "Nitty Gritty Dirt Band", + "position": 3, + "title": "I Love Only You" + }, + { + "artist": "George Strait", + "position": 4, + "title": "Does Fort Worth Ever Cross Your Mind" + }, + { + "artist": "Eddie Rabbitt", + "position": 5, + "title": "The Best Year Of My Life" + }, + { + "artist": "Waylon Jennings", + "position": 6, + "title": "America" + }, + { + "artist": "Reba McEntire", + "position": 7, + "title": "How Blue" + }, + { + "artist": "Anne Murray & Dave Loggins", + "position": 8, + "title": "Nobody Loves Me Like You Do" + }, + { + "artist": "Mark Gray", + "position": 9, + "title": "Diamond In The Dust" + }, + { + "artist": "Hank Williams Jr.", + "position": 10, + "title": "All My Rowdy Friends Are Coming Over Tonight" + }, + { + "artist": "Barbara Mandrell", + "position": 11, + "title": "Crossword Puzzle" + }, + { + "artist": "John Conlee", + "position": 12, + "title": "Years After You" + }, + { + "artist": "Crystal Gayle", + "position": 13, + "title": "Me Against The Night" + }, + { + "artist": "Merle Haggard", + "position": 14, + "title": "A Place To Fall Apart" + }, + { + "artist": "Gene Watson", + "position": 15, + "title": "Got No Reason Now For Goin' Home" + }, + { + "artist": "Alabama", + "position": 16, + "title": "(There's A) Fire In The Night" + }, + { + "artist": "The Bellamy Brothers", + "position": 17, + "title": "World's Greatest Lover" + }, + { + "artist": "Ricky Skaggs", + "position": 18, + "title": "Something In My Heart" + }, + { + "artist": "Conway Twitty", + "position": 19, + "title": "Ain't She Something Else" + }, + { + "artist": "The Oak Ridge Boys", + "position": 20, + "title": "Make My Life With You" + }, + { + "artist": "Keith Stegall", + "position": 21, + "title": "Whatever Turns You On" + }, + { + "artist": "T.G. Sheppard", + "position": 22, + "title": "One Owner Heart" + }, + { + "artist": "Sawyer Brown", + "position": 23, + "title": "Leona" + }, + { + "artist": "Ed Bruce", + "position": 24, + "title": "You Turn Me On (Like A Radio)" + }, + { + "artist": "B.J. Thomas", + "position": 25, + "title": "The Girl Most Likely to" + } + ], + "title": "1984 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Madonna", + "position": 1, + "title": "Like A Virgin" + }, + { + "artist": "Duran Duran", + "position": 2, + "title": "The Wild Boys" + }, + { + "artist": "Daryl Hall John Oates", + "position": 3, + "title": "Out Of Touch" + }, + { + "artist": "The Honeydrippers", + "position": 4, + "title": "Sea Of Love" + }, + { + "artist": "New Edition", + "position": 5, + "title": "Cool It Now" + }, + { + "artist": "Pat Benatar", + "position": 6, + "title": "We Belong" + }, + { + "artist": "Chaka Khan", + "position": 7, + "title": "I Feel For You" + }, + { + "artist": "Paul McCartney", + "position": 8, + "title": "No More Lonely Nights" + }, + { + "artist": "Jack Wagner", + "position": 9, + "title": "All I Need" + }, + { + "artist": "Julian Lennon", + "position": 10, + "title": "Valotte" + }, + { + "artist": "Wham!", + "position": 11, + "title": "Wake Me Up Before You Go-Go" + }, + { + "artist": "Bryan Adams", + "position": 12, + "title": "Run To You" + }, + { + "artist": "Cyndi Lauper", + "position": 13, + "title": "All Through The Night" + }, + { + "artist": "Bruce Springsteen", + "position": 14, + "title": "Born In The USA" + }, + { + "artist": "Chicago", + "position": 15, + "title": "You're The Inspiration" + }, + { + "artist": "Survivor", + "position": 16, + "title": "I Can't Hold Back" + }, + { + "artist": "Jermaine Jackson", + "position": 17, + "title": "Do What You Do" + }, + { + "artist": "Lionel Richie", + "position": 18, + "title": "Penny Lover" + }, + { + "artist": "Bob Seger", + "position": 19, + "title": "Understanding" + }, + { + "artist": "The Cars", + "position": 20, + "title": "Hello Again" + }, + { + "artist": "Foreigner", + "position": 21, + "title": "I Want To Know What Love Is" + }, + { + "artist": "Philip Bailey With Phil Collins", + "position": 22, + "title": "Easy Lover" + }, + { + "artist": "Sheena Easton", + "position": 23, + "title": "Strut" + }, + { + "artist": "Rebbie Jackson", + "position": 24, + "title": "Centipede" + }, + { + "artist": "Ray Parker Jr.", + "position": 25, + "title": "Jamie" + }, + { + "artist": "Huey Lewis & The News", + "position": 26, + "title": "Walking On A Thin Line" + }, + { + "artist": "Don Henley", + "position": 27, + "title": "The Boys Of Summer" + }, + { + "artist": "Dan Hartman", + "position": 28, + "title": "We Are The Young" + }, + { + "artist": "Tina Turner", + "position": 29, + "title": "Better Be Good To Me" + }, + { + "artist": "Toto", + "position": 30, + "title": "Stranger In Town" + }, + { + "artist": "Billy Ocean", + "position": 31, + "title": "Lover Boy" + }, + { + "artist": "Prince And The Revolution", + "position": 32, + "title": "I Would Die 4 U" + }, + { + "artist": "Rick Springfield", + "position": 33, + "title": "Bruce" + }, + { + "artist": "Sheila E", + "position": 34, + "title": "The Belle Of St. Mark" + }, + { + "artist": "John Cafferty & The Beaver Brown Band", + "position": 35, + "title": "Tender Years" + }, + { + "artist": "Stevie Wonder", + "position": 36, + "title": "Love Light In Flight" + }, + { + "artist": "Wham! Featuring George Michael", + "position": 37, + "title": "Careless Whisper" + }, + { + "artist": "U2", + "position": 38, + "title": "(Pride) In The Name Of Love" + }, + { + "artist": "Steve Perry", + "position": 39, + "title": "Foolish Heart" + }, + { + "artist": "The Pointer Sisters", + "position": 40, + "title": "Neutron Dance" + }, + { + "artist": "Giuffria", + "position": 41, + "title": "Call To The Heart" + }, + { + "artist": "Daryl Hall John Oates", + "position": 42, + "title": "Method Of Modern Love" + }, + { + "artist": "Elton John", + "position": 43, + "title": "In Neon" + }, + { + "artist": "Corey Hart", + "position": 44, + "title": "It Ain't Enough" + }, + { + "artist": "Ashford & Simpson", + "position": 45, + "title": "Solid" + }, + { + "artist": "Kool & The Gang", + "position": 46, + "title": "Misled" + }, + { + "artist": "Midnight Star", + "position": 47, + "title": "Operator" + }, + { + "artist": "Frankie Goes To Hollywood", + "position": 48, + "title": "Two Tribes" + }, + { + "artist": "The Time", + "position": 49, + "title": "Jungle Love" + }, + { + "artist": "Culture Club", + "position": 50, + "title": "Mistake No. 3" + }, + { + "artist": "General Public", + "position": 51, + "title": "Tenderness" + }, + { + "artist": "Glenn Frey", + "position": 52, + "title": "The Heat Is On" + }, + { + "artist": "David Bowie", + "position": 53, + "title": "Tonight" + }, + { + "artist": "Prince And The Revolution", + "position": 54, + "title": "Purple Rain" + }, + { + "artist": "Laura Branigan", + "position": 55, + "title": "Ti Amo" + }, + { + "artist": "Diana Ross", + "position": 56, + "title": "Missing You" + }, + { + "artist": "Cyndi Lauper", + "position": 57, + "title": "Money Changes Everything" + }, + { + "artist": "Barbra Streisand With Kim Carnes", + "position": 58, + "title": "Make No Mistake, He's Mine" + }, + { + "artist": "REO Speedwagon", + "position": 59, + "title": "I Do'wanna Know" + }, + { + "artist": "Sheena Easton", + "position": 60, + "title": "Sugar Walls" + }, + { + "artist": "John Fogerty", + "position": 61, + "title": "The Old Man Down The Road" + }, + { + "artist": "Billy Ocean", + "position": 62, + "title": "Caribbean Queen (No More Love On The Run)" + }, + { + "artist": "Stevie Wonder", + "position": 63, + "title": "I Just Called To Say I Love You" + }, + { + "artist": "Jeffrey Osborne", + "position": 64, + "title": "Don't Stop" + }, + { + "artist": "Band-Aid", + "position": 65, + "title": "Do They Know It's Christmas?" + }, + { + "artist": "Roger Hodgson", + "position": 66, + "title": "Had A Dream (Sleeping With The Enemy)" + }, + { + "artist": "Dennis DeYoung", + "position": 67, + "title": "Desert Moon" + }, + { + "artist": "Teena Marie", + "position": 68, + "title": "Lover Girl" + }, + { + "artist": "Billy Idol", + "position": 69, + "title": "Catch My Fall" + }, + { + "artist": "George Benson", + "position": 70, + "title": "20/20" + }, + { + "artist": "Alphaville", + "position": 71, + "title": "Big In Japan" + }, + { + "artist": "John Hunter", + "position": 72, + "title": "Tragedy" + }, + { + "artist": "Shalamar", + "position": 73, + "title": "Amnesia" + }, + { + "artist": "The Temptations", + "position": 74, + "title": "Treat Her Like A Lady" + }, + { + "artist": "Rick Dees", + "position": 75, + "title": "Eat My Shorts" + }, + { + "artist": "John Parr", + "position": 76, + "title": "Naughty Naughty" + }, + { + "artist": "Tommy Shaw", + "position": 77, + "title": "Lonely School" + }, + { + "artist": "Billy Squier", + "position": 78, + "title": "Eye On You" + }, + { + "artist": "New Edition", + "position": 79, + "title": "Mr. Telephone Man" + }, + { + "artist": "Rod Stewart", + "position": 80, + "title": "All Right Now" + }, + { + "artist": "John Waite", + "position": 81, + "title": "Tears" + }, + { + "artist": "Kenny Rogers", + "position": 83, + "title": "The Greatest Gift Of All" + }, + { + "artist": "Rick Springfield With Randy Crawford", + "position": 85, + "title": "Taxi Dancing" + }, + { + "artist": "Bronski Beat", + "position": 86, + "title": "Small Town Boy" + }, + { + "artist": "The Kinks", + "position": 87, + "title": "Do It Again" + }, + { + "artist": "Kenny Rogers With Kim Carnes & James Ingram", + "position": 88, + "title": "What About Me?" + }, + { + "artist": "Autograph", + "position": 89, + "title": "Turn Up The Radio" + }, + { + "artist": "Sammy Hagar", + "position": 91, + "title": "I Can't Drive 55" + }, + { + "artist": "Bananarama", + "position": 92, + "title": "The Wild Life" + }, + { + "artist": "Dazz Band", + "position": 93, + "title": "Let It All Blow" + }, + { + "artist": "David Bowie", + "position": 94, + "title": "Blue Jean" + }, + { + "artist": "The Pointer Sisters", + "position": 95, + "title": "I'm So Excited" + }, + { + "artist": "Culture Club", + "position": 96, + "title": "The War Song" + }, + { + "artist": "Peter Wolf", + "position": 97, + "title": "I Need You Tonight" + }, + { + "artist": "Scandal Featuring Patty Smyth", + "position": 98, + "title": "Hands Tied" + }, + { + "artist": "Dennis DeYoung", + "position": 99, + "title": "Don't Wait For Heroes" + }, + { + "artist": "Melissa Manchester", + "position": 100, + "title": "Thief Of Hearts" + } + ], + "title": "1984 - Hot 100" + }, + { + "songs": [ + { + "artist": "Larry Gatlin & The Gatlin Brothers", + "position": 1, + "title": "Houston (Means I'm One Day Closer To You)" + }, + { + "artist": "George Strait", + "position": 2, + "title": "You Look So Good In Love" + }, + { + "artist": "T.G. Sheppard", + "position": 3, + "title": "Slow Burn" + }, + { + "artist": "John Anderson", + "position": 4, + "title": "Black Sheep" + }, + { + "artist": "Charley Pride", + "position": 5, + "title": "Ev'ry Heart Should Have One" + }, + { + "artist": "The Oak Ridge Boys", + "position": 6, + "title": "Ozark Mountain Jubilee" + }, + { + "artist": "John Conlee", + "position": 7, + "title": "In My Eyes" + }, + { + "artist": "Ronnie McDowell", + "position": 8, + "title": "You Made A Wanted Man Of Me" + }, + { + "artist": "Nitty Gritty Dirt Band", + "position": 9, + "title": "Dance Little Jean" + }, + { + "artist": "Vern Gosdin", + "position": 10, + "title": "I Wonder Where We'd Be Tonight" + }, + { + "artist": "Crystal Gayle", + "position": 11, + "title": "The Sound Of Goodbye" + }, + { + "artist": "Hank Williams Jr.", + "position": 12, + "title": "Queen Of My Heart" + }, + { + "artist": "Ronnie Milsap", + "position": 13, + "title": "Show Her" + }, + { + "artist": "Willie Nelson With Waylon Jennings", + "position": 14, + "title": "Take It To The Limit" + }, + { + "artist": "Waylon Jennings With Hank Williams, Jr.", + "position": 15, + "title": "The Conversation" + }, + { + "artist": "Joe Stampley", + "position": 16, + "title": "Double Shot (Of My Baby's Love)" + }, + { + "artist": "Charly McClain", + "position": 17, + "title": "Sentimental Ol' You" + }, + { + "artist": "Gail Davies", + "position": 18, + "title": "You're A Hard Dog (To Keep Under The Porch)" + }, + { + "artist": "Mark Gray", + "position": 19, + "title": "Wounded Hearts" + }, + { + "artist": "Merle Haggard", + "position": 20, + "title": "That's The Way Love Goes" + }, + { + "artist": "Shelly West", + "position": 21, + "title": "Another Motel Memory" + }, + { + "artist": "Ed Bruce", + "position": 22, + "title": "After All" + }, + { + "artist": "Louise Mandrell", + "position": 23, + "title": "Runaway Heart" + }, + { + "artist": "Mel McDaniel", + "position": 24, + "title": "I Call It Love" + }, + { + "artist": "Kathy Mattea", + "position": 25, + "title": "Street Talk" + } + ], + "title": "1983 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Paul McCartney And Michael Jackson", + "position": 1, + "title": "Say Say Say" + }, + { + "artist": "Daryl Hall John Oates", + "position": 2, + "title": "Say It Isn't So" + }, + { + "artist": "Duran Duran", + "position": 3, + "title": "Union Of The Snake" + }, + { + "artist": "Yes", + "position": 4, + "title": "Owner Of A Lonely Heart" + }, + { + "artist": "Lionel Richie", + "position": 5, + "title": "All Night Long (All Night)" + }, + { + "artist": "Billy Joel", + "position": 6, + "title": "Uptown Girl" + }, + { + "artist": "The Rolling Stones", + "position": 9, + "title": "Undercover Of The Night" + }, + { + "artist": "Matthew Wilder", + "position": 10, + "title": "Break My Stride" + }, + { + "artist": "Elton John", + "position": 11, + "title": "I Guess That's Why They Call It The Blues" + }, + { + "artist": "The Romantics", + "position": 12, + "title": "Talking In Your Sleep" + }, + { + "artist": "Culture Club", + "position": 13, + "title": "Church Of The Poison Mind" + }, + { + "artist": "Peter Schilling", + "position": 14, + "title": "Major Tom (Coming Home)" + }, + { + "artist": "Quiet Riot", + "position": 15, + "title": "Cum On Feel The Noize" + }, + { + "artist": "The Police", + "position": 16, + "title": "Synchronicity II" + }, + { + "artist": "Culture Club", + "position": 17, + "title": "Karma Chameleon" + }, + { + "artist": "Kenny Rogers with Dolly Parton", + "position": 18, + "title": "Islands In The Stream" + }, + { + "artist": "Irene Cara", + "position": 19, + "title": "Why Me?" + }, + { + "artist": "Big Country", + "position": 20, + "title": "In A Big Country" + }, + { + "artist": "Lionel Richie", + "position": 21, + "title": "Running With The Night" + }, + { + "artist": "Kool & The Gang", + "position": 22, + "title": "Joanna" + }, + { + "artist": "Barry Manilow", + "position": 23, + "title": "Read 'Em And Weep" + }, + { + "artist": "John Cougar Mellencamp", + "position": 24, + "title": "Crumblin' Down" + }, + { + "artist": "Thirty Eight Special", + "position": 25, + "title": "If I'd Been The One" + }, + { + "artist": "Debarge", + "position": 26, + "title": "Time Will Reveal" + }, + { + "artist": "Genesis", + "position": 27, + "title": "That's All" + }, + { + "artist": "Ray Parker Jr.", + "position": 28, + "title": "I Still Can't Get Over Loving You" + }, + { + "artist": "John Mellencamp", + "position": 29, + "title": "Pink Houses" + }, + { + "artist": "Rufus & Chaka Khan", + "position": 30, + "title": "Ain't Nobody" + }, + { + "artist": "Madonna", + "position": 31, + "title": "Holiday" + }, + { + "artist": "Jump 'n The Saddle", + "position": 32, + "title": "The Curly Shuffle" + }, + { + "artist": "Jeffrey Osborne", + "position": 33, + "title": "Stay With Me Tonight" + }, + { + "artist": "Spandau Ballet", + "position": 34, + "title": "Gold" + }, + { + "artist": "The Fixx", + "position": 35, + "title": "The Sign Of Fire" + }, + { + "artist": "Huey Lewis & The News", + "position": 36, + "title": "Heart And Soul" + }, + { + "artist": "Naked Eyes", + "position": 37, + "title": "When The Lights Go Out" + }, + { + "artist": "Christopher Cross", + "position": 38, + "title": "Think Of Laura" + }, + { + "artist": "Deborah Allen", + "position": 39, + "title": "Baby I Lied" + }, + { + "artist": "Robert Plant", + "position": 40, + "title": "In The Mood" + }, + { + "artist": "Rick Springfield", + "position": 41, + "title": "Souls" + }, + { + "artist": "Shannon", + "position": 42, + "title": "Let The Music Play" + }, + { + "artist": "Pretenders", + "position": 43, + "title": "Middle Of The Road" + }, + { + "artist": "Billy Joel", + "position": 44, + "title": "An Innocent Man" + }, + { + "artist": "The Motels", + "position": 45, + "title": "Remember The Night" + }, + { + "artist": "Real Life", + "position": 46, + "title": "Send Me An Angel" + }, + { + "artist": "Michael Jackson", + "position": 47, + "title": "P.Y.T. (Pretty Young Thing)" + }, + { + "artist": "Stevie Nicks", + "position": 48, + "title": "Nightbird" + }, + { + "artist": "Paul McCartney", + "position": 49, + "title": "So Bad" + }, + { + "artist": "James Ingram With Michael McDonald", + "position": 50, + "title": "Yah Mo B There" + }, + { + "artist": "Bonnie Tyler", + "position": 51, + "title": "Take Me Back" + }, + { + "artist": "Rick James And Smokey Robinson", + "position": 52, + "title": "Ebony Eyes" + }, + { + "artist": "Linda Ronstadt & The Nelson Riddle Orchestra", + "position": 53, + "title": "What's New" + }, + { + "artist": "The Alan Parsons Project", + "position": 54, + "title": "You Don't Believe" + }, + { + "artist": "Eddie Money", + "position": 55, + "title": "Big Crash" + }, + { + "artist": "Stray Cats", + "position": 56, + "title": "I Won't Stand In Your Way" + }, + { + "artist": "Barbra Streisand", + "position": 57, + "title": "The Way He Makes Me Feel" + }, + { + "artist": "Irene Cara", + "position": 58, + "title": "The Dream" + }, + { + "artist": "Re-flex", + "position": 59, + "title": "The Politics Of Dancing" + }, + { + "artist": "Dolly Parton", + "position": 60, + "title": "Save The Last Dance For Me" + }, + { + "artist": "Night Ranger", + "position": 61, + "title": "(You Can Still) Rock In America" + }, + { + "artist": "Nena", + "position": 62, + "title": "99 Luftballons" + }, + { + "artist": "Sheena Easton", + "position": 63, + "title": "Almost Over You" + }, + { + "artist": "Midnight Star", + "position": 64, + "title": "Wet My Whistle" + }, + { + "artist": "Talking Heads", + "position": 65, + "title": "This Must Be The Place" + }, + { + "artist": "Kiss", + "position": 66, + "title": "Lick It Up" + }, + { + "artist": "KC", + "position": 67, + "title": "Give It Up" + }, + { + "artist": "Bonnie Tyler", + "position": 68, + "title": "Total Eclipse Of The Heart" + }, + { + "artist": "Cyndi Lauper", + "position": 69, + "title": "Girls Just Want To Have Fun" + }, + { + "artist": "Peabo Bryson/Roberta Flack", + "position": 70, + "title": "Tonight, I Celebrate My Love" + }, + { + "artist": "Sheena Easton", + "position": 71, + "title": "Telefone (long Distance Love Affair)" + }, + { + "artist": "The Motels", + "position": 72, + "title": "Suddenly Last Summer" + }, + { + "artist": "The Doors", + "position": 73, + "title": "Gloria" + }, + { + "artist": "Peabo Bryson & Roberta Flack", + "position": 74, + "title": "You're Looking Like Love To Me" + }, + { + "artist": "Rainbow", + "position": 75, + "title": "Street Of Dreams" + }, + { + "artist": "Jackson Browne", + "position": 76, + "title": "Tender Is The Night" + }, + { + "artist": "Herb Alpert", + "position": 77, + "title": "Red Hot" + }, + { + "artist": "Asia", + "position": 78, + "title": "The Smile Has Left Your Eyes" + }, + { + "artist": "Air Supply", + "position": 80, + "title": "Making Love Out Of Nothing At All" + }, + { + "artist": "Michael Stanley Band", + "position": 81, + "title": "Someone Like You" + }, + { + "artist": "Prince And The Revolution", + "position": 82, + "title": "Let's Pretend We're Married/Irresistible Bitch" + }, + { + "artist": "Diana Ross", + "position": 83, + "title": "Let's Go Up" + }, + { + "artist": "Crystal Gayle", + "position": 84, + "title": "The Sound Of Goodbye" + }, + { + "artist": "Bob Dylan", + "position": 85, + "title": "Sweetheart Like You" + }, + { + "artist": "Rodney Dangerfield", + "position": 86, + "title": "Rappin' Rodney" + }, + { + "artist": "Atlantic Starr", + "position": 87, + "title": "Touch A Four Leaf Clover" + }, + { + "artist": "The Pointer Sisters", + "position": 88, + "title": "I Need You" + }, + { + "artist": "The Headpins", + "position": 89, + "title": "Just One More Time" + }, + { + "artist": "Twilight 22", + "position": 90, + "title": "Electric Kingdom" + }, + { + "artist": "Jennifer Holliday", + "position": 91, + "title": "I Am Love" + }, + { + "artist": "Journey", + "position": 92, + "title": "Send Her My Love" + }, + { + "artist": "Earth, Wind & Fire", + "position": 93, + "title": "Magnetic" + }, + { + "artist": "The Fixx", + "position": 94, + "title": "One Thing Leads To Another" + }, + { + "artist": "Kim Carnes", + "position": 95, + "title": "Invisible Hands" + }, + { + "artist": "Paul Simon", + "position": 96, + "title": "Allergies" + }, + { + "artist": "Industry", + "position": 97, + "title": "State Of The Union" + }, + { + "artist": "Streets", + "position": 98, + "title": "If Love Should Go" + }, + { + "artist": "Prince", + "position": 99, + "title": "Delirious" + }, + { + "artist": "Dionne Warwick & Luther Vandross", + "position": 100, + "title": "How Many Times Can We Say Goodbye" + } + ], + "title": "1983 - Hot 100" + }, + { + "songs": [ + { + "artist": "John Anderson", + "position": 1, + "title": "Wild And Blue" + }, + { + "artist": "Jerry Reed", + "position": 2, + "title": "The Bird" + }, + { + "artist": "Kenny Rogers", + "position": 3, + "title": "A Love Song" + }, + { + "artist": "Reba McEntire", + "position": 4, + "title": "Can't Even Get The Blues" + }, + { + "artist": "Merle Haggard", + "position": 5, + "title": "Going Where The Lonely Go" + }, + { + "artist": "David Frizzell", + "position": 6, + "title": "Lost My Baby Blues" + }, + { + "artist": "George Strait", + "position": 7, + "title": "Marina Del Rey" + }, + { + "artist": "Emmylou Harris", + "position": 8, + "title": "(lost His Love) On Our Last Date" + }, + { + "artist": "Rosanne Cash", + "position": 9, + "title": "I Wonder" + }, + { + "artist": "Johnny Lee And Friends", + "position": 10, + "title": "Cherokee Fiddle" + }, + { + "artist": "John Conlee", + "position": 11, + "title": "I Don't Remember Loving You" + }, + { + "artist": "Sylvia 1", + "position": 12, + "title": "Like Nothing Ever Happened" + }, + { + "artist": "Waylon & Willie", + "position": 13, + "title": "(Sittin' On) The Dock Of The Bay" + }, + { + "artist": "Earl Thomas Conley", + "position": 14, + "title": "Somewhere Between Right And Wrong" + }, + { + "artist": "Mickey Gilley", + "position": 15, + "title": "Talk To Me" + }, + { + "artist": "Charly McClain", + "position": 16, + "title": "With You" + }, + { + "artist": "Dolly Parton", + "position": 17, + "title": "Hard Candy Christmas" + }, + { + "artist": "The Statler Brothers", + "position": 18, + "title": "A Child Of The Fifties" + }, + { + "artist": "Ronnie Milsap", + "position": 19, + "title": "Inside/carolina Dreams" + }, + { + "artist": "The Oak Ridge Boys", + "position": 20, + "title": "Thank God For Kids" + }, + { + "artist": "Moe Bandy", + "position": 21, + "title": "Only If There Is Another You" + }, + { + "artist": "Vern Gosdin", + "position": 22, + "title": "Today My World Slipped Away" + }, + { + "artist": "Gene Watson", + "position": 23, + "title": "What She Don't Know Won't Hurt Her" + }, + { + "artist": "Crystal Gayle", + "position": 24, + "title": "'til I Gain Control Again" + }, + { + "artist": "Gail Davies", + "position": 25, + "title": "Hold On" + } + ], + "title": "1982 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Daryl Hall John Oates", + "position": 1, + "title": "Maneater" + }, + { + "artist": "Toni Basil", + "position": 2, + "title": "Mickey" + }, + { + "artist": "Michael Jackson And Paul McCartney", + "position": 3, + "title": "The Girl Is Mine" + }, + { + "artist": "Don Henley", + "position": 4, + "title": "Dirty Laundry" + }, + { + "artist": "Laura Branigan", + "position": 5, + "title": "Gloria" + }, + { + "artist": "Joe Jackson", + "position": 6, + "title": "Steppin' Out" + }, + { + "artist": "Marvin Gaye", + "position": 7, + "title": "Sexual Healing" + }, + { + "artist": "Men At Work", + "position": 8, + "title": "Down Under" + }, + { + "artist": "Stray Cats", + "position": 9, + "title": "Rock This Town" + }, + { + "artist": "Lionel Richie", + "position": 10, + "title": "Truly" + }, + { + "artist": "Supertramp Featuring Roger Hodgson", + "position": 11, + "title": "It's Raining Again" + }, + { + "artist": "Dionne Warwick", + "position": 12, + "title": "Heartbreaker" + }, + { + "artist": "Pat Benatar", + "position": 13, + "title": "Shadows Of The Night" + }, + { + "artist": "Toto", + "position": 14, + "title": "Africa" + }, + { + "artist": "The Clash", + "position": 15, + "title": "Rock The Casbah" + }, + { + "artist": "Eddie Rabbitt With Crystal Gayle", + "position": 16, + "title": "You And I" + }, + { + "artist": "Patti Austin With James Ingram", + "position": 17, + "title": "Baby, Come To Me" + }, + { + "artist": "Little River Band", + "position": 18, + "title": "The Other Guy" + }, + { + "artist": "ABC", + "position": 19, + "title": "The Look Of Love (Part One)" + }, + { + "artist": "Phil Collins", + "position": 20, + "title": "You Can't Hurry Love" + }, + { + "artist": "Joe Cocker And Jennifer Warnes", + "position": 21, + "title": "Up Where We Belong" + }, + { + "artist": "Kenny Loggins", + "position": 22, + "title": "Heart To Heart" + }, + { + "artist": "Dan Fogelberg", + "position": 23, + "title": "Missing You" + }, + { + "artist": "John Cougar", + "position": 24, + "title": "Hand To Hold On To" + }, + { + "artist": "Adam Ant", + "position": 25, + "title": "Goody Two Shoes" + }, + { + "artist": "The J. Geils Band", + "position": 26, + "title": "I Do" + }, + { + "artist": "Fleetwood Mac", + "position": 27, + "title": "Love In Store" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 28, + "title": "You Got Lucky" + }, + { + "artist": "Jeffrey Osborne", + "position": 29, + "title": "On The Wings Of Love" + }, + { + "artist": "Bob Seger & The Silver Bullet Band", + "position": 30, + "title": "Shame On The Moon" + }, + { + "artist": "Kool & The Gang", + "position": 31, + "title": "Let's Go Dancin' (ooh La, La, La)" + }, + { + "artist": "Billy Squier", + "position": 32, + "title": "Everybody Wants You" + }, + { + "artist": "Tavares", + "position": 33, + "title": "A Penny For Your Thoughts" + }, + { + "artist": "Moving Pictures", + "position": 34, + "title": "What About Me" + }, + { + "artist": "Peter Gabriel", + "position": 35, + "title": "Shock The Monkey" + }, + { + "artist": "Juice Newton", + "position": 36, + "title": "Heart Of The Night" + }, + { + "artist": "Billy Joel", + "position": 37, + "title": "Allentown" + }, + { + "artist": "Kim Carnes", + "position": 38, + "title": "Does It Make You Remember" + }, + { + "artist": "Sammy Hagar", + "position": 39, + "title": "Your Love Is Driving Me Crazy" + }, + { + "artist": "Air Supply", + "position": 40, + "title": "Two Less Lonely People In The World" + }, + { + "artist": "Diana Ross", + "position": 41, + "title": "Muscles" + }, + { + "artist": "A Flock Of Seagulls", + "position": 42, + "title": "Space Age Love Song" + }, + { + "artist": "Stray Cats", + "position": 43, + "title": "Stray Cat Strut" + }, + { + "artist": "Michael McDonald", + "position": 44, + "title": "I Gotta Try" + }, + { + "artist": "Barry Manilow", + "position": 45, + "title": "Memory" + }, + { + "artist": "Olivia Newton-John", + "position": 46, + "title": "Heart Attack" + }, + { + "artist": "Ray Parker Jr.", + "position": 47, + "title": "Bad Boy" + }, + { + "artist": "America", + "position": 48, + "title": "Right Before Your Eyes" + }, + { + "artist": "Glenn Frey", + "position": 49, + "title": "All Those Lies" + }, + { + "artist": "Sonny Charles", + "position": 50, + "title": "Put It In A Magazine" + }, + { + "artist": "Culture Club", + "position": 51, + "title": "Do You Really Want To Hurt Me" + }, + { + "artist": "Golden Earring", + "position": 52, + "title": "Twilight Zone" + }, + { + "artist": "Linda Ronstadt", + "position": 53, + "title": "I Knew You When" + }, + { + "artist": "Frida", + "position": 54, + "title": "I Know There's Something Going On" + }, + { + "artist": "Luther Vandross", + "position": 55, + "title": "Bad Boy/Having A Party" + }, + { + "artist": "Saga", + "position": 56, + "title": "On The Loose" + }, + { + "artist": "The Alan Parsons Project", + "position": 57, + "title": "Psychobabble" + }, + { + "artist": "Jefferson Starship", + "position": 58, + "title": "Be My Lady" + }, + { + "artist": "Musical Youth", + "position": 59, + "title": "Pass The Dutchie" + }, + { + "artist": "Donna Summer", + "position": 60, + "title": "The Woman In Me" + }, + { + "artist": "Joni Mitchell", + "position": 61, + "title": "(you're So Square) Baby, I Don't Care" + }, + { + "artist": "Chilliwack", + "position": 62, + "title": "Whatcha Gonna Do" + }, + { + "artist": "Pretenders", + "position": 63, + "title": "Back On The Chain Gang" + }, + { + "artist": "Lanier & Co.", + "position": 64, + "title": "After I Cry Tonight" + }, + { + "artist": "Prince", + "position": 65, + "title": "1999" + }, + { + "artist": "Santana", + "position": 66, + "title": "Nowhere To Run" + }, + { + "artist": "Wolf", + "position": 67, + "title": "Papa Was A Rollin' Stone" + }, + { + "artist": "The Steve Miller Band", + "position": 68, + "title": "Give It Up" + }, + { + "artist": "Lee Ritenour", + "position": 69, + "title": "Cross My Heart" + }, + { + "artist": "Charlene & Stevie Wonder", + "position": 70, + "title": "Used To Be" + }, + { + "artist": "Elvis Presley", + "position": 71, + "title": "The Elvis Medley" + }, + { + "artist": "Commodores", + "position": 72, + "title": "Painted Picture" + }, + { + "artist": "Janet Jackson", + "position": 73, + "title": "Young Love" + }, + { + "artist": "Pia Zadora", + "position": 74, + "title": "The Clapping Song" + }, + { + "artist": "The Spinners", + "position": 75, + "title": "Funny How Time Slips Away" + }, + { + "artist": "Rough Trade", + "position": 76, + "title": "All Touch" + }, + { + "artist": "Duran Duran", + "position": 77, + "title": "Hungry Like The Wolf" + }, + { + "artist": "Hot Chocolate", + "position": 78, + "title": "Are You Getting Enough Happiness" + }, + { + "artist": "Poco", + "position": 79, + "title": "Shoot For The Moon" + }, + { + "artist": "The Who", + "position": 80, + "title": "Eminence Front" + }, + { + "artist": "Little Steven", + "position": 81, + "title": "Forever" + }, + { + "artist": "Hughes/Thrall", + "position": 82, + "title": "Beg, Borrow Or Steal" + }, + { + "artist": "Donald Fagen", + "position": 83, + "title": "I.g.y. (what A Beautiful World)" + }, + { + "artist": "Crosby, Stills & Nash", + "position": 84, + "title": "Southern Cross" + }, + { + "artist": "Scandal Featuring Patty Smyth", + "position": 85, + "title": "Goodbye To You" + }, + { + "artist": "Bill Conti", + "position": 86, + "title": "Theme From Dynasty" + }, + { + "artist": "Neil Diamond", + "position": 87, + "title": "Heartlight" + }, + { + "artist": "Tyrone Davis", + "position": 88, + "title": "Are You Serious" + }, + { + "artist": "Michael Stanley Band", + "position": 89, + "title": "Take The Time" + }, + { + "artist": "Unipop", + "position": 90, + "title": "What If (I Said I Love You)" + }, + { + "artist": "Chicago", + "position": 91, + "title": "Love Me Tomorrow" + }, + { + "artist": "Missing Persons", + "position": 92, + "title": "Destination Unknown" + }, + { + "artist": "Billy Joel", + "position": 93, + "title": "Pressure" + }, + { + "artist": "Sylvia", + "position": 94, + "title": "Nobody" + }, + { + "artist": "Men At Work", + "position": 95, + "title": "Who Can It Be Now?" + }, + { + "artist": "The Motels", + "position": 96, + "title": "Forever Mine" + }, + { + "artist": "Rodway", + "position": 97, + "title": "Don't Stop Trying" + }, + { + "artist": "The Pointer Sisters", + "position": 98, + "title": "I'm So Excited" + }, + { + "artist": "Steel Breeze", + "position": 99, + "title": "You Don't Want Me Anymore" + }, + { + "artist": "Survivor", + "position": 100, + "title": "American Heartbeat" + } + ], + "title": "1982 - Hot 100" + }, + { + "songs": [ + { + "artist": "Alabama", + "position": 1, + "title": "Love In The First Degree/Ride The Train" + }, + { + "artist": "Gene Watson", + "position": 2, + "title": "Fourteen Karat Mind" + }, + { + "artist": "Crystal Gayle", + "position": 3, + "title": "The Woman In Me" + }, + { + "artist": "Ronnie Milsap", + "position": 4, + "title": "I Wouldn't Have Missed It For The World" + }, + { + "artist": "Conway Twitty", + "position": 5, + "title": "Red Neckin Love Makin Night" + }, + { + "artist": "Juice Newton", + "position": 6, + "title": "The Sweetest Thing (I've Ever Known)" + }, + { + "artist": "The Bellamy Brothers", + "position": 7, + "title": "You're My Favorite Star" + }, + { + "artist": "Gary Morris", + "position": 8, + "title": "Headed For A Heartache" + }, + { + "artist": "Mac Davis", + "position": 9, + "title": "You're My Bestest Friend" + }, + { + "artist": "Mickey Gilley", + "position": 10, + "title": "Lonely Nights" + }, + { + "artist": "Moe Bandy", + "position": 11, + "title": "Rodeo Romeo" + }, + { + "artist": "Earl Thomas Conley", + "position": 12, + "title": "Tell Me Why" + }, + { + "artist": "The Statler Brothers", + "position": 13, + "title": "Years Ago" + }, + { + "artist": "Eddy Raven", + "position": 14, + "title": "Who Do You Know In California" + }, + { + "artist": "Eddie Rabbitt", + "position": 15, + "title": "Someone Could Lose A Heart Tonight" + }, + { + "artist": "Kenny Rogers", + "position": 16, + "title": "Blaze Of Glory" + }, + { + "artist": "Dottie West", + "position": 17, + "title": "It's High Time" + }, + { + "artist": "Jim Reeves And Patsy Cline", + "position": 18, + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)" + }, + { + "artist": "Ronnie McDowell", + "position": 19, + "title": "Watchin' Girls Go By" + }, + { + "artist": "Lee Greenwood", + "position": 20, + "title": "It Turns Me Inside Out" + }, + { + "artist": "Don Williams", + "position": 21, + "title": "Lord, I Hope This Day Is Good" + }, + { + "artist": "Leon Everette", + "position": 22, + "title": "Midnight Rodeo" + }, + { + "artist": "Kieran Kane", + "position": 23, + "title": "It's Who You Love" + }, + { + "artist": "Mel McDaniel", + "position": 24, + "title": "Preaching Up A Storm" + }, + { + "artist": "Ray Price", + "position": 25, + "title": "Diamonds In The Stars" + } + ], + "title": "1981 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Olivia Newton-John", + "position": 1, + "title": "Physical" + }, + { + "artist": "Foreigner", + "position": 2, + "title": "Waiting For A Girl Like You" + }, + { + "artist": "Earth, Wind & Fire", + "position": 3, + "title": "Let's Groove" + }, + { + "artist": "Daryl Hall John Oates", + "position": 4, + "title": "I Can't Go For That (No Can Do)" + }, + { + "artist": "Rod Stewart", + "position": 5, + "title": "Young Turks" + }, + { + "artist": "Quarterflash", + "position": 6, + "title": "Harden My Heart" + }, + { + "artist": "Diana Ross", + "position": 7, + "title": "Why Do Fools Fall In Love" + }, + { + "artist": "Stevie Nicks With Don Henley", + "position": 8, + "title": "Leather And Lace" + }, + { + "artist": "Journey", + "position": 9, + "title": "Don't Stop Believin'" + }, + { + "artist": "Lindsey Buckingham", + "position": 10, + "title": "Trouble" + }, + { + "artist": "The J. Geils Band", + "position": 11, + "title": "Centerfold" + }, + { + "artist": "Neil Diamond", + "position": 12, + "title": "Yesterday's Songs" + }, + { + "artist": "Barbra Streisand", + "position": 13, + "title": "Comin' In And Out Of Your Life" + }, + { + "artist": "George Benson", + "position": 14, + "title": "Turn Your Love Around" + }, + { + "artist": "Juice Newton", + "position": 15, + "title": "The Sweetest Thing (I've Ever Known)" + }, + { + "artist": "Royal Philharmonic Orchestra", + "position": 16, + "title": "Hooked On Classics" + }, + { + "artist": "Kool & The Gang", + "position": 17, + "title": "Take My Heart (You Can Have It If You Want It)" + }, + { + "artist": "Paul Davis", + "position": 18, + "title": "Cool Night" + }, + { + "artist": "Commodores", + "position": 19, + "title": "Oh No" + }, + { + "artist": "The Police", + "position": 20, + "title": "Every Little Thing She Does Is Magic" + }, + { + "artist": "Eddie Rabbitt", + "position": 21, + "title": "Someone Could Lose A Heart Tonight" + }, + { + "artist": "Air Supply", + "position": 22, + "title": "Here I Am (Just When I Thought I Was Over You)" + }, + { + "artist": "Ronnie Milsap", + "position": 23, + "title": "I Wouldn't Have Missed It For The World" + }, + { + "artist": "The Cars", + "position": 24, + "title": "Shake It Up" + }, + { + "artist": "Stevie Woods", + "position": 25, + "title": "Steal The Night" + }, + { + "artist": "The Rolling Stones", + "position": 26, + "title": "Waiting On A Friend" + }, + { + "artist": "Go-Go's", + "position": 27, + "title": "Our Lips Are Sealed" + }, + { + "artist": "Billy Joel", + "position": 28, + "title": "She's Got A Way" + }, + { + "artist": "Chilliwack", + "position": 29, + "title": "My Girl (Gone, Gone, Gone)" + }, + { + "artist": "The Beach Boys", + "position": 30, + "title": "Come Go With Me" + }, + { + "artist": "Queen & David Bowie", + "position": 31, + "title": "Under Pressure" + }, + { + "artist": "Sheena Easton", + "position": 32, + "title": "You Could Have Been With Me" + }, + { + "artist": "Dan Fogelberg", + "position": 33, + "title": "Leader Of The Band" + }, + { + "artist": "The Steve Miller Band", + "position": 34, + "title": "Heart Like A Wheel" + }, + { + "artist": "Little River Band", + "position": 35, + "title": "Take It Easy On Me" + }, + { + "artist": "Don McLean", + "position": 36, + "title": "Castles In The Air" + }, + { + "artist": "Sneaker", + "position": 37, + "title": "More Than Just The Two Of Us" + }, + { + "artist": "Daryl Hall John Oates", + "position": 38, + "title": "Private Eyes" + }, + { + "artist": "The Rolling Stones", + "position": 39, + "title": "Start Me Up" + }, + { + "artist": "Rick Springfield", + "position": 40, + "title": "Love Is Alright Tonite" + }, + { + "artist": "Loverboy", + "position": 41, + "title": "Working For The Weekend" + }, + { + "artist": "Air Supply", + "position": 42, + "title": "Sweet Dreams" + }, + { + "artist": "Barry Manilow", + "position": 43, + "title": "The Old Songs" + }, + { + "artist": "Alabama", + "position": 44, + "title": "Love In The First Degree" + }, + { + "artist": "Christopher Cross", + "position": 45, + "title": "Arthur's Theme (Best That You Can Do)" + }, + { + "artist": "Lulu", + "position": 46, + "title": "If I Were You" + }, + { + "artist": "Bertie Higgins", + "position": 47, + "title": "Key Largo" + }, + { + "artist": "Greg Lake", + "position": 48, + "title": "Let Me Love You Once" + }, + { + "artist": "Genesis", + "position": 49, + "title": "No Reply At All" + }, + { + "artist": "Luther Vandross", + "position": 50, + "title": "Never Too Much" + }, + { + "artist": "Billy Squier", + "position": 51, + "title": "My Kinda Lover" + }, + { + "artist": "Ringo Starr", + "position": 52, + "title": "Wrack My Brain" + }, + { + "artist": "Bob Seger", + "position": 53, + "title": "Tryin' To Live My Life Without You" + }, + { + "artist": "Eddie Schwartz", + "position": 54, + "title": "All Our Tomorrows" + }, + { + "artist": "Survivor", + "position": 55, + "title": "Poor Man's Son" + }, + { + "artist": "Al Jarreau", + "position": 56, + "title": "Breakin' Away" + }, + { + "artist": "Mike Post featuring Larry Carlton", + "position": 57, + "title": "The Theme From Hill Street Blues" + }, + { + "artist": "Sheila", + "position": 58, + "title": "Little Darlin'" + }, + { + "artist": "Balance", + "position": 59, + "title": "Falling In Love" + }, + { + "artist": "Jennifer Warnes", + "position": 60, + "title": "Could It Be Love" + }, + { + "artist": "Del Shannon", + "position": 61, + "title": "Sea Of Love" + }, + { + "artist": "Bee Gees", + "position": 62, + "title": "Living Eyes" + }, + { + "artist": "Barry Manilow", + "position": 63, + "title": "Somewhere Down The Road" + }, + { + "artist": "Irene Cara", + "position": 64, + "title": "Anyone Can See" + }, + { + "artist": "Steve Carlisle", + "position": 65, + "title": "Wkrp In Cincinnati" + }, + { + "artist": "Quincy Jones Featuring James Ingram", + "position": 66, + "title": "Just Once" + }, + { + "artist": "Bob Seger & The Silver Bullet Band", + "position": 67, + "title": "Feel Like A Number" + }, + { + "artist": "Henry Paul Band", + "position": 68, + "title": "Keeping Our Love Alive" + }, + { + "artist": "Rick Springfield", + "position": 69, + "title": "I've Done Everything For You" + }, + { + "artist": "Rush", + "position": 70, + "title": "Closer To The Heart" + }, + { + "artist": "Genesis", + "position": 71, + "title": "Abacab" + }, + { + "artist": "Carpenters", + "position": 72, + "title": "Those Good Old Dreams" + }, + { + "artist": "Quincy Jones Featuring James Ingram", + "position": 73, + "title": "One Hundred Ways" + }, + { + "artist": "Little River Band", + "position": 74, + "title": "The Night Owls" + }, + { + "artist": "Patti Austin", + "position": 75, + "title": "Every Home Should Have One" + }, + { + "artist": "Crystal Gayle", + "position": 76, + "title": "The Woman In Me" + }, + { + "artist": "Donnie Iris", + "position": 77, + "title": "Love Is Like A Rock" + }, + { + "artist": "Kiss", + "position": 78, + "title": "A World Without Heroes" + }, + { + "artist": "Four Tops", + "position": 79, + "title": "When She Was My Girl" + }, + { + "artist": "Neil Young/Crazy Horse", + "position": 80, + "title": "Southern Pacific" + }, + { + "artist": "Diesel", + "position": 81, + "title": "Sausalito Summernight" + }, + { + "artist": "Kenny Rogers", + "position": 82, + "title": "Through The Years" + }, + { + "artist": "The John Hall Band", + "position": 83, + "title": "Crazy (Keep On Falling)" + }, + { + "artist": "Leif Garrett", + "position": 84, + "title": "Runaway Rita" + }, + { + "artist": "Bill Champlin", + "position": 85, + "title": "Tonight Tonight" + }, + { + "artist": "Al Jarreau", + "position": 86, + "title": "We're In This Love Together" + }, + { + "artist": "Carl Carlton", + "position": 87, + "title": "She's A Bad Mama Jama (She's Built, She's Stacked)" + }, + { + "artist": "Vangelis", + "position": 88, + "title": "Chariots Of Fire - Titles" + }, + { + "artist": "Kenny Rogers", + "position": 89, + "title": "Blaze Of Glory" + }, + { + "artist": "Sheena Easton", + "position": 90, + "title": "For Your Eyes Only" + }, + { + "artist": "Kano", + "position": 91, + "title": "Can't Hold Back (Your Loving)" + }, + { + "artist": "Dave Stewart and Barbara Gaskin", + "position": 92, + "title": "It's My Party" + }, + { + "artist": "The Kinks", + "position": 93, + "title": "Better Things" + }, + { + "artist": "Rick James", + "position": 94, + "title": "Super Freak (Part I)" + }, + { + "artist": "Diana Ross & Lionel Richie", + "position": 95, + "title": "Endless Love" + }, + { + "artist": "Dan Fogelberg", + "position": 96, + "title": "Hard To Say" + }, + { + "artist": "Prince", + "position": 97, + "title": "Controversy" + }, + { + "artist": "Chris Christian", + "position": 98, + "title": "I Want You, I Need You" + }, + { + "artist": "Electric Light Orchestra", + "position": 99, + "title": "Twilight" + }, + { + "artist": "Rufus With Chaka Khan", + "position": 100, + "title": "Sharing The Love" + } + ], + "title": "1981 - Hot 100" + }, + { + "songs": [ + { + "artist": "Johnny Lee", + "position": 1, + "title": "One In A Million" + }, + { + "artist": "Merle Haggard", + "position": 2, + "title": "I Think I'll Stay Here And Drink" + }, + { + "artist": "The Bellamy Brothers", + "position": 3, + "title": "Lovers Live Longer" + }, + { + "artist": "Conway Twitty", + "position": 4, + "title": "A Bridge That Just Won't Burn" + }, + { + "artist": "Eddie Rabbitt", + "position": 5, + "title": "I Love A Rainy Night" + }, + { + "artist": "Barbara Mandrell", + "position": 6, + "title": "The Best Of Strangers" + }, + { + "artist": "Mickey Gilley", + "position": 7, + "title": "That's All That Matters To Me" + }, + { + "artist": "Leon Everette", + "position": 8, + "title": "Giving Up Easy" + }, + { + "artist": "Mac Davis", + "position": 9, + "title": "Texas In My Rear View Mirror" + }, + { + "artist": "Janie Frickie", + "position": 10, + "title": "Down To My Last Broken Heart" + }, + { + "artist": "The Oak Ridge Boys", + "position": 11, + "title": "Beautiful You" + }, + { + "artist": "Terri Gibbs", + "position": 12, + "title": "Somebodys Knockin'" + }, + { + "artist": "Gene Watson", + "position": 13, + "title": "No One Will Ever Know" + }, + { + "artist": "Porter Wagoner", + "position": 14, + "title": "If You Go, I'll Follow You" + }, + { + "artist": "Dolly Parton", + "position": 15, + "title": "9 To 5" + }, + { + "artist": "The Statler Brothers", + "position": 16, + "title": "Don't Forget Yourself" + }, + { + "artist": "Razzy Bailey", + "position": 17, + "title": "I Keep Coming Back/True Life Country Music" + }, + { + "artist": "Bobby Goldsboro", + "position": 18, + "title": "Goodbye Marie" + }, + { + "artist": "Johnny Duncan", + "position": 19, + "title": "Acapulo" + }, + { + "artist": "T.G. Sheppard", + "position": 20, + "title": "I Feel Like Loving You Again" + }, + { + "artist": "Ed Bruce", + "position": 21, + "title": "Girls, Women Ladies" + }, + { + "artist": "Gail Davies", + "position": 22, + "title": "I'll Be There (If You Ever Want Me)" + }, + { + "artist": "Charly McClain", + "position": 23, + "title": "Who's Cheatin' Who" + }, + { + "artist": "John Anderson", + "position": 24, + "title": "1959" + }, + { + "artist": "Susie Allanson", + "position": 25, + "title": "Dance The Two Step" + } + ], + "title": "1980 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "John Lennon", + "position": 1, + "title": "(Just Like) Starting Over" + }, + { + "artist": "Leo Sayer", + "position": 2, + "title": "More Than I Can Say" + }, + { + "artist": "Neil Diamond", + "position": 3, + "title": "Love On The Rocks" + }, + { + "artist": "Kenny Rogers", + "position": 4, + "title": "Lady" + }, + { + "artist": "Bruce Springsteen", + "position": 5, + "title": "Hungry Heart" + }, + { + "artist": "Air Supply", + "position": 6, + "title": "Every Woman In The World" + }, + { + "artist": "Barbra Streisand & Barry Gibb", + "position": 7, + "title": "Guilty" + }, + { + "artist": "Blondie", + "position": 8, + "title": "The Tide Is High" + }, + { + "artist": "Pat Benatar", + "position": 9, + "title": "Hit Me With Your Best Shot" + }, + { + "artist": "Heart", + "position": 10, + "title": "Tell It Like It Is" + }, + { + "artist": "Rod Stewart", + "position": 11, + "title": "Passion" + }, + { + "artist": "The Police", + "position": 12, + "title": "De Do Do Do, De Da Da Da" + }, + { + "artist": "Stevie Wonder", + "position": 13, + "title": "Master Blaster (Jammin')" + }, + { + "artist": "Queen", + "position": 14, + "title": "Another One Bites The Dust" + }, + { + "artist": "Diana Ross", + "position": 15, + "title": "It's My Turn" + }, + { + "artist": "Barry Manilow", + "position": 16, + "title": "I Made It Through The Rain" + }, + { + "artist": "Kool & The Gang", + "position": 17, + "title": "Celebration" + }, + { + "artist": "The Korgis", + "position": 18, + "title": "Everybody's Got To Learn Sometime" + }, + { + "artist": "Eddie Rabbitt", + "position": 19, + "title": "I Love A Rainy Night" + }, + { + "artist": "Steely Dan", + "position": 20, + "title": "Hey Nineteen" + }, + { + "artist": "Andy Gibb", + "position": 21, + "title": "Time Is Time" + }, + { + "artist": "Barbra Streisand", + "position": 22, + "title": "Woman In Love" + }, + { + "artist": "Olivia Newton-John & Cliff Richard", + "position": 23, + "title": "Suddenly" + }, + { + "artist": "Don Williams", + "position": 24, + "title": "I Believe In You" + }, + { + "artist": "Daryl Hall John Oates", + "position": 25, + "title": "You've Lost That Lovin' Feeling" + }, + { + "artist": "The Doobie Brothers", + "position": 26, + "title": "One Step Closer" + }, + { + "artist": "Devo", + "position": 27, + "title": "Whip It" + }, + { + "artist": "Delbert McClinton", + "position": 28, + "title": "Giving It Up For Your Love" + }, + { + "artist": "Tierra", + "position": 29, + "title": "Together" + }, + { + "artist": "Boz Scaggs", + "position": 30, + "title": "Miss Sun" + }, + { + "artist": "Christopher Cross", + "position": 31, + "title": "Never Be The Same" + }, + { + "artist": "Waylon", + "position": 32, + "title": "Theme From The Dukes Of Hazzard (Good Ol' Boys)" + }, + { + "artist": "Dolly Parton", + "position": 33, + "title": "9 To 5" + }, + { + "artist": "Diana Ross", + "position": 34, + "title": "I'm Coming Out" + }, + { + "artist": "Dr. Hook", + "position": 35, + "title": "Girls Can Get It" + }, + { + "artist": "ABBA", + "position": 36, + "title": "The Winner Takes It All" + }, + { + "artist": "Dan Fogelberg", + "position": 37, + "title": "Same Old Lang Syne" + }, + { + "artist": "Harry Chapin", + "position": 38, + "title": "Sequel" + }, + { + "artist": "REO Speedwagon", + "position": 39, + "title": "Keep On Loving You" + }, + { + "artist": "Fred Knoblock & Susan Anton", + "position": 40, + "title": "Killin' Time" + }, + { + "artist": "Donna Summer", + "position": 41, + "title": "Cold Love" + }, + { + "artist": "The Babys", + "position": 42, + "title": "Turn And Walk Away" + }, + { + "artist": "Michael Stanley Band", + "position": 43, + "title": "He Can't Love You" + }, + { + "artist": "Queen", + "position": 44, + "title": "Need Your Loving Tonight" + }, + { + "artist": "Bette Midler", + "position": 45, + "title": "My Mother's Eyes" + }, + { + "artist": "L.T.D.", + "position": 46, + "title": "Shine On" + }, + { + "artist": "Climax Blues Band", + "position": 47, + "title": "Gotta Have More Love" + }, + { + "artist": "Earth, Wind & Fire", + "position": 48, + "title": "You" + }, + { + "artist": "Teena Marie", + "position": 49, + "title": "I Need Your Lovin'" + }, + { + "artist": "Ronnie Milsap", + "position": 50, + "title": "Smoky Mountain Rain" + }, + { + "artist": "The Jacksons", + "position": 51, + "title": "Heartbreak Hotel" + }, + { + "artist": "Teddy Pendergrass", + "position": 52, + "title": "Love T.K.O." + }, + { + "artist": "Rockpile", + "position": 53, + "title": "Teacher Teacher" + }, + { + "artist": "The Alan Parsons Project", + "position": 54, + "title": "Games People Play" + }, + { + "artist": "Eagles", + "position": 55, + "title": "Seven Bridges Road" + }, + { + "artist": "Stevie Wonder", + "position": 56, + "title": "I Ain't Gonna Stand For It" + }, + { + "artist": "John Cougar", + "position": 57, + "title": "This Time" + }, + { + "artist": "Cliff Richard", + "position": 58, + "title": "Dreaming" + }, + { + "artist": "Randy Meisner", + "position": 59, + "title": "Deep Inside My Heart" + }, + { + "artist": "Donna Summer", + "position": 60, + "title": "The Wanderer" + }, + { + "artist": "Rita Coolidge", + "position": 61, + "title": "Fool That I Am" + }, + { + "artist": "Supertramp", + "position": 62, + "title": "Breakfast In America" + }, + { + "artist": "The Pointer Sisters", + "position": 63, + "title": "He's So Shy" + }, + { + "artist": "Blues Brothers", + "position": 64, + "title": "Who's Making Love" + }, + { + "artist": "Cliff Richard", + "position": 65, + "title": "A Little In Love" + }, + { + "artist": "Stephanie Mills", + "position": 66, + "title": "Never Knew Love Like This Before" + }, + { + "artist": "Bob Seger", + "position": 67, + "title": "The Horizontal Bop" + }, + { + "artist": "The Pointer Sisters", + "position": 68, + "title": "Could I Be Dreaming" + }, + { + "artist": "The Star Wars Intergalactic Droid Choir & Chorale", + "position": 69, + "title": "What Can You Get A Wookiee For Christmas (When He Already Owns A Comb?)" + }, + { + "artist": "Donnie Iris", + "position": 70, + "title": "Ah! Leah!" + }, + { + "artist": "AC/DC", + "position": 71, + "title": "Back In Black" + }, + { + "artist": "David Bowie", + "position": 72, + "title": "Fashion" + }, + { + "artist": "Oak", + "position": 73, + "title": "Set The Night On Fire" + }, + { + "artist": "Dionne Warwick", + "position": 74, + "title": "Easy Love" + }, + { + "artist": "The Vapors", + "position": 75, + "title": "Turning Japanese" + }, + { + "artist": "Roger Daltrey", + "position": 76, + "title": "Without Your Love" + }, + { + "artist": "Diana Ross", + "position": 77, + "title": "Upside Down" + }, + { + "artist": "The Jacksons", + "position": 78, + "title": "Lovely One" + }, + { + "artist": "Shalamar", + "position": 79, + "title": "Full Of Fire" + }, + { + "artist": "Dire Straits", + "position": 80, + "title": "Skateaway" + }, + { + "artist": "Aretha Franklin", + "position": 81, + "title": "United Together" + }, + { + "artist": "Willis The Guard & Vigorish", + "position": 82, + "title": "Merry Christmas In The NFL" + }, + { + "artist": "Outlaws", + "position": 83, + "title": "(Ghost) Riders In The Sky" + }, + { + "artist": "The Kings", + "position": 84, + "title": "Switchin' To Glide/This Beat Goes On" + }, + { + "artist": "Stacy Lattisaw", + "position": 85, + "title": "Let Me Be Your Angel" + }, + { + "artist": "Cheap Trick", + "position": 86, + "title": "Stop This Game" + }, + { + "artist": "Willie Nelson", + "position": 87, + "title": "On The Road Again" + }, + { + "artist": "J.D. Drews", + "position": 88, + "title": "Don't Want No-Body" + }, + { + "artist": "Pendulum", + "position": 89, + "title": "Gypsy Spirit" + }, + { + "artist": "Kansas", + "position": 90, + "title": "Got To Rock On" + }, + { + "artist": "The 4 Seasons", + "position": 91, + "title": "Spend The Night In Love" + }, + { + "artist": "The Manhattan Transfer", + "position": 92, + "title": "Trickle Trickle" + }, + { + "artist": "Paul Simon", + "position": 93, + "title": "One-Trick Pony" + }, + { + "artist": "The Reddings", + "position": 94, + "title": "Remote Control" + }, + { + "artist": "Pure Prairie League", + "position": 95, + "title": "I Can't Stop The Feelin'" + }, + { + "artist": "Jackie English", + "position": 96, + "title": "Once A Night" + }, + { + "artist": "Marcy Levy & Robin Gibb", + "position": 97, + "title": "Help Me!" + }, + { + "artist": "Jimmy Hall", + "position": 98, + "title": "I'm Happy That Love Has Found You" + }, + { + "artist": "Irene Cara", + "position": 99, + "title": "Out Here On My Own" + }, + { + "artist": "Carly Simon", + "position": 100, + "title": "Jesse" + } + ], + "title": "1980 - Hot 100" + }, + { + "songs": [ + { + "artist": "Rupert Holmes", + "position": 1, + "title": "Escape (The Pina Colada Song)" + }, + { + "artist": "KC And The Sunshine Band", + "position": 2, + "title": "Please Don't Go" + }, + { + "artist": "Styx", + "position": 3, + "title": "Babe" + }, + { + "artist": "Stevie Wonder", + "position": 4, + "title": "Send One Your Love" + }, + { + "artist": "Commodores", + "position": 5, + "title": "Still" + }, + { + "artist": "Captain & Tennille", + "position": 6, + "title": "Do That To Me One More Time" + }, + { + "artist": "J.D.Souther", + "position": 7, + "title": "You're Only Lonely" + }, + { + "artist": "Barbra Streisand/Donna Summer", + "position": 8, + "title": "No More Tears (Enough Is Enough)" + }, + { + "artist": "Kool & The Gang", + "position": 9, + "title": "Ladies Night" + }, + { + "artist": "Supertramp", + "position": 10, + "title": "Take The Long Way Home" + }, + { + "artist": "Michael Jackson", + "position": 11, + "title": "Rock With You" + }, + { + "artist": "Little River Band", + "position": 12, + "title": "Cool Change" + }, + { + "artist": "Cliff Richard", + "position": 13, + "title": "We Don't Talk Anymore" + }, + { + "artist": "Foreigner", + "position": 14, + "title": "Head Games" + }, + { + "artist": "Smokey Robinson", + "position": 15, + "title": "Cruisin'" + }, + { + "artist": "Dr. Hook", + "position": 16, + "title": "Better Love Next Time" + }, + { + "artist": "Eagles", + "position": 17, + "title": "The Long Run" + }, + { + "artist": "Jefferson Starship", + "position": 18, + "title": "Jane" + }, + { + "artist": "Pablo Cruise", + "position": 19, + "title": "I Want You Tonight" + }, + { + "artist": "Eagles", + "position": 20, + "title": "Heartache Tonight" + }, + { + "artist": "Kenny Loggins", + "position": 21, + "title": "This Is It" + }, + { + "artist": "Kenny Rogers", + "position": 22, + "title": "Coward Of The County" + }, + { + "artist": "Prince", + "position": 23, + "title": "I Wanna Be Your Lover" + }, + { + "artist": "Crystal Gayle", + "position": 24, + "title": "Half The Way" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 25, + "title": "Don't Do Me Like That" + }, + { + "artist": "Daryl Hall John Oates", + "position": 26, + "title": "Wait For Me" + }, + { + "artist": "The Alan Parsons Project", + "position": 27, + "title": "Damned If I Do" + }, + { + "artist": "Isaac Hayes", + "position": 28, + "title": "Don't Let Go" + }, + { + "artist": "Barry Manilow", + "position": 29, + "title": "Ships" + }, + { + "artist": "Foghat", + "position": 30, + "title": "Third Time Lucky (First Time I Was A Fool)" + }, + { + "artist": "ABBA", + "position": 31, + "title": "Chiquitita" + }, + { + "artist": "M", + "position": 32, + "title": "Pop Muzik" + }, + { + "artist": "John Cougar", + "position": 33, + "title": "I Need A Lover" + }, + { + "artist": "Dionne Warwick", + "position": 34, + "title": "Deja Vu" + }, + { + "artist": "Fleetwood Mac", + "position": 35, + "title": "Sara" + }, + { + "artist": "Teri DeSario With K.C.", + "position": 36, + "title": "Yes, I'm Ready" + }, + { + "artist": "Anne Murray", + "position": 37, + "title": "Broken Hearted Me" + }, + { + "artist": "Blackfoot", + "position": 38, + "title": "Train, Train" + }, + { + "artist": "Richie Furay", + "position": 39, + "title": "I Still Have Dreams" + }, + { + "artist": "Herb Alpert", + "position": 40, + "title": "Rotation" + }, + { + "artist": "Yvonne Elliman", + "position": 41, + "title": "Love Pains" + }, + { + "artist": "The O'Jays", + "position": 42, + "title": "Forever Mine" + }, + { + "artist": "Sugarhill Gang", + "position": 43, + "title": "Rapper's Delight" + }, + { + "artist": "Rita Coolidge", + "position": 44, + "title": "I'd Rather Leave While I'm In Love" + }, + { + "artist": "Tom Johnston", + "position": 45, + "title": "Savannah Nights" + }, + { + "artist": "The Buggles", + "position": 46, + "title": "Video Killed The Radio Star" + }, + { + "artist": "Kermit (Jim Henson)", + "position": 47, + "title": "Rainbow Connection" + }, + { + "artist": "Steve Forbert", + "position": 48, + "title": "Romeo's Tune" + }, + { + "artist": "Mistress", + "position": 49, + "title": "Mistrusted Love" + }, + { + "artist": "Donna Summer", + "position": 50, + "title": "Dim All The Lights" + }, + { + "artist": "Suzi Quatro", + "position": 51, + "title": "She's In Love With You" + }, + { + "artist": "Fleetwood Mac", + "position": 52, + "title": "TUSK" + }, + { + "artist": "Santana", + "position": 53, + "title": "You Know That I Love You" + }, + { + "artist": "Rufus & Chaka", + "position": 54, + "title": "Do You Love What You Feel" + }, + { + "artist": "Robert John", + "position": 55, + "title": "Lonely Eyes" + }, + { + "artist": "Cheap Trick", + "position": 56, + "title": "Voices" + }, + { + "artist": "Rainbow", + "position": 57, + "title": "Since You Been Gone" + }, + { + "artist": "Queen", + "position": 58, + "title": "Crazy Little Thing Called Love" + }, + { + "artist": "John Stewart", + "position": 59, + "title": "Lost Her In The Sun" + }, + { + "artist": "The Flying Lizards", + "position": 60, + "title": "Money" + }, + { + "artist": "Bar-Kays", + "position": 61, + "title": "Move Your Boogie Body" + }, + { + "artist": "Joyce Cobb", + "position": 62, + "title": "Dig The Gold" + }, + { + "artist": "Electric Light Orchestra", + "position": 63, + "title": "Last Train To London" + }, + { + "artist": "Led Zeppelin", + "position": 64, + "title": "Fool In The Rain" + }, + { + "artist": "Styx", + "position": 65, + "title": "Why Me" + }, + { + "artist": "Neil Diamond", + "position": 66, + "title": "September Morn'" + }, + { + "artist": "Anne Murray", + "position": 67, + "title": "Daydream Believer" + }, + { + "artist": "Commodores", + "position": 68, + "title": "Wonderland" + }, + { + "artist": "The Inmates", + "position": 69, + "title": "Dirty Water" + }, + { + "artist": "The Dirt Band", + "position": 70, + "title": "An American Dream" + }, + { + "artist": "Dann Rogers", + "position": 71, + "title": "Looks Like Love Again" + }, + { + "artist": "The Spinners", + "position": 72, + "title": "Working My Way Back To You/Forgive Me, Girl" + }, + { + "artist": "Pleasure", + "position": 73, + "title": "Glide" + }, + { + "artist": "The Police", + "position": 74, + "title": "Message In A Bottle" + }, + { + "artist": "Bonnie Raitt", + "position": 75, + "title": "You're Gonna Get What's Coming" + }, + { + "artist": "Pat Benatar", + "position": 76, + "title": "Heartbreaker" + }, + { + "artist": "Dan Fogelberg", + "position": 77, + "title": "Longer" + }, + { + "artist": "Barry Manilow", + "position": 78, + "title": "When I Wanted You" + }, + { + "artist": "Peter Brown", + "position": 79, + "title": "Stargazer" + }, + { + "artist": "Leif Garrett", + "position": 80, + "title": "Memorize Your Number" + }, + { + "artist": "Earth, Wind & Fire", + "position": 81, + "title": "Star" + }, + { + "artist": "Robert Palmer", + "position": 82, + "title": "Can We Still Be Friends" + }, + { + "artist": "Shalamar", + "position": 83, + "title": "The Second Time Around" + }, + { + "artist": "Rod Stewart", + "position": 84, + "title": "I Don't Want To Talk About It" + }, + { + "artist": "Toto", + "position": 85, + "title": "99" + }, + { + "artist": "Bonnie Pointer", + "position": 86, + "title": "I Can't Help Myself (Sugar Pie, Honey Bunch)" + }, + { + "artist": "Jennifer Warnes", + "position": 87, + "title": "Don't Make Me Over" + }, + { + "artist": "Dollar", + "position": 88, + "title": "Shooting Star" + }, + { + "artist": "Jimmy Buffett", + "position": 89, + "title": "Volcano" + }, + { + "artist": "Cugini", + "position": 90, + "title": "Let Me Sleep Alone" + }, + { + "artist": "Switch", + "position": 91, + "title": "I Call Your Name" + }, + { + "artist": "Billy Preston & Syreeta", + "position": 92, + "title": "With You I'm Born Again" + }, + { + "artist": "Lobo", + "position": 93, + "title": "Holdin' On For Dear Love" + }, + { + "artist": "Kenny Rogers", + "position": 94, + "title": "You Decorated My Life" + }, + { + "artist": "Chris Thompson & Night", + "position": 95, + "title": "If You Remember Me" + }, + { + "artist": "Herb Alpert", + "position": 96, + "title": "Rise" + }, + { + "artist": "Blondie", + "position": 97, + "title": "Dreaming" + }, + { + "artist": "Village People", + "position": 98, + "title": "Ready For The 80's" + }, + { + "artist": "Frank Mills", + "position": 99, + "title": "Peter Piper" + }, + { + "artist": "Lauren Wood", + "position": 100, + "title": "Please Don't Leave" + } + ], + "title": "1979 - Hot 100" + }, + { + "songs": [ + { + "artist": "Chic", + "position": 1, + "title": "Le Freak" + }, + { + "artist": "Bee Gees", + "position": 2, + "title": "Too Much Heaven" + }, + { + "artist": "Barbra Streisand & Neil Diamond", + "position": 3, + "title": "You Don't Bring Me Flowers" + }, + { + "artist": "Billy Joel", + "position": 4, + "title": "My Life" + }, + { + "artist": "Alicia Bridges", + "position": 5, + "title": "I Love The Nightlife (Disco 'Round)" + }, + { + "artist": "Gino Vannelli", + "position": 6, + "title": "I Just Wanna Stop" + }, + { + "artist": "Dr. Hook", + "position": 7, + "title": "Sharing The Night Together" + }, + { + "artist": "Village People", + "position": 8, + "title": "Y.M.C.A." + }, + { + "artist": "Andy Gibb", + "position": 9, + "title": "(Our Love) Don't Throw It All Away" + }, + { + "artist": "Toto", + "position": 10, + "title": "Hold The Line" + }, + { + "artist": "Linda Ronstadt", + "position": 11, + "title": "Ooh Baby Baby" + }, + { + "artist": "Alice Cooper", + "position": 12, + "title": "How You Gonna See Me Now" + }, + { + "artist": "Eric Clapton And His Band", + "position": 13, + "title": "Promises" + }, + { + "artist": "Al Stewart", + "position": 14, + "title": "Time Passages" + }, + { + "artist": "Donna Summer", + "position": 15, + "title": "MacArthur Park" + }, + { + "artist": "Firefall", + "position": 16, + "title": "Strange Way" + }, + { + "artist": "Bob Seger & The Silver Bullet Band", + "position": 17, + "title": "We've Got Tonight" + }, + { + "artist": "Earth, Wind & Fire", + "position": 18, + "title": "September" + }, + { + "artist": "Olivia Newton-John", + "position": 19, + "title": "A Little More Love" + }, + { + "artist": "Eagles", + "position": 20, + "title": "Please Come Home For Christmas" + }, + { + "artist": "Chaka Khan", + "position": 21, + "title": "I'm Every Woman" + }, + { + "artist": "Hot Chocolate", + "position": 22, + "title": "Every 1's A Winner" + }, + { + "artist": "Ace Frehley", + "position": 23, + "title": "New York Groove" + }, + { + "artist": "Paul Davis", + "position": 24, + "title": "Sweet Life" + }, + { + "artist": "Queen", + "position": 25, + "title": "Bicycle Race/Fat Bottomed Girls" + }, + { + "artist": "Ian Matthews", + "position": 26, + "title": "Shake It" + }, + { + "artist": "Nicolette Larson", + "position": 27, + "title": "Lotta Love" + }, + { + "artist": "The Pointer Sisters", + "position": 28, + "title": "Fire" + }, + { + "artist": "Ambrosia", + "position": 29, + "title": "How Much I Feel" + }, + { + "artist": "Leif Garrett", + "position": 30, + "title": "I Was Made For Dancin'" + }, + { + "artist": "Heart", + "position": 31, + "title": "Straight On" + }, + { + "artist": "Chanson", + "position": 32, + "title": "Don't Hold Back" + }, + { + "artist": "Dan Hartman", + "position": 33, + "title": "Instant Replay" + }, + { + "artist": "Livingston Taylor", + "position": 34, + "title": "I Will Be In Love With You" + }, + { + "artist": "The Cars", + "position": 35, + "title": "My Best Friend's Girl" + }, + { + "artist": "Elton John", + "position": 36, + "title": "Part-Time Love" + }, + { + "artist": "Boston", + "position": 37, + "title": "A Man I'll Never Be" + }, + { + "artist": "Kenny Rogers", + "position": 38, + "title": "The Gambler" + }, + { + "artist": "Talking Heads", + "position": 39, + "title": "Take Me To The River" + }, + { + "artist": "Rod Stewart", + "position": 40, + "title": "Da Ya Think I'm Sexy?" + }, + { + "artist": "Melissa Manchester", + "position": 41, + "title": "Don't Cry Out Loud" + }, + { + "artist": "Rick James", + "position": 42, + "title": "Mary Jane" + }, + { + "artist": "Gerry Rafferty", + "position": 43, + "title": "Home And Dry" + }, + { + "artist": "Cheryl Lynn", + "position": 44, + "title": "Got To Be Real" + }, + { + "artist": "The J. Geils Band", + "position": 45, + "title": "One Last Kiss" + }, + { + "artist": "Paul Stanley", + "position": 46, + "title": "Hold Me, Touch Me" + }, + { + "artist": "Exile", + "position": 47, + "title": "You Thrill Me" + }, + { + "artist": "Cooper Brothers", + "position": 48, + "title": "The Dream Never Dies" + }, + { + "artist": "Meat Loaf", + "position": 49, + "title": "You Took The Words Right Out Of My Mouth" + }, + { + "artist": "Gene Simmons", + "position": 50, + "title": "Radioactive" + }, + { + "artist": "Foreigner", + "position": 51, + "title": "Double Vision" + }, + { + "artist": "Dan Fogelberg/Tim Weisberg", + "position": 52, + "title": "The Power Of Gold" + }, + { + "artist": "Rose Royce", + "position": 53, + "title": "Love Don't Live Here Anymore" + }, + { + "artist": "Blues Brothers", + "position": 54, + "title": "Soul Man" + }, + { + "artist": "The Rolling Stones", + "position": 55, + "title": "Shattered" + }, + { + "artist": "Dolly Parton", + "position": 56, + "title": "Baby I'm Burnin'" + }, + { + "artist": "Barry Manilow", + "position": 57, + "title": "Somewhere In The Night" + }, + { + "artist": "Musique", + "position": 58, + "title": "In The Bush" + }, + { + "artist": "Captain & Tennille", + "position": 59, + "title": "You Need A Woman Tonight" + }, + { + "artist": "Barry White", + "position": 60, + "title": "Your Sweetness Is My Weakness" + }, + { + "artist": "Chicago", + "position": 61, + "title": "Alive Again" + }, + { + "artist": "Kenny Loggins", + "position": 62, + "title": "Easy Driver" + }, + { + "artist": "Fotomaker", + "position": 63, + "title": "Miles Away" + }, + { + "artist": "Nigel Olsson", + "position": 64, + "title": "Dancin' Shoes" + }, + { + "artist": "Daryl Hall John Oates", + "position": 65, + "title": "I Don't Wanna Lose You" + }, + { + "artist": "Jefferson Starship", + "position": 66, + "title": "Light The Sky On Fire" + }, + { + "artist": "Don Ray", + "position": 67, + "title": "Got To Have Loving" + }, + { + "artist": "Carpenters", + "position": 68, + "title": "I Believe You" + }, + { + "artist": "Santana", + "position": 69, + "title": "Well All Right" + }, + { + "artist": "John Paul Young", + "position": 70, + "title": "Lost In Your Love" + }, + { + "artist": "Peaches & Herb", + "position": 71, + "title": "Shake Your Groove Thing" + }, + { + "artist": "Player", + "position": 72, + "title": "Silver Lining" + }, + { + "artist": "Eddie Money", + "position": 73, + "title": "You've Really Got A Hold On Me" + }, + { + "artist": "Lindisfarne", + "position": 74, + "title": "Run For Home" + }, + { + "artist": "Foreigner", + "position": 75, + "title": "Blue Morning, Blue Day" + }, + { + "artist": "Gloria Gaynor", + "position": 76, + "title": "I Will Survive" + }, + { + "artist": "Chicago", + "position": 77, + "title": "No Tell Lover" + }, + { + "artist": "Marshall Hain", + "position": 78, + "title": "Dancing In The City" + }, + { + "artist": "Switch", + "position": 79, + "title": "There'll Never Be" + }, + { + "artist": "Faith Band", + "position": 80, + "title": "Dancin' Shoes" + }, + { + "artist": "Justin Hayward", + "position": 81, + "title": "Forever Autumn" + }, + { + "artist": "Bonnie Pointer", + "position": 82, + "title": "Free Me From My Freedom/Tie Me To A Tree (Handcuff Me)" + }, + { + "artist": "Bobby Caldwell", + "position": 83, + "title": "What You Won't Do For Love" + }, + { + "artist": "KC And The Sunshine Band", + "position": 84, + "title": "Who Do Ya Love" + }, + { + "artist": "Engelbert Humperdinck", + "position": 85, + "title": "This Moment In Time" + }, + { + "artist": "Dobie Gray", + "position": 86, + "title": "You Can Do It" + }, + { + "artist": "Eric Carmen", + "position": 87, + "title": "Change Of Heart" + }, + { + "artist": "Stephen Bishop", + "position": 88, + "title": "Animal House" + }, + { + "artist": "Yvonne Elliman", + "position": 89, + "title": "Moment By Moment" + }, + { + "artist": "Boney M", + "position": 90, + "title": "Mary's Boy Child/Oh My Lord" + }, + { + "artist": "The Blend", + "position": 91, + "title": "I'm Gonna Make You Love Me" + }, + { + "artist": "John Davis And The Monster Orchestra", + "position": 92, + "title": "Ain't That Enough For You" + }, + { + "artist": "The Raes", + "position": 93, + "title": "A Little Lovin' (Keeps The Doctor Away)" + }, + { + "artist": "Glen Campbell", + "position": 94, + "title": "Can You Fool" + }, + { + "artist": "Pablo Cruise", + "position": 95, + "title": "Don't Want To Live Without It" + }, + { + "artist": "Anne Murray", + "position": 96, + "title": "You Needed Me" + }, + { + "artist": "Captain & Tennille", + "position": 97, + "title": "You Never Done It Like That" + }, + { + "artist": "Barry Manilow", + "position": 98, + "title": "Ready To Take A Chance Again" + }, + { + "artist": "Nick Gilder", + "position": 99, + "title": "Hot Child In The City" + }, + { + "artist": "Jimmy Buffett", + "position": 100, + "title": "Ma??�ana" + } + ], + "title": "1978 - Hot 100" + }, + { + "songs": [ + { + "artist": "Bee Gees", + "position": 1, + "title": "How Deep Is Your Love" + }, + { + "artist": "Debby Boone", + "position": 2, + "title": "You Light Up My Life" + }, + { + "artist": "Linda Ronstadt", + "position": 3, + "title": "Blue Bayou" + }, + { + "artist": "LTD", + "position": 4, + "title": "(Every Time I Turn Around) Back In Love Again" + }, + { + "artist": "Linda Ronstadt", + "position": 5, + "title": "It's So Easy" + }, + { + "artist": "Player", + "position": 6, + "title": "Baby Come Back" + }, + { + "artist": "Crystal Gayle", + "position": 7, + "title": "Don't It Make My Brown Eyes Blue" + }, + { + "artist": "Dolly Parton", + "position": 8, + "title": "Here You Come Again" + }, + { + "artist": "Bob Welch", + "position": 9, + "title": "Sentimental Lady" + }, + { + "artist": "Paul Simon", + "position": 10, + "title": "Slip Slidin' Away" + }, + { + "artist": "Rod Stewart", + "position": 11, + "title": "You're In My Heart (The Final Acclaim)" + }, + { + "artist": "High Inergy", + "position": 12, + "title": "You Can't Turn Me Off (In The Middle Of Turning Me On)" + }, + { + "artist": "The Babys", + "position": 13, + "title": "Isn't It Time" + }, + { + "artist": "Styx", + "position": 14, + "title": "Come Sail Away" + }, + { + "artist": "Shaun Cassidy", + "position": 15, + "title": "Hey Deanie" + }, + { + "artist": "Rita Coolidge", + "position": 16, + "title": "We're All Alone" + }, + { + "artist": "The Steve Miller Band", + "position": 17, + "title": "Swingtown" + }, + { + "artist": "Queen", + "position": 18, + "title": "We Will Rock You/We Are The Champions" + }, + { + "artist": "Leif Garrett", + "position": 19, + "title": "Runaround Sue" + }, + { + "artist": "Randy Newman", + "position": 20, + "title": "Short People" + }, + { + "artist": "Fleetwood Mac", + "position": 21, + "title": "You Make Loving Fun" + }, + { + "artist": "Elvis Presley", + "position": 22, + "title": "My Way" + }, + { + "artist": "Paul Davis", + "position": 23, + "title": "I Go Crazy" + }, + { + "artist": "Earth, Wind & Fire", + "position": 24, + "title": "Serpentine Fire" + }, + { + "artist": "Chicago", + "position": 25, + "title": "Baby, What A Big Surprise" + }, + { + "artist": "Bay City Rollers", + "position": 26, + "title": "The Way I Feel Tonight" + }, + { + "artist": "Electric Light Orchestra", + "position": 27, + "title": "Turn To Stone" + }, + { + "artist": "Billy Joel", + "position": 28, + "title": "Just The Way You Are" + }, + { + "artist": "Diana Ross", + "position": 29, + "title": "Gettin' Ready For Love" + }, + { + "artist": "Chic", + "position": 30, + "title": "Dance, Dance, Dance (Yowsah, Yowsah, Yowsah)" + }, + { + "artist": "Paul Nicholas", + "position": 31, + "title": "Heaven On The 7th Floor" + }, + { + "artist": "Andy Gibb", + "position": 32, + "title": "(Love Is) Thicker Than Water" + }, + { + "artist": "Santa Esmeralda Starring Leroy Gomez", + "position": 33, + "title": "Don't Let Me Be Misunderstood" + }, + { + "artist": "Kansas", + "position": 34, + "title": "Point Of Know Return" + }, + { + "artist": "Neil Diamond", + "position": 35, + "title": "Desir??�e" + }, + { + "artist": "Odyssey", + "position": 36, + "title": "Native New Yorker" + }, + { + "artist": "Wings", + "position": 37, + "title": "Girls' School" + }, + { + "artist": "James Taylor", + "position": 38, + "title": "Your Smiling Face" + }, + { + "artist": "Bee Gees", + "position": 39, + "title": "Stayin' Alive" + }, + { + "artist": "Dan Hill", + "position": 40, + "title": "Sometimes When We Touch" + }, + { + "artist": "Samantha Sang", + "position": 41, + "title": "Emotion" + }, + { + "artist": "Cheech & Chong", + "position": 42, + "title": "Bloat On Featuring the Bloaters" + }, + { + "artist": "Donny & Marie Osmond", + "position": 43, + "title": "(You're My) Soul And Inspiration" + }, + { + "artist": "Steely Dan", + "position": 44, + "title": "Peg" + }, + { + "artist": "Heatwave", + "position": 45, + "title": "Boogie Nights" + }, + { + "artist": "Bill Withers", + "position": 46, + "title": "Lovely Day" + }, + { + "artist": "Peter Frampton", + "position": 47, + "title": "Tried To Love" + }, + { + "artist": "Millie Jackson", + "position": 48, + "title": "If You're Not Back In Love By Monday" + }, + { + "artist": "Stevie Wonder", + "position": 49, + "title": "As" + }, + { + "artist": "KC And The Sunshine Band", + "position": 50, + "title": "Wrap Your Arms Around Me" + }, + { + "artist": "The Emotions", + "position": 51, + "title": "Don't Ask My Neighbors" + }, + { + "artist": "Lynyrd Skynyrd", + "position": 52, + "title": "What's Your Name" + }, + { + "artist": "John Denver", + "position": 53, + "title": "How Can I Leave You Again" + }, + { + "artist": "Santana", + "position": 54, + "title": "She's Not There" + }, + { + "artist": "Wet Willie", + "position": 55, + "title": "Street Corner Serenade" + }, + { + "artist": "Commodores", + "position": 56, + "title": "Too Hot Ta Trot" + }, + { + "artist": "Barry White", + "position": 57, + "title": "It's Ecstasy When You Lay Down Next To Me" + }, + { + "artist": "Carpenters", + "position": 58, + "title": "Calling Occupants Of Interplanetary Craft" + }, + { + "artist": "Foreigner", + "position": 59, + "title": "Long, Long Way From Home" + }, + { + "artist": "England Dan & John Ford Coley", + "position": 60, + "title": "Gone Too Far" + }, + { + "artist": "Dave Mason", + "position": 61, + "title": "We Just Disagree" + }, + { + "artist": "Carly Simon", + "position": 62, + "title": "Nobody Does It Better" + }, + { + "artist": "Judy Collins", + "position": 63, + "title": "Send In The Clowns" + }, + { + "artist": "Al Martino", + "position": 64, + "title": "The Next Hundred Years" + }, + { + "artist": "Donna Summer", + "position": 65, + "title": "I Feel Love" + }, + { + "artist": "Leo Sayer", + "position": 66, + "title": "Easy To Love" + }, + { + "artist": "Sammy Hagar", + "position": 67, + "title": "You Make Me Crazy" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 68, + "title": "Breakdown" + }, + { + "artist": "Olivia Newton-John", + "position": 69, + "title": "I Honestly Love You" + }, + { + "artist": "Ramones", + "position": 70, + "title": "Rockaway Beach" + }, + { + "artist": "LeBlanc & Carr", + "position": 71, + "title": "Falling" + }, + { + "artist": "The Sylvers", + "position": 72, + "title": "Any Way You Want Me" + }, + { + "artist": "Kenny Rogers", + "position": 73, + "title": "Sweet Music Man" + }, + { + "artist": "Marilyn Scott", + "position": 74, + "title": "God Only Knows" + }, + { + "artist": "Con Funk Shun", + "position": 75, + "title": "Ffun" + }, + { + "artist": "Cat Stevens", + "position": 76, + "title": "Was Dog A Doughnut" + }, + { + "artist": "Donna Summer", + "position": 77, + "title": "I Love You" + }, + { + "artist": "Jay Ferguson", + "position": 78, + "title": "Thunder Island" + }, + { + "artist": "Stillwater", + "position": 79, + "title": "Mind Bender" + }, + { + "artist": "Addrisi Brothers", + "position": 80, + "title": "Never My Love" + }, + { + "artist": "John Williams", + "position": 81, + "title": "Theme From Close Encounters Of The Third Kind" + }, + { + "artist": "ABBA", + "position": 82, + "title": "The Name Of The Game" + }, + { + "artist": "Kellee Patterson", + "position": 83, + "title": "If It Don't Fit, Don't Force It" + }, + { + "artist": "Little River Band", + "position": 84, + "title": "Happy Anniversary" + }, + { + "artist": "Johnny Rivers", + "position": 85, + "title": "Curious Mind (Um, Um, Um, Um, Um, Um)" + }, + { + "artist": "Rose Royce", + "position": 86, + "title": "Ooh Boy" + }, + { + "artist": "Ronnie Milsap", + "position": 87, + "title": "What A Difference You've Made In My Life" + }, + { + "artist": "David Gates", + "position": 88, + "title": "Goodbye Girl" + }, + { + "artist": "Le Pamplemousse", + "position": 89, + "title": "Le Spank" + }, + { + "artist": "Eric Carmen", + "position": 90, + "title": "Boats Against The Current" + }, + { + "artist": "El Coco", + "position": 91, + "title": "Cocomotion" + }, + { + "artist": "Bobby Arvon", + "position": 92, + "title": "Until Now" + }, + { + "artist": "The Alan Parsons Project", + "position": 93, + "title": "Don't Let It Show" + }, + { + "artist": "Brick", + "position": 94, + "title": "Dusic" + }, + { + "artist": "Shaun Cassidy", + "position": 95, + "title": "That's Rock 'N' Roll" + }, + { + "artist": "Jackie DeShannon", + "position": 96, + "title": "Don't Let The Flame Burn Out" + }, + { + "artist": "Firefall", + "position": 97, + "title": "Just Remember I Love You" + }, + { + "artist": "Aerosmith", + "position": 98, + "title": "Draw The Line" + }, + { + "artist": "Tavares", + "position": 99, + "title": "More Than A Woman" + }, + { + "artist": "Little River Band", + "position": 100, + "title": "Help Is On Its Way" + } + ], + "title": "1977 - Hot 100" + }, + { + "songs": [ + { + "artist": "Rod Stewart", + "position": 1, + "title": "Tonight's The Night (Gonna Be Alright)" + }, + { + "artist": "Marilyn McCoo & Billy Davis, Jr.", + "position": 2, + "title": "You Don't Have To Be A Star (To Be In My Show)" + }, + { + "artist": "The Spinners", + "position": 3, + "title": "The Rubberband Man" + }, + { + "artist": "Leo Sayer", + "position": 4, + "title": "You Make Me Feel Like Dancing" + }, + { + "artist": "Boston", + "position": 5, + "title": "More Than A Feeling" + }, + { + "artist": "Elton John", + "position": 6, + "title": "Sorry Seems To Be The Hardest Word" + }, + { + "artist": "Stevie Wonder", + "position": 7, + "title": "I Wish" + }, + { + "artist": "Brick", + "position": 8, + "title": "Dazz" + }, + { + "artist": "Rose Royce", + "position": 9, + "title": "Car Wash" + }, + { + "artist": "Engelbert Humperdinck", + "position": 10, + "title": "After The Lovin'" + }, + { + "artist": "Burton Cummings", + "position": 11, + "title": "Stand Tall" + }, + { + "artist": "The Sylvers", + "position": 12, + "title": "Hot Line" + }, + { + "artist": "Alice Cooper", + "position": 13, + "title": "I Never Cry" + }, + { + "artist": "Yvonne Elliman", + "position": 14, + "title": "Love Me" + }, + { + "artist": "Electric Light Orchestra", + "position": 15, + "title": "Livin' Thing" + }, + { + "artist": "Captain & Tennille", + "position": 16, + "title": "Muskrat Love" + }, + { + "artist": "Barry DeVorzon and Perry Botkin, Jr.", + "position": 17, + "title": "Nadia's Theme (The Young And The Restless)" + }, + { + "artist": "England Dan & John Ford Coley", + "position": 18, + "title": "Nights Are Forever Without You" + }, + { + "artist": "Queen", + "position": 19, + "title": "Somebody To Love" + }, + { + "artist": "Eagles", + "position": 20, + "title": "New Kid In Town" + }, + { + "artist": "The Jacksons", + "position": 21, + "title": "Enjoy Yourself" + }, + { + "artist": "Bread", + "position": 22, + "title": "Lost Without Your Love" + }, + { + "artist": "Firefall", + "position": 23, + "title": "You Are The Woman" + }, + { + "artist": "David Dundas", + "position": 24, + "title": "Jeans On" + }, + { + "artist": "The Bar-Kays", + "position": 25, + "title": "Shake Your Rump To The Funk" + }, + { + "artist": "Earth, Wind & Fire", + "position": 26, + "title": "Saturday Nite" + }, + { + "artist": "George Harrison", + "position": 27, + "title": "This Song" + }, + { + "artist": "Aerosmith", + "position": 28, + "title": "Walk This Way" + }, + { + "artist": "Mary Macgregor", + "position": 29, + "title": "Torn Between Two Lovers" + }, + { + "artist": "Kenny Nolan", + "position": 30, + "title": "I Like Dreamin'" + }, + { + "artist": "Bee Gees", + "position": 31, + "title": "Love So Right" + }, + { + "artist": "Manfred Mann's Earth Band", + "position": 32, + "title": "Blinded By The Light" + }, + { + "artist": "Dr. Buzzard's Original Savannah Band", + "position": 33, + "title": "Whispering/Cherchez La Femme/Se Si Bon" + }, + { + "artist": "L.T.D.", + "position": 34, + "title": "Love Ballad" + }, + { + "artist": "Barry Manilow", + "position": 35, + "title": "Weekend In New England" + }, + { + "artist": "Styx", + "position": 36, + "title": "Mademoiselle" + }, + { + "artist": "Donny & Marie Osmond", + "position": 37, + "title": "Ain't Nothing Like The Real Thing" + }, + { + "artist": "Al Green", + "position": 38, + "title": "Keep Me Cryin'" + }, + { + "artist": "Daryl Hall John Oates", + "position": 39, + "title": "Do What You Want, Be What You Are" + }, + { + "artist": "Foghat", + "position": 40, + "title": "Drivin' Wheel" + }, + { + "artist": "Kiss", + "position": 41, + "title": "Beth/Detroit Rock City" + }, + { + "artist": "Boz Scaggs", + "position": 42, + "title": "What Can I Say" + }, + { + "artist": "Lynyrd Skynyrd", + "position": 43, + "title": "Free Bird" + }, + { + "artist": "The Walter Murphy Band", + "position": 44, + "title": "Flight '76" + }, + { + "artist": "Eric Clapton", + "position": 45, + "title": "Hello Old Friend" + }, + { + "artist": "Linda Ronstadt", + "position": 46, + "title": "Someone To Lay Down Beside Me" + }, + { + "artist": "KC And The Sunshine Band", + "position": 47, + "title": "I Like To Do It" + }, + { + "artist": "Rick Dees & His Cast Of Idiots", + "position": 48, + "title": "Disco Duck (Part I)" + }, + { + "artist": "The Doobie Brothers", + "position": 49, + "title": "It Keeps You Runnin'" + }, + { + "artist": "Johnny Bristol", + "position": 50, + "title": "Do It To My Mind" + }, + { + "artist": "Barbra Streisand", + "position": 51, + "title": "Evergreen (Love Theme From A Star Is Born)" + }, + { + "artist": "Steve Miller", + "position": 52, + "title": "Fly Like An Eagle" + }, + { + "artist": "Smokie", + "position": 53, + "title": "Living Next Door To Alice" + }, + { + "artist": "Dickey Lee", + "position": 54, + "title": "9,999,999 Tears" + }, + { + "artist": "Dr. Hook", + "position": 55, + "title": "If Not You" + }, + { + "artist": "Bay City Rollers", + "position": 56, + "title": "Yesterday's Hero" + }, + { + "artist": "Commodores", + "position": 57, + "title": "Just To Be Close To You" + }, + { + "artist": "Tavares", + "position": 58, + "title": "Don't Take Away The Music" + }, + { + "artist": "Bob Seger", + "position": 59, + "title": "Night Moves" + }, + { + "artist": "Gene Cotton", + "position": 60, + "title": "You've Got Me Runnin'" + }, + { + "artist": "Mary Kay Place As Loretta Haggers", + "position": 61, + "title": "Baby Boy" + }, + { + "artist": "Kiss", + "position": 62, + "title": "Hard Luck Woman" + }, + { + "artist": "Funky Kings", + "position": 63, + "title": "Slow Dancing" + }, + { + "artist": "Jefferson Starship", + "position": 64, + "title": "St. Charles" + }, + { + "artist": "Robert Palmer", + "position": 65, + "title": "Man Smart, Woman Smarter" + }, + { + "artist": "ABBA", + "position": 66, + "title": "Dancing Queen" + }, + { + "artist": "Stephen Bishop", + "position": 67, + "title": "Save It For A Rainy Day" + }, + { + "artist": "Gordon Lightfoot", + "position": 68, + "title": "The Wreck Of The Edmund Fitzgerald" + }, + { + "artist": "Peter Frampton", + "position": 69, + "title": "Do You Feel Like We Do" + }, + { + "artist": "Donna Summer", + "position": 70, + "title": "Spring Affair/Winter Melody" + }, + { + "artist": "The Beatles", + "position": 71, + "title": "Ob-la-di, Ob-la-da" + }, + { + "artist": "Heart", + "position": 72, + "title": "Dreamboat Annie" + }, + { + "artist": "Starbuck", + "position": 73, + "title": "Lucky Man" + }, + { + "artist": "Deniece Williams", + "position": 74, + "title": "Free" + }, + { + "artist": "Thelma Houston", + "position": 75, + "title": "Don't Leave Me This Way" + }, + { + "artist": "Paul Anka", + "position": 76, + "title": "Happier" + }, + { + "artist": "Kool & The Gang", + "position": 77, + "title": "Open Sesame - Part 1" + }, + { + "artist": "Olivia Newton-John", + "position": 78, + "title": "Every Face Tells A Story" + }, + { + "artist": "John Denver", + "position": 79, + "title": "Baby, You Look Good To Me Tonight" + }, + { + "artist": "Cliff Richard", + "position": 80, + "title": "I Can't Ask For Anymore Than You" + }, + { + "artist": "Chicago", + "position": 81, + "title": "If You Leave Me Now" + }, + { + "artist": "Elvis Presley", + "position": 82, + "title": "Moody Blue/she Thinks I Still Care" + }, + { + "artist": "Robin Trower", + "position": 83, + "title": "Caledonia" + }, + { + "artist": "Al Stewart", + "position": 84, + "title": "Year Of The Cat" + }, + { + "artist": "The Supremes", + "position": 85, + "title": "You're My Driving Wheel" + }, + { + "artist": "Bryan Ferry", + "position": 86, + "title": "Heart On My Sleeve" + }, + { + "artist": "Kansas", + "position": 87, + "title": "Carry On Wayward Son" + }, + { + "artist": "Arthur Prysock", + "position": 88, + "title": "When Love Is New" + }, + { + "artist": "Rod Hart", + "position": 89, + "title": "C.b. Savage" + }, + { + "artist": "Brass Construction", + "position": 90, + "title": "Ha Cha Cha (funktion)" + }, + { + "artist": "David Laflamme", + "position": 91, + "title": "White Bird" + }, + { + "artist": "Little River Band", + "position": 92, + "title": "It's A Long Way There" + }, + { + "artist": "L.A. Jets", + "position": 93, + "title": "Prisoner (Captured By Your Eyes)" + }, + { + "artist": "Bumble Bee Unlimited", + "position": 94, + "title": "Love Bug" + }, + { + "artist": "Walter Jackson", + "position": 95, + "title": "Feelings" + }, + { + "artist": "JJ Cale", + "position": 96, + "title": "Hey Baby" + }, + { + "artist": "Elvin Bishop Featuring Mickey Thomas", + "position": 97, + "title": "Spend Some Time" + }, + { + "artist": "Starz", + "position": 98, + "title": "(She's Just A) Fallen Angel" + }, + { + "artist": "Seals & Crofts", + "position": 99, + "title": "Baby, I'll Give It To You" + }, + { + "artist": "The Ritchie Family", + "position": 100, + "title": "The Best Disco In Town" + } + ], + "title": "1976 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Staple Singers", + "position": 1, + "title": "Let's Do It Again" + }, + { + "artist": "Bay City Rollers", + "position": 2, + "title": "Saturday Night" + }, + { + "artist": "KC And The Sunshine Band", + "position": 3, + "title": "That's The Way (I Like It)" + }, + { + "artist": "Ohio Players", + "position": 4, + "title": "Love Rollercoaster" + }, + { + "artist": "Diana Ross", + "position": 5, + "title": "Theme From Mahogany (Do You Know Where You're Going To)" + }, + { + "artist": "Barry Manilow", + "position": 6, + "title": "I Write The Songs" + }, + { + "artist": "C.W. McCall", + "position": 7, + "title": "Convoy" + }, + { + "artist": "Sweet", + "position": 8, + "title": "Fox On The Run" + }, + { + "artist": "Silver Convention", + "position": 9, + "title": "Fly, Robin, Fly" + }, + { + "artist": "The O'Jays", + "position": 10, + "title": "I Love Music (Part 1)" + }, + { + "artist": "Frankie Valli", + "position": 11, + "title": "Our Day Will Come" + }, + { + "artist": "Jigsaw", + "position": 12, + "title": "Sky High" + }, + { + "artist": "Bee Gees", + "position": 13, + "title": "Nights On Broadway" + }, + { + "artist": "Paul Anka", + "position": 14, + "title": "Times Of Your Life" + }, + { + "artist": "Donna Summer", + "position": 15, + "title": "Love To Love You Baby" + }, + { + "artist": "Glen Campbell", + "position": 16, + "title": "Country Boy (You Got Your Feet In L.A.)" + }, + { + "artist": "David Ruffin", + "position": 17, + "title": "Walk Away From Love" + }, + { + "artist": "David Geddes", + "position": 18, + "title": "The Last Game Of The Season (A Blind Man In The Bleachers)" + }, + { + "artist": "Earth, Wind & Fire", + "position": 19, + "title": "Sing A Song" + }, + { + "artist": "Hot Chocolate", + "position": 20, + "title": "You Sexy Thing" + }, + { + "artist": "Kiss", + "position": 21, + "title": "Rock And Roll All Nite (live)" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 22, + "title": "Part Time Love" + }, + { + "artist": "John Denver", + "position": 23, + "title": "Fly Away" + }, + { + "artist": "Electric Light Orchestra", + "position": 24, + "title": "Evil Woman" + }, + { + "artist": "The Isley Brothers", + "position": 25, + "title": "For The Love Of You (Part 1&2)" + }, + { + "artist": "The Miracles", + "position": 26, + "title": "Love Machine (Part 1)" + }, + { + "artist": "Fleetwood Mac", + "position": 27, + "title": "Over My Head" + }, + { + "artist": "Al Green", + "position": 28, + "title": "Full Of Fire" + }, + { + "artist": "Simon & Garfunkel", + "position": 29, + "title": "My Little Town" + }, + { + "artist": "Hamilton, Joe Frank & Reynolds", + "position": 30, + "title": "Winners And Losers" + }, + { + "artist": "Captain & Tennille", + "position": 31, + "title": "The Way I Want To Touch You" + }, + { + "artist": "Elton John", + "position": 32, + "title": "Island Girl" + }, + { + "artist": "AWB", + "position": 33, + "title": "School Boy Crush" + }, + { + "artist": "Neil Sedaka", + "position": 34, + "title": "Breaking Up Is Hard To Do" + }, + { + "artist": "The Wing And A Prayer Fife & Drum Corps.", + "position": 35, + "title": "Baby Face" + }, + { + "artist": "Harold Melvin And The Blue Notes", + "position": 36, + "title": "Wake Up Everybody (Part 1)" + }, + { + "artist": "Helen Reddy", + "position": 37, + "title": "Somewhere In The Night" + }, + { + "artist": "The Marshall Tucker Band", + "position": 38, + "title": "Fire On The Mountain" + }, + { + "artist": "Al Martino", + "position": 39, + "title": "Volare" + }, + { + "artist": "The Road Apples", + "position": 40, + "title": "Let's Live Together" + }, + { + "artist": "Nazareth", + "position": 41, + "title": "Love Hurts" + }, + { + "artist": "Bob Dylan", + "position": 42, + "title": "Hurricane (Part I)" + }, + { + "artist": "Olivia Newton-John", + "position": 43, + "title": "Let It Shine/He Ain't Heavy...He's My Brother" + }, + { + "artist": "Leon Haywood", + "position": 44, + "title": "I Want'a Do Something Freaky To You" + }, + { + "artist": "The Who", + "position": 45, + "title": "Squeeze Box" + }, + { + "artist": "America", + "position": 46, + "title": "Woman Tonight" + }, + { + "artist": "George Baker Selection", + "position": 47, + "title": "Paloma Blanca" + }, + { + "artist": "Purple Reign", + "position": 48, + "title": "This Old Man" + }, + { + "artist": "War", + "position": 49, + "title": "Low Rider" + }, + { + "artist": "Paul Simon", + "position": 50, + "title": "50 Ways To Leave Your Lover" + }, + { + "artist": "Freddy Fender", + "position": 51, + "title": "Secret Love" + }, + { + "artist": "Bachman-Turner Overdrive", + "position": 52, + "title": "Down To The Line" + }, + { + "artist": "David Bowie", + "position": 53, + "title": "Golden Years" + }, + { + "artist": "Jefferson Starship", + "position": 54, + "title": "Play On Love" + }, + { + "artist": "Tavares", + "position": 55, + "title": "Free Ride" + }, + { + "artist": "Morris Albert", + "position": 56, + "title": "Feelings" + }, + { + "artist": "Foghat", + "position": 57, + "title": "Slow Ride" + }, + { + "artist": "Kenny Starr", + "position": 58, + "title": "The Blind Man In The Bleachers" + }, + { + "artist": "The 4 Seasons", + "position": 59, + "title": "Who Loves You" + }, + { + "artist": "Rhythm Heritage", + "position": 60, + "title": "Theme From S.W.A.T." + }, + { + "artist": "The Pointer Sisters", + "position": 61, + "title": "Going Down Slowly" + }, + { + "artist": "Eagles", + "position": 62, + "title": "Take It To The Limit" + }, + { + "artist": "John Denver", + "position": 63, + "title": "Christmas For Cowboys" + }, + { + "artist": "Natalie Cole", + "position": 64, + "title": "Inseparable" + }, + { + "artist": "Eric Carmen", + "position": 65, + "title": "All By Myself" + }, + { + "artist": "Donny & Marie Osmond", + "position": 66, + "title": "Deep Purple" + }, + { + "artist": "Billy Crash Craddock", + "position": 67, + "title": "Easy As Pie" + }, + { + "artist": "Eddie Kendricks", + "position": 68, + "title": "Happy" + }, + { + "artist": "Batdorf & Rodney", + "position": 69, + "title": "Somewhere In The Night" + }, + { + "artist": "Barry White", + "position": 70, + "title": "Let The Music Play" + }, + { + "artist": "Linda Ronstadt", + "position": 71, + "title": "Tracks Of My Tears" + }, + { + "artist": "Willie Nelson", + "position": 72, + "title": "Blue Eyes Crying In The Rain" + }, + { + "artist": "Bee Gees", + "position": 73, + "title": "Fanny (be Tender With My Love)" + }, + { + "artist": "Hagood Hardy", + "position": 74, + "title": "The Homecoming" + }, + { + "artist": "Gloria Gaynor", + "position": 75, + "title": "How High The Moon" + }, + { + "artist": "Soul Train Gang", + "position": 76, + "title": "Soul Train 75" + }, + { + "artist": "The Spinners", + "position": 77, + "title": "Love Or Leave" + }, + { + "artist": "John Fogerty", + "position": 78, + "title": "Almost Saturday Night" + }, + { + "artist": "Prelude", + "position": 79, + "title": "For A Dancer" + }, + { + "artist": "John Paul Young", + "position": 80, + "title": "Yesterday's Hero" + }, + { + "artist": "Art Garfunkel", + "position": 81, + "title": "Break Away" + }, + { + "artist": "Commodores", + "position": 82, + "title": "Sweet Love" + }, + { + "artist": "10cc", + "position": 83, + "title": "Art For Art's Sake" + }, + { + "artist": "The Ritchie Family", + "position": 84, + "title": "I Want To Dance With You (Dance With Me)" + }, + { + "artist": "The 4 Seasons", + "position": 85, + "title": "December, 1963 (Oh, What a Night)" + }, + { + "artist": "The Doobie Brothers", + "position": 86, + "title": "I Cheat The Hangman" + }, + { + "artist": "Cledus Maggard And The Citizen's Band", + "position": 87, + "title": "The White Knight" + }, + { + "artist": "Conway Twitty with Joni Lee", + "position": 88, + "title": "Don't Cry Joni" + }, + { + "artist": "Roxy Music", + "position": 89, + "title": "Love Is The Drug" + }, + { + "artist": "The Eleventh Hour", + "position": 90, + "title": "Hollywood Hot" + }, + { + "artist": "Mfsb", + "position": 91, + "title": "The Zip" + }, + { + "artist": "The Stylistics", + "position": 92, + "title": "Funky Weekend" + }, + { + "artist": "Crown Heights Affair", + "position": 93, + "title": "Every Beat Of My Heart" + }, + { + "artist": "Amazing Rhythm Aces", + "position": 94, + "title": "Amazing Grace (used To Be Her Favorite Song)" + }, + { + "artist": "Bill Withers", + "position": 95, + "title": "Make Love To Your Mind" + }, + { + "artist": "Justin Hayward & John Lodge", + "position": 96, + "title": "Blue Guitar" + }, + { + "artist": "Wings", + "position": 97, + "title": "Venus And Mars Rock Show" + }, + { + "artist": "Pete Wingfield", + "position": 98, + "title": "Eighteen With A Bullet" + }, + { + "artist": "Greg Lake", + "position": 99, + "title": "I Believe In Father Christmas" + }, + { + "artist": "Country Joe McDonald", + "position": 100, + "title": "Breakfast For Two" + } + ], + "title": "1975 - Hot 100" + }, + { + "songs": [ + { + "artist": "Helen Reddy", + "position": 1, + "title": "Angie Baby" + }, + { + "artist": "Elton John", + "position": 2, + "title": "Lucy In The Sky With Diamonds" + }, + { + "artist": "Barry White", + "position": 3, + "title": "You're The First, The Last, My Everything" + }, + { + "artist": "Carl Douglas", + "position": 4, + "title": "Kung Fu Fighting" + }, + { + "artist": "Harry Chapin", + "position": 5, + "title": "Cat's In The Cradle" + }, + { + "artist": "Paul McCartney & Wings", + "position": 6, + "title": "Junior's Farm/Sally G" + }, + { + "artist": "The Three Degrees", + "position": 7, + "title": "When Will I See You Again" + }, + { + "artist": "Neil Sedaka", + "position": 8, + "title": "Laughter In The Rain" + }, + { + "artist": "Ringo Starr", + "position": 9, + "title": "Only You" + }, + { + "artist": "Stevie Wonder", + "position": 10, + "title": "Boogie On Reggae Woman" + }, + { + "artist": "Carpenters", + "position": 11, + "title": "Please Mr. Postman" + }, + { + "artist": "Barry Manilow", + "position": 12, + "title": "Mandy" + }, + { + "artist": "The J. Geils Band", + "position": 13, + "title": "Must Of Got Lost" + }, + { + "artist": "Paul Anka with Odia Coates", + "position": 14, + "title": "One Man Woman/One Woman Man" + }, + { + "artist": "Al Green", + "position": 15, + "title": "Sha-La-La (Make Me Happy)" + }, + { + "artist": "Jethro Tull", + "position": 16, + "title": "Bungle In The Jungle" + }, + { + "artist": "Rufus Featuring Chaka Khan", + "position": 17, + "title": "You Got The Love" + }, + { + "artist": "Gloria Gaynor", + "position": 18, + "title": "Never Can Say Goodbye" + }, + { + "artist": "Donny & Marie Osmond", + "position": 19, + "title": "Morning Side Of The Mountain" + }, + { + "artist": "George Harrison", + "position": 20, + "title": "Dark Horse" + }, + { + "artist": "Billy Swan", + "position": 21, + "title": "I Can Help" + }, + { + "artist": "B.T. Express", + "position": 22, + "title": "Do It ('Til You're Satisfied)" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 23, + "title": "I Feel A Song (In My Heart)/Don't Burn Down The Bridge" + }, + { + "artist": "Ohio Players", + "position": 24, + "title": "Fire" + }, + { + "artist": "Carol Douglas", + "position": 25, + "title": "Doctor's Orders" + }, + { + "artist": "Elvis Presley", + "position": 26, + "title": "Promised Land" + }, + { + "artist": "AWB", + "position": 27, + "title": "Pick Up The Pieces" + }, + { + "artist": "Paul Davis", + "position": 28, + "title": "Ride 'em Cowboy" + }, + { + "artist": "Grand Funk", + "position": 29, + "title": "Some Kind Of Wonderful" + }, + { + "artist": "The Guess Who", + "position": 30, + "title": "Dancin' Fool" + }, + { + "artist": "The Rolling Stones", + "position": 31, + "title": "Ain't Too Proud To Beg" + }, + { + "artist": "Mac Davis", + "position": 32, + "title": "Rock N' Roll (I Gave You The Best Years Of My Life)" + }, + { + "artist": "Shirley Brown", + "position": 33, + "title": "Woman To Woman" + }, + { + "artist": "Chicago", + "position": 34, + "title": "Wishing You Were Here" + }, + { + "artist": "Disco Tex & The Sex-O-Lettes", + "position": 35, + "title": "Get Dancin'" + }, + { + "artist": "The Pointer Sisters", + "position": 36, + "title": "Fairytale" + }, + { + "artist": "Billy Crash Craddock", + "position": 37, + "title": "Ruby, Baby" + }, + { + "artist": "Barbara Mason", + "position": 38, + "title": "From His Woman To You" + }, + { + "artist": "Billy Joel", + "position": 39, + "title": "The Entertainer" + }, + { + "artist": "Eagles", + "position": 40, + "title": "Best Of My Love" + }, + { + "artist": "Love Unlimited", + "position": 41, + "title": "I Belong To You" + }, + { + "artist": "Bachman-Turner Overdrive", + "position": 42, + "title": "You Ain't Seen Nothing Yet/Free Wheelin'" + }, + { + "artist": "Lynyrd Skynyrd", + "position": 43, + "title": "Free Bird" + }, + { + "artist": "James Brown", + "position": 44, + "title": "Funky President (People It's Bad)/Coldblooded" + }, + { + "artist": "Aretha Franklin", + "position": 45, + "title": "Without Love" + }, + { + "artist": "Linda Ronstadt", + "position": 46, + "title": "You're No Good" + }, + { + "artist": "The Righteous Brothers", + "position": 47, + "title": "Dream On" + }, + { + "artist": "Bobby Vinton", + "position": 48, + "title": "My Melody Of Love" + }, + { + "artist": "Neil Diamond", + "position": 49, + "title": "Longfellow Serenade" + }, + { + "artist": "Tavares", + "position": 50, + "title": "She's Gone" + }, + { + "artist": "The Joneses", + "position": 51, + "title": "Sugar Pie Guy Pt. 1" + }, + { + "artist": "Eric Clapton", + "position": 52, + "title": "Willie And The Hand Jive" + }, + { + "artist": "The Kiki Dee Band", + "position": 53, + "title": "I've Got The Music In Me" + }, + { + "artist": "Cat Stevens", + "position": 54, + "title": "Ready" + }, + { + "artist": "Frankie Valli", + "position": 55, + "title": "My Eyes Adored You" + }, + { + "artist": "David Bowie", + "position": 56, + "title": "Changes" + }, + { + "artist": "Billy Preston", + "position": 57, + "title": "Struttin'" + }, + { + "artist": "John Lennon", + "position": 58, + "title": "#9 Dream" + }, + { + "artist": "The Doobie Brothers", + "position": 59, + "title": "Black Water" + }, + { + "artist": "Jackson 5", + "position": 60, + "title": "Whatever You Got, I Want" + }, + { + "artist": "The Stylistics", + "position": 61, + "title": "Heavy Fallin' Out" + }, + { + "artist": "Carl Carlton", + "position": 62, + "title": "Everlasting Love" + }, + { + "artist": "Tony Orlando & Dawn", + "position": 63, + "title": "Look In My Eyes Pretty Woman" + }, + { + "artist": "John Lennon With The Plastic Ono Nuclear Band", + "position": 64, + "title": "Whatever Gets You Thru The Night" + }, + { + "artist": "John Denver", + "position": 65, + "title": "Back Home Again" + }, + { + "artist": "The O'Jays", + "position": 66, + "title": "Sunshine Part II" + }, + { + "artist": "Bo Donaldson And The Heywoods", + "position": 67, + "title": "The Heartbreak Kid" + }, + { + "artist": "B.B. King", + "position": 68, + "title": "Philadelphia" + }, + { + "artist": "Jim Stafford", + "position": 69, + "title": "Your Bulldog Drinks Champagne" + }, + { + "artist": "Carl Graves", + "position": 70, + "title": "Baby, Hang Up The Phone" + }, + { + "artist": "Eddie Kendricks", + "position": 71, + "title": "One Tear" + }, + { + "artist": "Styx", + "position": 72, + "title": "Lady" + }, + { + "artist": "Michael Holm", + "position": 73, + "title": "When A Child Is Born" + }, + { + "artist": "The Temptations", + "position": 74, + "title": "Happy People" + }, + { + "artist": "Smokey Robinson", + "position": 75, + "title": "I Am I Am" + }, + { + "artist": "Electric Light Orchestra", + "position": 76, + "title": "Can't Get It Out Of My Head" + }, + { + "artist": "America", + "position": 77, + "title": "Lonely People" + }, + { + "artist": "John Denver", + "position": 78, + "title": "Sweet Surrender" + }, + { + "artist": "Latimore", + "position": 79, + "title": "Let's Straighten It Out" + }, + { + "artist": "Anne Murray", + "position": 80, + "title": "Day Tripper" + }, + { + "artist": "Roy Rogers", + "position": 81, + "title": "Hoppy, Gene And Me" + }, + { + "artist": "Al Martino", + "position": 82, + "title": "To The Door Of The Sun (Alle Porte Del Sole)" + }, + { + "artist": "The Miracles", + "position": 83, + "title": "Don't Cha Love It" + }, + { + "artist": "Joni Mitchell", + "position": 84, + "title": "Big Yellow Taxi" + }, + { + "artist": "Sugarloaf/Jerry Corbetta", + "position": 85, + "title": "Don't Call Us, We'll Call You" + }, + { + "artist": "Candi Staton", + "position": 86, + "title": "As Long As He Takes Care Of Home" + }, + { + "artist": "Splinter", + "position": 87, + "title": "Costafine Town" + }, + { + "artist": "Maria Muldaur", + "position": 88, + "title": "I'm A Woman" + }, + { + "artist": "Commodores", + "position": 89, + "title": "I Feel Sanctified" + }, + { + "artist": "Peter Shelley", + "position": 90, + "title": "Gee Baby" + }, + { + "artist": "The Tymes", + "position": 91, + "title": "Ms. Grace" + }, + { + "artist": "Perry Como", + "position": 92, + "title": "Christmas Dream" + }, + { + "artist": "Bill Withers", + "position": 93, + "title": "Heartbreak Road" + }, + { + "artist": "Margie Joseph", + "position": 94, + "title": "Words (are Impossible)" + }, + { + "artist": "The Hues Corporation", + "position": 95, + "title": "Rockin' Soul" + }, + { + "artist": "Jim Weatherly", + "position": 96, + "title": "The Need To Be" + }, + { + "artist": "Johnny Bristol", + "position": 97, + "title": "You And I" + }, + { + "artist": "Bobby Bland", + "position": 98, + "title": "I Wouldn't Treat A Dog (The Way You Treated Me)" + }, + { + "artist": "Prelude", + "position": 99, + "title": "After The Goldrush" + }, + { + "artist": "Chilliwack", + "position": 100, + "title": "Crazy Talk" + } + ], + "title": "1974 - Hot 100" + }, + { + "songs": [ + { + "artist": "Jim Croce", + "position": 1, + "title": "Time In A Bottle" + }, + { + "artist": "Charlie Rich", + "position": 2, + "title": "The Most Beautiful Girl" + }, + { + "artist": "Helen Reddy", + "position": 3, + "title": "Leave Me Alone (ruby Red Dress)" + }, + { + "artist": "The Steve Miller Band", + "position": 4, + "title": "The Joker" + }, + { + "artist": "Elton John", + "position": 5, + "title": "GOODBYE YELLOW BRICK ROAD" + }, + { + "artist": "Todd Rundgren", + "position": 6, + "title": "Hello It's Me" + }, + { + "artist": "Carpenters", + "position": 7, + "title": "Top Of The World" + }, + { + "artist": "Al Wilson", + "position": 8, + "title": "Show And Tell" + }, + { + "artist": "Brownsville Station", + "position": 9, + "title": "Smokin' In The Boy's Room" + }, + { + "artist": "Barry White", + "position": 10, + "title": "Never, Never Gonna Give Ya Up" + }, + { + "artist": "Stevie Wonder", + "position": 11, + "title": "Living For The City" + }, + { + "artist": "The Staple Singers", + "position": 12, + "title": "If You're Ready (Come Go With Me)" + }, + { + "artist": "Chicago", + "position": 13, + "title": "Just You 'n' Me" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 14, + "title": "I've Got To Use My Imagination" + }, + { + "artist": "The Stylistics", + "position": 15, + "title": "Rockin' Roll Baby" + }, + { + "artist": "Paul McCartney & Wings", + "position": 16, + "title": "Helen Wheels" + }, + { + "artist": "Olivia Newton-John", + "position": 17, + "title": "Let Me Be There" + }, + { + "artist": "John Lennon", + "position": 18, + "title": "MIND GAMES" + }, + { + "artist": "Aretha Franklin", + "position": 19, + "title": "Until You Come Back To Me (That's What I'm Gonna Do)" + }, + { + "artist": "Led Zeppelin", + "position": 20, + "title": "D'yer Mak'er" + }, + { + "artist": "Love Unlimited Orchestra", + "position": 21, + "title": "Love's Theme" + }, + { + "artist": "Teddy Pendergrass", + "position": 22, + "title": "The Whole Town's Laughing At Me" + }, + { + "artist": "Barbra Streisand", + "position": 23, + "title": "The Way We Were" + }, + { + "artist": "War", + "position": 24, + "title": "Me And Baby Brother" + }, + { + "artist": "Donny Osmond", + "position": 25, + "title": "When I Fall In Love/Are You Lonesome Tonight" + }, + { + "artist": "Loggins & Messina", + "position": 26, + "title": "My Music" + }, + { + "artist": "Ringo Starr", + "position": 27, + "title": "You're Sixteen" + }, + { + "artist": "Ringo Starr", + "position": 28, + "title": "Photograph" + }, + { + "artist": "Billy Preston", + "position": 29, + "title": "Space Race" + }, + { + "artist": "Al Green", + "position": 30, + "title": "Livin' For You" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 31, + "title": "Midnight Train To Georgia" + }, + { + "artist": "Tony Orlando & Dawn", + "position": 32, + "title": "Who's In The Strawberry Patch With Sally" + }, + { + "artist": "Marvin Gaye", + "position": 33, + "title": "Come Get To This" + }, + { + "artist": "Jim Croce", + "position": 34, + "title": "I Got A Name" + }, + { + "artist": "Cheech & Chong", + "position": 35, + "title": "Sister Mary Elephant (Shudd-Up!)" + }, + { + "artist": "Grand Funk", + "position": 36, + "title": "Walk Like A Man" + }, + { + "artist": "Ian Thomas", + "position": 37, + "title": "Painted Ladies" + }, + { + "artist": "Jim Stafford", + "position": 38, + "title": "Spiders & Snakes" + }, + { + "artist": "The DeFranco Family featuring Tony DeFranco", + "position": 39, + "title": "Heartbeat - It's A Lovebeat" + }, + { + "artist": "Eddie Kendricks", + "position": 40, + "title": "Keep On Truckin' (Part 1)" + }, + { + "artist": "Three Dog Night", + "position": 41, + "title": "Let Me Serenade You" + }, + { + "artist": "Ann Peebles", + "position": 42, + "title": "I Can't Stand The Rain" + }, + { + "artist": "Paul Simon", + "position": 43, + "title": "American Tune" + }, + { + "artist": "Bobby Blue Bland", + "position": 44, + "title": "This Time I'm Gone For Good" + }, + { + "artist": "El Chicano", + "position": 45, + "title": "Tell Her She's Lovely" + }, + { + "artist": "Marie Osmond", + "position": 46, + "title": "Paper Roses" + }, + { + "artist": "The Chi-lites", + "position": 47, + "title": "I Found Sunshine" + }, + { + "artist": "The Persuaders", + "position": 48, + "title": "Some Guys Have All The Luck" + }, + { + "artist": "Kris Kristofferson & Rita Coolidge", + "position": 49, + "title": "A Song I'd Like To Sing" + }, + { + "artist": "Merle Haggard", + "position": 50, + "title": "If We Make It Through December" + }, + { + "artist": "Carole King", + "position": 51, + "title": "Coraz??�n" + }, + { + "artist": "David Essex", + "position": 52, + "title": "Rock On" + }, + { + "artist": "Earth, Wind & Fire", + "position": 53, + "title": "Keep Your Head To The Sky" + }, + { + "artist": "Kool & The Gang", + "position": 54, + "title": "Jungle Boogie" + }, + { + "artist": "B.W. Stevenson", + "position": 55, + "title": "The River Of Love" + }, + { + "artist": "First Choice", + "position": 56, + "title": "Smarty Pants" + }, + { + "artist": "Tom T. Hall", + "position": 57, + "title": "I Love" + }, + { + "artist": "Linda Ronstadt", + "position": 58, + "title": "Love Has No Pride" + }, + { + "artist": "Smokey Robinson", + "position": 59, + "title": "Baby Come Close" + }, + { + "artist": "The Intruders", + "position": 60, + "title": "I Wanna Know Your Name" + }, + { + "artist": "The O'Jays", + "position": 61, + "title": "Put Your Hands Together" + }, + { + "artist": "Isaac Hayes", + "position": 62, + "title": "Joy Pt. I" + }, + { + "artist": "Frank Sinatra", + "position": 63, + "title": "Let Me Try Again (Laisse Moi Le Temps)" + }, + { + "artist": "Joe Simon", + "position": 64, + "title": "River" + }, + { + "artist": "The Temptations", + "position": 65, + "title": "Let Your Hair Down" + }, + { + "artist": "Black Oak Arkansas", + "position": 66, + "title": "Jim Dandy" + }, + { + "artist": "Electric Light Orchestra", + "position": 67, + "title": "Showdown" + }, + { + "artist": "Bachman-Turner Overdrive", + "position": 68, + "title": "Blue Collar" + }, + { + "artist": "Bob Dylan", + "position": 69, + "title": "A Fool Such As I" + }, + { + "artist": "Anne Murray", + "position": 70, + "title": "Love Song" + }, + { + "artist": "Edgar Winter Group", + "position": 71, + "title": "Hangin' Around" + }, + { + "artist": "Gregg Allman", + "position": 72, + "title": "Midnight Rider" + }, + { + "artist": "The Band", + "position": 73, + "title": "Ain't Got No Home" + }, + { + "artist": "Wednesday", + "position": 74, + "title": "Last Kiss" + }, + { + "artist": "B.B. King", + "position": 75, + "title": "I Like To Live The Love" + }, + { + "artist": "The Who", + "position": 76, + "title": "Love, Reign O'er Me" + }, + { + "artist": "Jim Croce", + "position": 77, + "title": "It Doesn't Have To Be That Way" + }, + { + "artist": "James Brown", + "position": 78, + "title": "Stoned To The Bone - Part 1" + }, + { + "artist": "Steely Dan", + "position": 79, + "title": "My Old School" + }, + { + "artist": "John Denver", + "position": 80, + "title": "Please, Daddy" + }, + { + "artist": "Keith Hampshire", + "position": 81, + "title": "Big Time Operator" + }, + { + "artist": "Melanie", + "position": 82, + "title": "Will You Love Me Tomorrow?" + }, + { + "artist": "Love Unlimited", + "position": 83, + "title": "It May Be Winter Outside, (But In My Heart It's Spring)" + }, + { + "artist": "Alice Cooper", + "position": 84, + "title": "Teenage Lament '74" + }, + { + "artist": "Roy Clark", + "position": 85, + "title": "Somewhere Between Love And Tomorrow" + }, + { + "artist": "Don Goodwin", + "position": 86, + "title": "This Is Your Song" + }, + { + "artist": "Garfunkel", + "position": 87, + "title": "I Shall Sing" + }, + { + "artist": "The Pointer Sisters", + "position": 88, + "title": "Wang Dang Doodle" + }, + { + "artist": "Joni Mitchell", + "position": 89, + "title": "Raised On Robbery" + }, + { + "artist": "Coven", + "position": 90, + "title": "One Tin Soldier, The Legend of Billy Jack" + }, + { + "artist": "The 5th Dimension", + "position": 91, + "title": "Flashback" + }, + { + "artist": "Lamont Dozier", + "position": 92, + "title": "Trying To Hold On To My Woman" + }, + { + "artist": "Gary & Dave", + "position": 93, + "title": "Could You Ever Love Me Again" + }, + { + "artist": "Albert Hammond", + "position": 94, + "title": "Half A Million Miles From Home" + }, + { + "artist": "The De Franco Family", + "position": 95, + "title": "Abra-Ca-Dabra" + }, + { + "artist": "The Dramatics", + "position": 96, + "title": "Fell For You" + }, + { + "artist": "J. Frank Wilson and The Cavaliers", + "position": 97, + "title": "Last Kiss" + }, + { + "artist": "The Isley Brothers", + "position": 98, + "title": "What It Comes Down To" + }, + { + "artist": "Johnny Mathis", + "position": 99, + "title": "Life Is A Song Worth Singing" + }, + { + "artist": "Curtis Mayfield", + "position": 100, + "title": "Can't Say Nothin'" + } + ], + "title": "1973 - Hot 100" + }, + { + "songs": [ + { + "artist": "Billy Paul", + "position": 1, + "title": "Me And Mrs. Jones" + }, + { + "artist": "Gilbert O'Sullivan", + "position": 2, + "title": "Clair" + }, + { + "artist": "Al Green", + "position": 3, + "title": "You Ought To Be With Me" + }, + { + "artist": "Carly Simon", + "position": 4, + "title": "You're So Vain" + }, + { + "artist": "Albert Hammond", + "position": 5, + "title": "It Never Rains In Southern California" + }, + { + "artist": "Donna Fargo", + "position": 6, + "title": "Funny Face" + }, + { + "artist": "Helen Reddy", + "position": 7, + "title": "I Am Woman" + }, + { + "artist": "Johnny Rivers", + "position": 8, + "title": "Rockin' Pneumonia - Boogie Woogie Flu" + }, + { + "artist": "Curtis Mayfield", + "position": 9, + "title": "Superfly" + }, + { + "artist": "Kenny Loggins & Jim Messina", + "position": 10, + "title": "Your Mama Don't Dance" + }, + { + "artist": "Four Tops", + "position": 11, + "title": "Keeper Of The Castle" + }, + { + "artist": "Austin Roberts", + "position": 12, + "title": "Something's Wrong With Me" + }, + { + "artist": "Jethro Tull", + "position": 13, + "title": "Living In The Past" + }, + { + "artist": "The Temptations", + "position": 14, + "title": "Papa Was A Rollin' Stone" + }, + { + "artist": "Bread", + "position": 15, + "title": "Sweet Surrender" + }, + { + "artist": "Stevie Wonder", + "position": 16, + "title": "Superstition" + }, + { + "artist": "Neil Diamond", + "position": 17, + "title": "Walk On Water" + }, + { + "artist": "Cat Stevens", + "position": 18, + "title": "Sitting" + }, + { + "artist": "Harold Melvin And The Blue Notes", + "position": 19, + "title": "If You Don't Know Me By Now" + }, + { + "artist": "Elton John", + "position": 20, + "title": "Crocodile Rock" + }, + { + "artist": "James Taylor", + "position": 21, + "title": "Don't Let Me Be Lonely Tonight" + }, + { + "artist": "Johnny Nash", + "position": 22, + "title": "I Can See Clearly Now" + }, + { + "artist": "Three Dog Night", + "position": 23, + "title": "Pieces Of April" + }, + { + "artist": "Timmy Thomas", + "position": 24, + "title": "Why Can't We Live Together" + }, + { + "artist": "Jackson 5", + "position": 25, + "title": "Corner Of The Sky" + }, + { + "artist": "Carole King", + "position": 26, + "title": "Been To Canaan" + }, + { + "artist": "Wings", + "position": 27, + "title": "Hi, Hi, Hi" + }, + { + "artist": "Raspberries", + "position": 28, + "title": "I Wanna Be With You" + }, + { + "artist": "Seals & Crofts", + "position": 29, + "title": "Summer Breeze" + }, + { + "artist": "Hurricane Smith", + "position": 30, + "title": "Oh, Babe, What Would You Say?" + }, + { + "artist": "Blue Haze", + "position": 31, + "title": "Smoke Gets In Your Eyes" + }, + { + "artist": "The Hollies", + "position": 32, + "title": "Long Dark Road" + }, + { + "artist": "Marvin Gaye", + "position": 33, + "title": "Trouble Man" + }, + { + "artist": "Elvis Presley", + "position": 34, + "title": "Separate Ways" + }, + { + "artist": "War", + "position": 35, + "title": "The World Is A Ghetto" + }, + { + "artist": "America", + "position": 36, + "title": "Ventura Highway" + }, + { + "artist": "Steely Dan", + "position": 37, + "title": "Do It Again" + }, + { + "artist": "The Stylistics", + "position": 38, + "title": "I'm Stone In Love With You" + }, + { + "artist": "The Osmonds", + "position": 39, + "title": "Crazy Horses" + }, + { + "artist": "Joni Mitchell", + "position": 40, + "title": "You Turn Me On, I'm A Radio" + }, + { + "artist": "John Denver", + "position": 41, + "title": "Rocky Mountain High" + }, + { + "artist": "Bee Gees", + "position": 42, + "title": "Alive" + }, + { + "artist": "King Harvest", + "position": 43, + "title": "Dancing In The Moonlight" + }, + { + "artist": "Bulldog", + "position": 44, + "title": "No" + }, + { + "artist": "Bobby Womack & Peace", + "position": 45, + "title": "Harry Hippie" + }, + { + "artist": "Brighter Side Of Darkness", + "position": 46, + "title": "Love Jones" + }, + { + "artist": "The Who", + "position": 47, + "title": "The Relay" + }, + { + "artist": "Chicago", + "position": 48, + "title": "Dialogue (Part I & II)" + }, + { + "artist": "The Blue Ridge Rangers", + "position": 49, + "title": "Jambalaya (On The Bayou)" + }, + { + "artist": "Joe Simon", + "position": 50, + "title": "Trouble In My Home/I Found My Dad" + }, + { + "artist": "Clean Living", + "position": 51, + "title": "In Heaven There Is No Beer" + }, + { + "artist": "Bill Withers", + "position": 52, + "title": "Let Us Love" + }, + { + "artist": "Peter Skellern", + "position": 53, + "title": "You're A Lady" + }, + { + "artist": "Jermaine Jackson", + "position": 54, + "title": "Daddy's Home" + }, + { + "artist": "Chuck Berry", + "position": 55, + "title": "Reelin' & Rockin'" + }, + { + "artist": "Jim Croce", + "position": 56, + "title": "Operator (That's Not the Way it Feels)" + }, + { + "artist": "Dennis Yost And The Classics IV", + "position": 57, + "title": "What Am I Crying For?" + }, + { + "artist": "Joe Cocker and The Chris Stainton Band", + "position": 58, + "title": "Woman To Woman" + }, + { + "artist": "James Brown", + "position": 59, + "title": "I Got A Bag Of My Own" + }, + { + "artist": "Luther Ingram", + "position": 60, + "title": "I'll Be Your Shelter (In Time Of Storm)" + }, + { + "artist": "The Chi-lites", + "position": 61, + "title": "We Need Order" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 62, + "title": "I Can't Stand To See You Cry" + }, + { + "artist": "Mac Davis", + "position": 63, + "title": "Everybody Loves A Love Song" + }, + { + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "position": 64, + "title": "Looking Through The Eyes Of Love" + }, + { + "artist": "Rod Stewart", + "position": 65, + "title": "Angel" + }, + { + "artist": "Don McLean", + "position": 66, + "title": "Dreidel" + }, + { + "artist": "The Main Ingredient", + "position": 67, + "title": "You've Got To Take It (If You Want It)" + }, + { + "artist": "The O'Jays", + "position": 68, + "title": "992 Arguments" + }, + { + "artist": "Cornelius Brothers & Sister Rose", + "position": 69, + "title": "I'm Never Gonna Be Alone Anymore" + }, + { + "artist": "Nilsson", + "position": 70, + "title": "Remember (Christmas)" + }, + { + "artist": "Gary Glitter", + "position": 71, + "title": "I Didn't Know I Loved You (Till I Saw You Rock And Roll)" + }, + { + "artist": "Bette Midler", + "position": 72, + "title": "Do You Want To Dance?" + }, + { + "artist": "Eagles", + "position": 73, + "title": "Peaceful Easy Feeling" + }, + { + "artist": "Dawn Featuring Tony Orlando", + "position": 74, + "title": "You're A Lady" + }, + { + "artist": "Wayne Newton", + "position": 75, + "title": "Anthem" + }, + { + "artist": "Keith Hampshire", + "position": 76, + "title": "Daytime Night-Time" + }, + { + "artist": "Dr. Hook And The Medicine Show", + "position": 77, + "title": "The Cover Of Rolling Stone" + }, + { + "artist": "James Brown-Lyn Collins", + "position": 78, + "title": "What My Baby Needs Now Is A Little More Lovin'" + }, + { + "artist": "The Spinners", + "position": 79, + "title": "Could It Be I'm Falling In Love" + }, + { + "artist": "Edward Bear", + "position": 80, + "title": "Last Song" + }, + { + "artist": "Lobo", + "position": 81, + "title": "Don't Expect Me To Be Your Friend" + }, + { + "artist": "Cashman & West", + "position": 82, + "title": "Songman" + }, + { + "artist": "Slade", + "position": 83, + "title": "Mama Weer All Crazee Now" + }, + { + "artist": "Valerie Simpson", + "position": 84, + "title": "Silly Wasn't I" + }, + { + "artist": "Glen Campbell", + "position": 85, + "title": "One Last Time" + }, + { + "artist": "Emerson, Lake & Palmer", + "position": 86, + "title": "Lucky Man" + }, + { + "artist": "Merry Clayton", + "position": 87, + "title": "Oh No, Not My Baby" + }, + { + "artist": "Gallery", + "position": 88, + "title": "Big City Miss Ruth Ann" + }, + { + "artist": "Limmie & Family Cookin'", + "position": 89, + "title": "You Can Do Magic" + }, + { + "artist": "The Doobie Brothers", + "position": 90, + "title": "Jesus Is Just Alright" + }, + { + "artist": "Kris Kristofferson", + "position": 91, + "title": "Jesus Was A Capricorn" + }, + { + "artist": "Mary Hopkin", + "position": 92, + "title": "Knock Knock Who's There" + }, + { + "artist": "Joey Heatherton", + "position": 93, + "title": "I'm Sorry" + }, + { + "artist": "Paul Davis", + "position": 94, + "title": "Boogie Woogie Man" + }, + { + "artist": "Barbra Streisand", + "position": 95, + "title": "Didn't We" + }, + { + "artist": "Rita Coolidge", + "position": 96, + "title": "Fever/My Crew" + }, + { + "artist": "Ten Years After", + "position": 97, + "title": "Choo Choo Mama" + }, + { + "artist": "Bobby Vinton", + "position": 98, + "title": "But I Do" + }, + { + "artist": "Brownsville Station", + "position": 99, + "title": "The Red Back Spider" + }, + { + "artist": "Engelbert Humperdinck", + "position": 100, + "title": "I Never Said Goodbye" + } + ], + "title": "1972 - Hot 100" + }, + { + "songs": [ + { + "artist": "Melanie", + "position": 1, + "title": "Brand New Key" + }, + { + "artist": "Sly & The Family Stone", + "position": 2, + "title": "Family Affair" + }, + { + "artist": "Don McLean", + "position": 3, + "title": "American Pie (Parts I & II)" + }, + { + "artist": "Three Dog Night", + "position": 4, + "title": "An Old Fashioned Love Song" + }, + { + "artist": "Michael Jackson", + "position": 5, + "title": "Got To Be There" + }, + { + "artist": "The Chi-lites", + "position": 6, + "title": "Have You Seen Her" + }, + { + "artist": "Sonny & Cher", + "position": 7, + "title": "All I Ever Need Is You" + }, + { + "artist": "Dennis Coffey & The Detroit Guitar Band", + "position": 8, + "title": "Scorpio" + }, + { + "artist": "David Cassidy", + "position": 9, + "title": "Cherish" + }, + { + "artist": "Donny Osmond", + "position": 10, + "title": "Hey Girl/I Knew You When" + }, + { + "artist": "Bread", + "position": 11, + "title": "Baby I'm - A Want You" + }, + { + "artist": "The Staple Singers", + "position": 12, + "title": "Respect Yourself" + }, + { + "artist": "Jonathan Edwards", + "position": 13, + "title": "Sunshine" + }, + { + "artist": "The Stylistics", + "position": 14, + "title": "You Are Everything" + }, + { + "artist": "Donnie Elbert", + "position": 15, + "title": "Where Did Our Love Go" + }, + { + "artist": "Isaac Hayes", + "position": 16, + "title": "Theme From Shaft" + }, + { + "artist": "The New Seekers", + "position": 17, + "title": "I'd Like To Teach The World To Sing (In Perfect Harmony)" + }, + { + "artist": "The Temptations", + "position": 18, + "title": "Superstar (Remember How You Got Where You Are)" + }, + { + "artist": "Cher", + "position": 19, + "title": "Gypsys, Tramps & Thieves" + }, + { + "artist": "Al Green", + "position": 20, + "title": "Let's Stay Together" + }, + { + "artist": "The Hillside Singers", + "position": 21, + "title": "I'd Like To Teach The World To Sing (In Perfect Harmony)" + }, + { + "artist": "The Honey Cone", + "position": 22, + "title": "One Monkey Don't Stop No Show Part I" + }, + { + "artist": "Betty Wright", + "position": 23, + "title": "Clean Up Woman" + }, + { + "artist": "Rod Stewart With Faces", + "position": 24, + "title": "(I Know) I'm Losing You" + }, + { + "artist": "Neil Diamond", + "position": 25, + "title": "Stones/Crunchy Granola Suite" + }, + { + "artist": "Badfinger", + "position": 26, + "title": "Day After Day" + }, + { + "artist": "Aretha Franklin", + "position": 27, + "title": "Rock Steady" + }, + { + "artist": "Joe Simon", + "position": 28, + "title": "Drowning In The Sea Of Love" + }, + { + "artist": "Peter Nero", + "position": 29, + "title": "Theme From Summer Of '42" + }, + { + "artist": "Mickey Newbury", + "position": 30, + "title": "An American Trilogy" + }, + { + "artist": "Jackson 5", + "position": 31, + "title": "Sugar Daddy" + }, + { + "artist": "Rare Earth", + "position": 32, + "title": "Hey Big Brother" + }, + { + "artist": "Sweathog", + "position": 33, + "title": "Hallelujah" + }, + { + "artist": "The Who", + "position": 34, + "title": "Behind Blue Eyes" + }, + { + "artist": "Les Crane", + "position": 35, + "title": "Desiderata" + }, + { + "artist": "Lou Rawls", + "position": 36, + "title": "A Natural Man" + }, + { + "artist": "Charley Pride", + "position": 37, + "title": "Kiss An Angel Good Mornin'" + }, + { + "artist": "Bob Dylan", + "position": 38, + "title": "George Jackson" + }, + { + "artist": "Lee Michaels", + "position": 39, + "title": "Can I Get A Witness" + }, + { + "artist": "Bullet", + "position": 40, + "title": "White Lies, Blue Eyes" + }, + { + "artist": "Tommy James", + "position": 41, + "title": "Nothing To Hide" + }, + { + "artist": "James Brown", + "position": 42, + "title": "I'm A Greedy Man - Part I" + }, + { + "artist": "Carly Simon", + "position": 43, + "title": "Anticipation" + }, + { + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "position": 44, + "title": "It's One Of Those Nights (Yes Love)" + }, + { + "artist": "Think", + "position": 45, + "title": "Once You Understand" + }, + { + "artist": "Jerry Lee Lewis", + "position": 46, + "title": "Me And Bobby McGee" + }, + { + "artist": "John Denver", + "position": 47, + "title": "Friends With You" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 48, + "title": "Make Me The Woman That You Go Home To" + }, + { + "artist": "Joan Baez", + "position": 49, + "title": "Let It Be" + }, + { + "artist": "Yes", + "position": 50, + "title": "Your Move (I've Seen All Good People)" + }, + { + "artist": "Redbone", + "position": 51, + "title": "The Witch Queen Of New Orleans" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 52, + "title": "Satisfaction" + }, + { + "artist": "The Guess Who", + "position": 53, + "title": "Sour Suite" + }, + { + "artist": "Richard Harris", + "position": 54, + "title": "My Boy" + }, + { + "artist": "B.B. King", + "position": 55, + "title": "Ain't Nobody Home" + }, + { + "artist": "The J. Geils Band", + "position": 56, + "title": "Looking For A Love" + }, + { + "artist": "Elton John", + "position": 57, + "title": "Levon" + }, + { + "artist": "Carroll O'Connor And Jean Stapleton (As The Bunkers)", + "position": 58, + "title": "Those Were The Days" + }, + { + "artist": "Merle Haggard And The Strangers", + "position": 59, + "title": "Carolyn" + }, + { + "artist": "Bobby Womack & Peace", + "position": 60, + "title": "That's The Way I Feel About Cha" + }, + { + "artist": "Jefferson Airplane", + "position": 61, + "title": "Pretty As You Feel" + }, + { + "artist": "Stampeders", + "position": 62, + "title": "Devil You" + }, + { + "artist": "Ray Stevens", + "position": 63, + "title": "Turn Your Radio On" + }, + { + "artist": "Grateful Dead", + "position": 64, + "title": "Truckin'" + }, + { + "artist": "Little Johnny Taylor", + "position": 65, + "title": "Everybody Knows About My Good Thing Pt. 1" + }, + { + "artist": "Hamilton, Joe Frank & Reynolds", + "position": 66, + "title": "Daisy Mae" + }, + { + "artist": "Led Zeppelin", + "position": 67, + "title": "Black Dog" + }, + { + "artist": "Helen Reddy", + "position": 68, + "title": "No Sad Song" + }, + { + "artist": "Lighthouse", + "position": 69, + "title": "Take It Slow (Out In The Country)" + }, + { + "artist": "Curtis Mayfield", + "position": 70, + "title": "Get Down" + }, + { + "artist": "The Doors", + "position": 71, + "title": "Tightrope Ride" + }, + { + "artist": "Merry Clayton", + "position": 72, + "title": "After All This Time" + }, + { + "artist": "The Isley Brothers", + "position": 73, + "title": "Lay Lady Lay" + }, + { + "artist": "Carpenters", + "position": 74, + "title": "Superstar/Bless The Beasts And Children" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 75, + "title": "Way Back Home" + }, + { + "artist": "Nilsson", + "position": 76, + "title": "Without You" + }, + { + "artist": "Beverly Bremers", + "position": 77, + "title": "Don't Say You Don't Remember" + }, + { + "artist": "The Coasters", + "position": 78, + "title": "Love Potion Number Nine" + }, + { + "artist": "Wilson Pickett", + "position": 79, + "title": "Fire And Water" + }, + { + "artist": "Free Movement", + "position": 80, + "title": "The Harder I Try (The Bluer I Get)" + }, + { + "artist": "Three Dog Night", + "position": 81, + "title": "Never Been To Spain" + }, + { + "artist": "The Emotions", + "position": 82, + "title": "Show Me How" + }, + { + "artist": "Chase", + "position": 83, + "title": "So Many People" + }, + { + "artist": "The Poppy Family", + "position": 84, + "title": "No Good To Cry" + }, + { + "artist": "The Undisputed Truth", + "position": 85, + "title": "You Make Your Own Heaven And Hell Right Here On Earth" + }, + { + "artist": "The Dramatics", + "position": 86, + "title": "Get Up And Get Down" + }, + { + "artist": "Ray Charles", + "position": 87, + "title": "What Am I Living For" + }, + { + "artist": "Alice Cooper", + "position": 88, + "title": "Under My Wheels" + }, + { + "artist": "N.F. Porter", + "position": 89, + "title": "Keep On Keeping On" + }, + { + "artist": "Heaven Bound with Tony Scotti", + "position": 90, + "title": "Five Hundred Miles" + }, + { + "artist": "Johnny Paycheck", + "position": 91, + "title": "She's All I Got" + }, + { + "artist": "The Bar-Kays", + "position": 92, + "title": "Son Of Shaft" + }, + { + "artist": "Jerry Butler & Brenda Lee Eager", + "position": 93, + "title": "Ain't Understanding Mellow" + }, + { + "artist": "The New Colony Six", + "position": 94, + "title": "Long Time To Be Alone" + }, + { + "artist": "Judy Collins", + "position": 95, + "title": "Open The Door (Song For Judith)" + }, + { + "artist": "The Persuaders", + "position": 96, + "title": "Love Gonna Pack Up (And Walk Out)" + }, + { + "artist": "Rufus Thomas", + "position": 97, + "title": "Do The Funky Penguin Part I" + }, + { + "artist": "Edgar Winter's White Trash", + "position": 98, + "title": "Keep Playin' That Rock 'N' Roll" + }, + { + "artist": "Ohio Players", + "position": 99, + "title": "Pain (Part I)" + }, + { + "artist": "The Assembled Multitude", + "position": 100, + "title": "Medley From Superstar (A Rock Opera)" + } + ], + "title": "1971 - Hot 100" + }, + { + "songs": [ + { + "artist": "George Harrison", + "position": 1, + "title": "My Sweet Lord/Isn't It A Pity" + }, + { + "artist": "The 5th Dimension", + "position": 2, + "title": "One Less Bell To Answer" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 3, + "title": "The Tears Of A Clown" + }, + { + "artist": "Dawn", + "position": 4, + "title": "Knock Three Times" + }, + { + "artist": "Santana", + "position": 5, + "title": "Black Magic Woman" + }, + { + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "position": 6, + "title": "I Think I Love You" + }, + { + "artist": "The Supremes", + "position": 7, + "title": "Stoned Love" + }, + { + "artist": "Chicago", + "position": 8, + "title": "Does Anybody Really Know What Time It Is?" + }, + { + "artist": "Brian Hyland", + "position": 9, + "title": "Gypsy Woman" + }, + { + "artist": "Badfinger", + "position": 10, + "title": "No Matter What" + }, + { + "artist": "The Presidents", + "position": 11, + "title": "5-10-15-20 (25-30 Years Of Love)" + }, + { + "artist": "Van Morrison", + "position": 12, + "title": "Domino" + }, + { + "artist": "Barbra Streisand", + "position": 13, + "title": "Stoney End" + }, + { + "artist": "Ray Price", + "position": 14, + "title": "For The Good Times" + }, + { + "artist": "Carpenters", + "position": 15, + "title": "We've Only Just Begun" + }, + { + "artist": "Jackson 5", + "position": 16, + "title": "I'll Be There" + }, + { + "artist": "The Supremes & Four Tops", + "position": 17, + "title": "River Deep - Mountain High" + }, + { + "artist": "King Floyd", + "position": 18, + "title": "Groove Me" + }, + { + "artist": "Perry Como", + "position": 19, + "title": "It's Impossible" + }, + { + "artist": "Neil Diamond", + "position": 20, + "title": "He Ain't Heavy...He's My Brother" + }, + { + "artist": "Andy Kim", + "position": 21, + "title": "Be My Baby" + }, + { + "artist": "Three Dog Night", + "position": 22, + "title": "One Man Band" + }, + { + "artist": "Chairmen Of The Board", + "position": 23, + "title": "Pay To The Piper" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 24, + "title": "If I Were Your Woman" + }, + { + "artist": "Tom Jones", + "position": 25, + "title": "Can't Stop Loving You" + }, + { + "artist": "Bee Gees", + "position": 26, + "title": "Lonely Days" + }, + { + "artist": "Bobby Bloom", + "position": 27, + "title": "Montego Bay" + }, + { + "artist": "Led Zeppelin", + "position": 28, + "title": "Immigrant Song" + }, + { + "artist": "Elton John", + "position": 29, + "title": "Your Song" + }, + { + "artist": "The Guess Who", + "position": 30, + "title": "Share The Land" + }, + { + "artist": "Stephen Stills", + "position": 31, + "title": "Love The One You're With" + }, + { + "artist": "Elvis Presley", + "position": 32, + "title": "You Don't Have To Say You Love Me/Patch It Up" + }, + { + "artist": "Lynn Anderson", + "position": 33, + "title": "Rose Garden" + }, + { + "artist": "The Flaming Ember", + "position": 34, + "title": "I'm Not My Brothers Keeper" + }, + { + "artist": "James Taylor", + "position": 35, + "title": "Fire And Rain" + }, + { + "artist": "Neil Diamond", + "position": 36, + "title": "Do It" + }, + { + "artist": "Aretha Franklin", + "position": 37, + "title": "Border Song (Holy Moses)/You And Me" + }, + { + "artist": "Eric Clapton", + "position": 38, + "title": "After Midnight" + }, + { + "artist": "Redeye", + "position": 39, + "title": "Games" + }, + { + "artist": "Runt", + "position": 40, + "title": "We Gotta Get You A Woman" + }, + { + "artist": "Stevie Wonder", + "position": 41, + "title": "Heaven Help Us All" + }, + { + "artist": "Ray Charles", + "position": 42, + "title": "If You Were Mine" + }, + { + "artist": "Neil Young", + "position": 43, + "title": "Only Love Can Break Your Heart" + }, + { + "artist": "Nitty Gritty Dirt Band", + "position": 44, + "title": "Mr. Bojangles" + }, + { + "artist": "Michael Nesmith & The First National Band", + "position": 45, + "title": "Silver Moon" + }, + { + "artist": "Dionne Warwick", + "position": 46, + "title": "The Green Grass Starts To Grow" + }, + { + "artist": "Jim Ed Brown", + "position": 47, + "title": "Morning" + }, + { + "artist": "Curtis Mayfield", + "position": 48, + "title": "(Don't Worry) If There's A Hell Below We're All Going To Go" + }, + { + "artist": "B.J. Thomas", + "position": 49, + "title": "Most Of All" + }, + { + "artist": "Edwin Starr", + "position": 50, + "title": "Stop The War Now" + }, + { + "artist": "Free", + "position": 51, + "title": "Stealer" + }, + { + "artist": "Jerry Reed", + "position": 52, + "title": "Amos Moses" + }, + { + "artist": "Rare Earth", + "position": 53, + "title": "Born To Wander" + }, + { + "artist": "O.V. Wright", + "position": 54, + "title": "Ace Of Spade" + }, + { + "artist": "Clarence Carter", + "position": 55, + "title": "It's All In Your Mind" + }, + { + "artist": "Elvis Presley", + "position": 56, + "title": "I Really Don't Want To Know/There Goes My Everything" + }, + { + "artist": "Melanie", + "position": 57, + "title": "Ruby Tuesday" + }, + { + "artist": "Judy Collins", + "position": 58, + "title": "Amazing Grace" + }, + { + "artist": "The Moments", + "position": 59, + "title": "All I Have" + }, + { + "artist": "Johnny Cash", + "position": 60, + "title": "Flesh And Blood" + }, + { + "artist": "Black Sabbath", + "position": 61, + "title": "Paranoid" + }, + { + "artist": "Little Sister", + "position": 62, + "title": "Somebody's Watching You" + }, + { + "artist": "Jackie Moore", + "position": 63, + "title": "Precious, Precious" + }, + { + "artist": "Al Green", + "position": 64, + "title": "I Can't Get Next To You" + }, + { + "artist": "Israel Popper Stopper Tolbert", + "position": 65, + "title": "Big Leg Woman (With A Short Short Mini Skirt)" + }, + { + "artist": "Deep Purple", + "position": 66, + "title": "Black Night" + }, + { + "artist": "James Taylor", + "position": 67, + "title": "Carolina In My Mind" + }, + { + "artist": "The Grass Roots", + "position": 68, + "title": "Temptation Eyes" + }, + { + "artist": "Eric Burdon And War", + "position": 69, + "title": "They Can't Take Away Our Music" + }, + { + "artist": "Tommy James", + "position": 70, + "title": "Church Street Soul Revival" + }, + { + "artist": "Gypsy", + "position": 71, + "title": "Gypsy Queen - Part 1" + }, + { + "artist": "Grand Funk Railroad", + "position": 72, + "title": "Mean Mistreater" + }, + { + "artist": "Frijid Pink", + "position": 73, + "title": "Heartbreak Hotel" + }, + { + "artist": "Diana Ross", + "position": 74, + "title": "Remember Me" + }, + { + "artist": "Robert John", + "position": 75, + "title": "When The Party Is Over" + }, + { + "artist": "Gordon Lightfoot", + "position": 76, + "title": "If You Could Read My Mind" + }, + { + "artist": "Ray Stevens", + "position": 77, + "title": "Bridget The Midget (The Queen Of The Blues)" + }, + { + "artist": "Liz Damon's Orient Express", + "position": 78, + "title": "1900 Yesterday" + }, + { + "artist": "Bobby Goldsboro", + "position": 79, + "title": "Watching Scotty Grow" + }, + { + "artist": "Redbone", + "position": 80, + "title": "Maggie" + }, + { + "artist": "Joe Simon", + "position": 81, + "title": "Your Time To Cry" + }, + { + "artist": "The Chi-lites", + "position": 82, + "title": "Are You My Woman? (Tell Me So)" + }, + { + "artist": "Loretta Lynn", + "position": 83, + "title": "Coal Miner's Daughter" + }, + { + "artist": "Teegarden & Van Winkle", + "position": 84, + "title": "Everything Is Going To Be Alright" + }, + { + "artist": "Anne Murray", + "position": 85, + "title": "Sing High - Sing Low" + }, + { + "artist": "The Originals", + "position": 86, + "title": "God Bless Whoever Sent You" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 87, + "title": "Holly Holy" + }, + { + "artist": "Rufus Thomas", + "position": 88, + "title": "(Do The) Push And Pull Part I" + }, + { + "artist": "Five Flights Up", + "position": 89, + "title": "After The Feeling Is Gone" + }, + { + "artist": "Dave Edmunds", + "position": 90, + "title": "I Hear You Knocking" + }, + { + "artist": "Buddy Miles", + "position": 91, + "title": "We Got To Live Together - Part I" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 92, + "title": "Help Me Find A Way (To Say I Love You)" + }, + { + "artist": "The Mike Curb Congregation", + "position": 93, + "title": "Burning Bridges" + }, + { + "artist": "The Sandpipers", + "position": 94, + "title": "Free To Carry On" + }, + { + "artist": "The Main Ingredient", + "position": 95, + "title": "I'm So Proud" + }, + { + "artist": "Brook Benton With The Dixie Flyers", + "position": 96, + "title": "Shoes" + }, + { + "artist": "Jackie Wilson", + "position": 97, + "title": "(I Can Feel Those Vibrations) This Love Is Real" + }, + { + "artist": "Wadsworth Mansion", + "position": 98, + "title": "Sweet Mary" + }, + { + "artist": "The Jazz Crusaders", + "position": 99, + "title": "Way Back Home" + }, + { + "artist": "Betty Everett", + "position": 100, + "title": "I Got To Tell Somebody" + } + ], + "title": "1970 - Hot 100" + }, + { + "songs": [ + { + "artist": "Diana Ross & The Supremes", + "position": 1, + "title": "Someday We'll Be Together" + }, + { + "artist": "Peter, Paul & Mary", + "position": 2, + "title": "Leaving On A Jet Plane" + }, + { + "artist": "B.J. Thomas", + "position": 3, + "title": "Raindrops Keep Fallin' On My Head" + }, + { + "artist": "Creedence Clearwater Revival", + "position": 4, + "title": "Down On The Corner/Fortunate Son" + }, + { + "artist": "Steam", + "position": 5, + "title": "Na Na Hey Hey Kiss Him Goodbye" + }, + { + "artist": "Neil Diamond", + "position": 6, + "title": "Holly Holy" + }, + { + "artist": "The Beatles", + "position": 7, + "title": "Come Together/Something" + }, + { + "artist": "Jackson 5", + "position": 8, + "title": "I Want You Back" + }, + { + "artist": "Led Zeppelin", + "position": 9, + "title": "Whole Lotta Love" + }, + { + "artist": "R.B. Greaves", + "position": 10, + "title": "Take A Letter Maria" + }, + { + "artist": "Ferrante & Teicher", + "position": 11, + "title": "Midnight Cowboy" + }, + { + "artist": "Three Dog Night", + "position": 12, + "title": "Eli's Coming" + }, + { + "artist": "Stevie Wonder", + "position": 13, + "title": "Yester-Me, Yester-You, Yesterday" + }, + { + "artist": "Bobby Sherman", + "position": 14, + "title": "La La La (If I Had You)" + }, + { + "artist": "Blood, Sweat & Tears", + "position": 15, + "title": "And When I Die" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 16, + "title": "These Eyes" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 17, + "title": "Friendship Train" + }, + { + "artist": "Mel And Tim", + "position": 18, + "title": "Backfield In Motion" + }, + { + "artist": "The Shocking Blue", + "position": 19, + "title": "Venus" + }, + { + "artist": "Tommy Roe", + "position": 20, + "title": "Jam Up Jelly Tight" + }, + { + "artist": "Billy Joe Royal", + "position": 21, + "title": "Cherry Hill Park" + }, + { + "artist": "The Archies", + "position": 22, + "title": "Jingle Jangle" + }, + { + "artist": "Elvis Presley", + "position": 23, + "title": "Don't Cry Daddy/Rubberneckin'" + }, + { + "artist": "The Flying Machine", + "position": 24, + "title": "Smile A Little Smile For Me" + }, + { + "artist": "The Originals", + "position": 25, + "title": "Baby, I'm For Real" + }, + { + "artist": "The Band", + "position": 26, + "title": "Up On Cripple Creek" + }, + { + "artist": "Dusty Springfield", + "position": 27, + "title": "A Brand New Me" + }, + { + "artist": "CROW", + "position": 28, + "title": "Evil Woman Don't Play Your Games With Me" + }, + { + "artist": "The 5th Dimension", + "position": 29, + "title": "Wedding Bell Blues" + }, + { + "artist": "Vanity Fare", + "position": 30, + "title": "Early In The Morning" + }, + { + "artist": "The Grass Roots", + "position": 31, + "title": "Heaven Knows" + }, + { + "artist": "Aretha Franklin", + "position": 32, + "title": "Eleanor Rigby" + }, + { + "artist": "Plastic Ono Band", + "position": 33, + "title": "Cold Turkey" + }, + { + "artist": "Tommy James And The Shondells", + "position": 34, + "title": "She" + }, + { + "artist": "Oliver", + "position": 35, + "title": "Sunday Mornin'" + }, + { + "artist": "James Brown", + "position": 36, + "title": "Ain't It Funky Now (Part 1)" + }, + { + "artist": "The Friends Of Distinction", + "position": 37, + "title": "Going In Circles" + }, + { + "artist": "Harlow Wilcox and the Oakies", + "position": 38, + "title": "Groovy Grubworm" + }, + { + "artist": "Jimmy Cliff", + "position": 39, + "title": "Wonderful World, Beautiful People" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 40, + "title": "Point It Out" + }, + { + "artist": "Engelbert Humperdinck", + "position": 41, + "title": "Winter World Of Love" + }, + { + "artist": "Merle Haggard And The Strangers", + "position": 42, + "title": "Okie From Muskogee" + }, + { + "artist": "Johnny Nash", + "position": 43, + "title": "Cupid" + }, + { + "artist": "Jerry Butler", + "position": 44, + "title": "Don't Let Love Hang You Up" + }, + { + "artist": "Four Tops", + "position": 45, + "title": "Don't Let Him Take Your Love From Me" + }, + { + "artist": "The Flaming Ember", + "position": 46, + "title": "Mind, Body and Soul" + }, + { + "artist": "Mark Lindsay", + "position": 47, + "title": "Arizona" + }, + { + "artist": "Janis Joplin", + "position": 48, + "title": "Kozmic Blues" + }, + { + "artist": "Marvin Gaye & Tammi Terrell", + "position": 49, + "title": "What You Gave Me" + }, + { + "artist": "Tom Jones", + "position": 50, + "title": "Without Love (There Is Nothing)" + }, + { + "artist": "Dionne Warwick", + "position": 51, + "title": "I'll Never Fall In Love Again" + }, + { + "artist": "Nancy Wilson", + "position": 52, + "title": "Can't Take My Eyes Off You" + }, + { + "artist": "Bobbie Gentry", + "position": 53, + "title": "Fancy" + }, + { + "artist": "Jay & The Americans", + "position": 54, + "title": "Walkin' In The Rain" + }, + { + "artist": "Wilbert Harrison", + "position": 55, + "title": "Let's Work Together (Part 1)" + }, + { + "artist": "Rick Nelson", + "position": 56, + "title": "She Belongs To Me" + }, + { + "artist": "The Clique", + "position": 57, + "title": "I'll Hold Out My Hand" + }, + { + "artist": "Joe Cocker", + "position": 58, + "title": "She Came In Through The Bathroom Window" + }, + { + "artist": "Gloria Taylor", + "position": 59, + "title": "You Got To Pay The Price" + }, + { + "artist": "Johnny Cash", + "position": 60, + "title": "Blistered/See Ruby Fall" + }, + { + "artist": "Dennis Yost And The Classics IV", + "position": 61, + "title": "Midnight" + }, + { + "artist": "The Original Caste", + "position": 62, + "title": "One Tin Soldier" + }, + { + "artist": "The Cuff Links", + "position": 63, + "title": "When Julie Comes Around" + }, + { + "artist": "Jefferson", + "position": 64, + "title": "Baby Take Me In Your Arms" + }, + { + "artist": "Jefferson Airplane", + "position": 65, + "title": "Volunteers" + }, + { + "artist": "James Brown", + "position": 66, + "title": "Let A Man Come In And Do The Popcorn (Part Two)" + }, + { + "artist": "David Ruffin", + "position": 67, + "title": "I'm So Glad I Fell For You" + }, + { + "artist": "The Tokens", + "position": 68, + "title": "She Lets Her Hair Down (Early In The Morning)" + }, + { + "artist": "Judy Collins", + "position": 69, + "title": "Turn! Turn! Turn!/To Everything There Is A Season" + }, + { + "artist": "The Guess Who", + "position": 70, + "title": "No Time" + }, + { + "artist": "Steppenwolf", + "position": 71, + "title": "Monster" + }, + { + "artist": "Eydie Gorme", + "position": 72, + "title": "Tonight I'll Say A Prayer" + }, + { + "artist": "Eddie Holman", + "position": 73, + "title": "Hey There Lonely Girl" + }, + { + "artist": "Savoy Brown", + "position": 74, + "title": "I'm Tired" + }, + { + "artist": "The Lettermen", + "position": 75, + "title": "Traces/Memories Medley" + }, + { + "artist": "Otis Leavill", + "position": 76, + "title": "I Love You" + }, + { + "artist": "Johnnie Taylor", + "position": 77, + "title": "Love Bones" + }, + { + "artist": "The Turtles", + "position": 78, + "title": "Lady-O" + }, + { + "artist": "Syl Johnson", + "position": 79, + "title": "Is It Because I'm Black" + }, + { + "artist": "The Meters", + "position": 80, + "title": "Look-Ka Py Py" + }, + { + "artist": "Lou Christie", + "position": 81, + "title": "Are You Getting Any Sunshine?" + }, + { + "artist": "The Illusion", + "position": 82, + "title": "Together" + }, + { + "artist": "Tommy Cash", + "position": 83, + "title": "Six White Horses" + }, + { + "artist": "The Sandpipers", + "position": 84, + "title": "Come Saturday Morning" + }, + { + "artist": "Nina Simone", + "position": 85, + "title": "To Be Young, Gifted And Black" + }, + { + "artist": "Ike & Tina Turner", + "position": 86, + "title": "Bold Soul Sister" + }, + { + "artist": "The Newbeats", + "position": 87, + "title": "Groovin' (Out On Life)" + }, + { + "artist": "Lulu", + "position": 88, + "title": "Oh Me Oh My (I'm A Fool For You Baby)" + }, + { + "artist": "The Intrigues", + "position": 89, + "title": "I'm Gonna Love You" + }, + { + "artist": "Simon Stokes/Nighthawks", + "position": 90, + "title": "Voodoo Woman" + }, + { + "artist": "Al Martino", + "position": 91, + "title": "I Started Loving You Again" + }, + { + "artist": "Archie Bell & The Drells", + "position": 92, + "title": "A World Without Music" + }, + { + "artist": "The Hollies", + "position": 93, + "title": "He Ain't Heavy, He's My Brother" + }, + { + "artist": "100 Proof Aged in Soul", + "position": 94, + "title": "Too Many Cooks (Spoil The Soup)" + }, + { + "artist": "Brother Jack McDuff", + "position": 95, + "title": "Theme From Electric Surfboard" + }, + { + "artist": "Betty Everett", + "position": 96, + "title": "It's Been A Long Time" + }, + { + "artist": "Grand Funk Railroad", + "position": 97, + "title": "Mr. Limousine Driver" + }, + { + "artist": "Kool & The Gang", + "position": 98, + "title": "The Gangs Back Again" + }, + { + "artist": "Ruby Winters", + "position": 99, + "title": "Guess Who" + }, + { + "artist": "B.B. King", + "position": 100, + "title": "The Thrill Is Gone" + } + ], + "title": "1969 - Hot 100" + }, + { + "songs": [ + { + "artist": "Marvin Gaye", + "position": 1, + "title": "I Heard It Through The Grapevine" + }, + { + "artist": "Stevie Wonder", + "position": 2, + "title": "For Once In My Life" + }, + { + "artist": "Diana Ross & The Supremes", + "position": 3, + "title": "Love Child" + }, + { + "artist": "Glen Campbell", + "position": 4, + "title": "Wichita Lineman" + }, + { + "artist": "Classics IV Featuring Dennis Yost", + "position": 5, + "title": "Stormy" + }, + { + "artist": "Dion", + "position": 6, + "title": "Abraham, Martin And John" + }, + { + "artist": "Diana Ross And The Supremes & The Temptations", + "position": 7, + "title": "I'm Gonna Make You Love Me" + }, + { + "artist": "Johnnie Taylor", + "position": 8, + "title": "Who's Making Love" + }, + { + "artist": "Bobby Vinton", + "position": 9, + "title": "I Love How You Love Me" + }, + { + "artist": "The Temptations", + "position": 10, + "title": "Cloud Nine" + }, + { + "artist": "Judy Collins", + "position": 11, + "title": "Both Sides Now" + }, + { + "artist": "Derek", + "position": 12, + "title": "Cinnamon" + }, + { + "artist": "B.J. Thomas", + "position": 13, + "title": "Hooked On A Feeling" + }, + { + "artist": "Aretha Franklin", + "position": 14, + "title": "See Saw" + }, + { + "artist": "The Beatles", + "position": 15, + "title": "Hey Jude" + }, + { + "artist": "Young-Holt Unlimited", + "position": 16, + "title": "Soulful Strut" + }, + { + "artist": "Eddie Floyd", + "position": 17, + "title": "Bring It On Home To Me" + }, + { + "artist": "Steppenwolf", + "position": 18, + "title": "Magic Carpet Ride" + }, + { + "artist": "Ohio Express", + "position": 19, + "title": "Chewy Chewy" + }, + { + "artist": "Canned Heat", + "position": 20, + "title": "Going Up The Country" + }, + { + "artist": "Dusty Springfield", + "position": 21, + "title": "Son-Of-A Preacher Man" + }, + { + "artist": "Leapy Lee", + "position": 22, + "title": "Little Arrows" + }, + { + "artist": "Clarence Carter", + "position": 23, + "title": "Too Weak To Fight" + }, + { + "artist": "Otis Redding", + "position": 24, + "title": "Papa's Got A Brand New Bag" + }, + { + "artist": "Mary Hopkin", + "position": 25, + "title": "Those Were The Days" + }, + { + "artist": "Rene & Rene", + "position": 26, + "title": "Lo Mucho Que Te Quiero (The More I Love You)" + }, + { + "artist": "Sergio Mendes & Brasil '66", + "position": 27, + "title": "Scarborough Fair" + }, + { + "artist": "Tommy James And The Shondells", + "position": 28, + "title": "Crimson And Clover" + }, + { + "artist": "Magic Lanterns", + "position": 29, + "title": "Shame, Shame" + }, + { + "artist": "Elvis Presley", + "position": 30, + "title": "If I Can Dream" + }, + { + "artist": "The Vogues", + "position": 31, + "title": "Till" + }, + { + "artist": "The Rascals", + "position": 32, + "title": "A Ray Of Hope" + }, + { + "artist": "Andy Williams with the St. Charles Borromeo Choir", + "position": 33, + "title": "Battle Hymn Of The Republic" + }, + { + "artist": "Tammy Wynette", + "position": 34, + "title": "Stand By Your Man" + }, + { + "artist": "Dionne Warwick", + "position": 35, + "title": "Promises, Promises" + }, + { + "artist": "Aretha Franklin", + "position": 36, + "title": "My Song" + }, + { + "artist": "The Chambers Brothers", + "position": 37, + "title": "I Can't Turn You Loose" + }, + { + "artist": "The Impressions", + "position": 38, + "title": "This Is My Country" + }, + { + "artist": "The Tymes", + "position": 39, + "title": "People" + }, + { + "artist": "Booker T. & The MG's", + "position": 40, + "title": "Hang 'Em High" + }, + { + "artist": "Bee Gees", + "position": 41, + "title": "I Started A Joke" + }, + { + "artist": "Sly & The Family Stone", + "position": 42, + "title": "Everyday People" + }, + { + "artist": "Wilson Pickett", + "position": 43, + "title": "Hey Jude" + }, + { + "artist": "The Lettermen", + "position": 44, + "title": "Put Your Head On My Shoulder" + }, + { + "artist": "Deep Purple", + "position": 45, + "title": "Kentucky Woman" + }, + { + "artist": "The Grass Roots", + "position": 46, + "title": "Bella Linda" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 47, + "title": "My Favorite Things" + }, + { + "artist": "The Royal Guardsmen", + "position": 48, + "title": "Baby Let's Wait" + }, + { + "artist": "Archie Bell & The Drells", + "position": 49, + "title": "There's Gonna Be A Showdown" + }, + { + "artist": "The Delfonics", + "position": 50, + "title": "Ready Or Not Here I Come (Can't Hide From Love)" + }, + { + "artist": "Bobby Taylor & The Vancouvers", + "position": 51, + "title": "Malinda" + }, + { + "artist": "Dean Martin", + "position": 52, + "title": "Not Enough Indians" + }, + { + "artist": "Brooklyn Bridge", + "position": 53, + "title": "Worst That Could Happen" + }, + { + "artist": "Autry Inman", + "position": 54, + "title": "Ballad Of Two Brothers" + }, + { + "artist": "Jeannie C. Riley", + "position": 55, + "title": "The Girl Most Likely" + }, + { + "artist": "The Jimi Hendrix Experience", + "position": 56, + "title": "Crosstown Traffic" + }, + { + "artist": "Jerry Butler", + "position": 57, + "title": "Are You Happy" + }, + { + "artist": "Creedence Clearwater Revival", + "position": 58, + "title": "I Put A Spell On You" + }, + { + "artist": "Petula Clark", + "position": 59, + "title": "American Boys" + }, + { + "artist": "Bobby Bland", + "position": 60, + "title": "Rockin' In The Same Old Boat" + }, + { + "artist": "The Beach Boys", + "position": 61, + "title": "Bluebirds Over The Mountain" + }, + { + "artist": "The 5th Dimension", + "position": 62, + "title": "California Soul" + }, + { + "artist": "O.C. Smith", + "position": 63, + "title": "Isn't It Lonely Together" + }, + { + "artist": "Johnny Cash", + "position": 64, + "title": "Daddy Sang Bass" + }, + { + "artist": "Vanilla Fudge", + "position": 65, + "title": "Season Of The Witch, Pt. 1" + }, + { + "artist": "Tyrone Davis", + "position": 66, + "title": "Can I Change My Mind" + }, + { + "artist": "Eric Burdon & The Animals", + "position": 67, + "title": "White Houses" + }, + { + "artist": "Barbara Acklin", + "position": 68, + "title": "Just Ain't No Love" + }, + { + "artist": "Bobby Womack", + "position": 69, + "title": "California Dreamin'" + }, + { + "artist": "Sam & Dave", + "position": 70, + "title": "Soul Sister, Brown Sugar" + }, + { + "artist": "The Unifics", + "position": 71, + "title": "The Beginning Of My End" + }, + { + "artist": "The Doors", + "position": 72, + "title": "Touch Me" + }, + { + "artist": "Tom Jones", + "position": 73, + "title": "A Minute Of Your Time" + }, + { + "artist": "Sammy Davis Jr.", + "position": 74, + "title": "I've Gotta Be Me" + }, + { + "artist": "Bob Seger System", + "position": 75, + "title": "Ramblin' Gamblin' Man" + }, + { + "artist": "The O'Kaysions", + "position": 76, + "title": "Love Machine" + }, + { + "artist": "Nancy Sinatra", + "position": 77, + "title": "Good Time Girl" + }, + { + "artist": "Paul Mauriat", + "position": 78, + "title": "Chitty Chitty Bang Bang" + }, + { + "artist": "Merrilee Rush", + "position": 79, + "title": "Reach Out" + }, + { + "artist": "Roger Miller", + "position": 80, + "title": "Vance" + }, + { + "artist": "Johnny Nash", + "position": 81, + "title": "You Got Soul" + }, + { + "artist": "Johnny Adams", + "position": 82, + "title": "Release Me" + }, + { + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "position": 83, + "title": "Electric Stories" + }, + { + "artist": "Andy Kim", + "position": 84, + "title": "Rainbow Ride" + }, + { + "artist": "The Moments", + "position": 85, + "title": "Not On The Outside" + }, + { + "artist": "James Brown", + "position": 86, + "title": "Tit For Tat (Ain't No Taking Back)" + }, + { + "artist": "John Wesley Ryles, I", + "position": 87, + "title": "Kay" + }, + { + "artist": "The Archies", + "position": 88, + "title": "Feelin' So Good (S.k.o.o.b.y-D.o.o)" + }, + { + "artist": "The Box Tops", + "position": 89, + "title": "Sweet Cream Ladies, Forward March" + }, + { + "artist": "Jay & The Americans", + "position": 90, + "title": "This Magic Moment" + }, + { + "artist": "Five Stairsteps & Cubie", + "position": 91, + "title": "Stay Close To Me" + }, + { + "artist": "Barry Ryan", + "position": 92, + "title": "Eloise" + }, + { + "artist": "The Esquires", + "position": 93, + "title": "You've Got The Power" + }, + { + "artist": "The Dells", + "position": 94, + "title": "Does Anybody Know I'm Here" + }, + { + "artist": "The Crystal Mansion", + "position": 95, + "title": "The Thought Of Loving You" + }, + { + "artist": "Chambers Brothers", + "position": 96, + "title": "Shout! - Part 1" + }, + { + "artist": "The Goodees", + "position": 97, + "title": "Condition Red" + }, + { + "artist": "Bobby Vee", + "position": 98, + "title": "I'm Into Lookin' For Someone To Love Me" + }, + { + "artist": "Al Martino", + "position": 99, + "title": "I Can't Help It (If I'm Still In Love With You)" + }, + { + "artist": "New Colony Six", + "position": 100, + "title": "Things I'd Like To Say" + } + ], + "title": "1968 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Beatles", + "position": 1, + "title": "Hello Goodbye" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 2, + "title": "I Heard It Through The Grapevine" + }, + { + "artist": "The Monkees", + "position": 3, + "title": "Daydream Believer" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 4, + "title": "I Second That Emotion" + }, + { + "artist": "The Union Gap Featuring Gary Puckett", + "position": 5, + "title": "Woman, Woman" + }, + { + "artist": "John Fred And The Playboys", + "position": 6, + "title": "Judy In Disguise (With Glasses)" + }, + { + "artist": "Aretha Franklin", + "position": 7, + "title": "Chain Of Fools" + }, + { + "artist": "The American Breed", + "position": 8, + "title": "Bend Me, Shape Me" + }, + { + "artist": "The Fantastic Johnny C", + "position": 9, + "title": "Boogaloo Down Broadway" + }, + { + "artist": "Joe Tex", + "position": 10, + "title": "Skinny Legs And All" + }, + { + "artist": "Martha Reeves & The Vandellas", + "position": 11, + "title": "Honey Chile" + }, + { + "artist": "Cher", + "position": 12, + "title": "You Better Sit Down Kids" + }, + { + "artist": "Strawberry Alarm Clock", + "position": 13, + "title": "Incense And Peppermints" + }, + { + "artist": "The Cowsills", + "position": 14, + "title": "The Rain, The Park & Other Things" + }, + { + "artist": "Johnny Rivers", + "position": 15, + "title": "Summer Rain" + }, + { + "artist": "Dionne Warwick", + "position": 16, + "title": "I Say A Little Prayer" + }, + { + "artist": "The Rose Garden", + "position": 17, + "title": "Next Plane To London" + }, + { + "artist": "Marvin Gaye & Tammi Terrell", + "position": 18, + "title": "If I Could Build My Whole World Around You" + }, + { + "artist": "Stone Poneys Featuring Linda Ronstadt", + "position": 19, + "title": "Different Drum" + }, + { + "artist": "The Turtles", + "position": 20, + "title": "She's My Girl" + }, + { + "artist": "Diana Ross & The Supremes", + "position": 21, + "title": "In And Out Of Love" + }, + { + "artist": "The Esquires", + "position": 22, + "title": "And Get Away" + }, + { + "artist": "Donovan", + "position": 23, + "title": "Wear Your Love Like Heaven" + }, + { + "artist": "The Box Tops", + "position": 24, + "title": "Neon Rainbow" + }, + { + "artist": "The Lemon Pipers", + "position": 25, + "title": "Green Tambourine" + }, + { + "artist": "The Young Rascals", + "position": 26, + "title": "It's Wonderful" + }, + { + "artist": "Bee Gees", + "position": 27, + "title": "(The Lights Went Out In) Massachusetts" + }, + { + "artist": "Jay And The Techniques", + "position": 28, + "title": "Keep The Ball Rollin'" + }, + { + "artist": "The Buckinghams", + "position": 29, + "title": "Susan" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 30, + "title": "Come See About Me" + }, + { + "artist": "Petula Clark", + "position": 31, + "title": "The Other Man's Grass Is Always Greener" + }, + { + "artist": "Eric Burdon & The Animals", + "position": 32, + "title": "Monterey" + }, + { + "artist": "Glen Campbell", + "position": 33, + "title": "By The Time I Get To Phoenix" + }, + { + "artist": "Brenton Wood", + "position": 34, + "title": "Baby You Got It" + }, + { + "artist": "Peter, Paul & Mary", + "position": 35, + "title": "Too Much Of Nothing" + }, + { + "artist": "Ed Ames", + "position": 36, + "title": "Who Will Answer?" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 37, + "title": "I Can't Stand Myself (When You Touch Me)" + }, + { + "artist": "The Doors", + "position": 38, + "title": "Love Me Two Times" + }, + { + "artist": "Lulu", + "position": 39, + "title": "To Sir With Love" + }, + { + "artist": "Etta James", + "position": 40, + "title": "Tell Mama" + }, + { + "artist": "Jackie Wilson", + "position": 41, + "title": "Since You Showed Me How To Be Happy" + }, + { + "artist": "The Sandpebbles", + "position": 42, + "title": "Love Power" + }, + { + "artist": "Percy Sledge", + "position": 43, + "title": "Cover Me" + }, + { + "artist": "Wes Montgomery", + "position": 44, + "title": "Windy" + }, + { + "artist": "Wilson Pickett", + "position": 45, + "title": "I'm In Love" + }, + { + "artist": "Dean Martin", + "position": 46, + "title": "In The Misty Moonlight" + }, + { + "artist": "Lulu", + "position": 47, + "title": "Best Of Both Worlds" + }, + { + "artist": "The Lettermen", + "position": 48, + "title": "Goin' Out Of My Head/Can't Take My Eyes Off You" + }, + { + "artist": "Dusty Springfield", + "position": 49, + "title": "What's It Gonna Be" + }, + { + "artist": "The Hollies", + "position": 50, + "title": "Dear Eloise" + }, + { + "artist": "The Marvelettes", + "position": 51, + "title": "My Baby Must Be A Magician" + }, + { + "artist": "The Mamas & The Papas", + "position": 52, + "title": "Dancing Bear" + }, + { + "artist": "Small Faces", + "position": 53, + "title": "Itchycoo Park" + }, + { + "artist": "Engelbert Humperdinck", + "position": 54, + "title": "Am I That Easy To Forget" + }, + { + "artist": "Kenny O'Dell", + "position": 55, + "title": "Beautiful People" + }, + { + "artist": "Peaches & Herb", + "position": 56, + "title": "Two Little Kids" + }, + { + "artist": "Bobby Vee And The Strangers", + "position": 57, + "title": "Beautiful People" + }, + { + "artist": "Billy Vera & Judy Clay", + "position": 58, + "title": "Storybook Children" + }, + { + "artist": "Sonny & Cher", + "position": 59, + "title": "Good Combination" + }, + { + "artist": "The Dave Clark Five", + "position": 60, + "title": "Everybody Knows" + }, + { + "artist": "Jefferson Airplane", + "position": 61, + "title": "Watch Her Ride" + }, + { + "artist": "The Human Beinz", + "position": 62, + "title": "Nobody But Me" + }, + { + "artist": "The Beach Boys", + "position": 63, + "title": "Darlin'" + }, + { + "artist": "Soul Survivors", + "position": 64, + "title": "Explosion (In Your Soul)" + }, + { + "artist": "The Dells", + "position": 65, + "title": "O-O, I Love You" + }, + { + "artist": "The Foundations", + "position": 66, + "title": "Baby, Now That I've Found You" + }, + { + "artist": "The O'Jays", + "position": 67, + "title": "I'll Be Sweeter Tomorrow (Than I Was Today)" + }, + { + "artist": "Henson Cargill", + "position": 68, + "title": "Skip A Rope" + }, + { + "artist": "Vikki Carr", + "position": 69, + "title": "The Lesson" + }, + { + "artist": "Classics IV", + "position": 70, + "title": "Spooky" + }, + { + "artist": "Bill Cosby", + "position": 71, + "title": "Hooray For The Salvation Army Band" + }, + { + "artist": "Tommy Boyce & Bobby Hart", + "position": 72, + "title": "I Wonder What She's Doing Tonite" + }, + { + "artist": "Al Greene & The Soul Mate's", + "position": 73, + "title": "Back Up Train" + }, + { + "artist": "Hugh Masekela", + "position": 74, + "title": "Up-Up And Away" + }, + { + "artist": "The Beatles", + "position": 75, + "title": "I Am The Walrus" + }, + { + "artist": "Harpers Bizarre", + "position": 76, + "title": "Chattanooga Choo Choo" + }, + { + "artist": "The Rolling Stones", + "position": 77, + "title": "She's A Rainbow" + }, + { + "artist": "Frankie Valli", + "position": 78, + "title": "To Give (The Reason I Live)" + }, + { + "artist": "Jimi Hendrix", + "position": 79, + "title": "Foxey Lady" + }, + { + "artist": "Strawberry Alarm Clock", + "position": 80, + "title": "Tomorrow" + }, + { + "artist": "Tom Jones", + "position": 81, + "title": "I'm Coming Home" + }, + { + "artist": "Carla Thomas", + "position": 82, + "title": "Pick Up The Pieces" + }, + { + "artist": "Bobby Vinton", + "position": 83, + "title": "Just As Much As Ever" + }, + { + "artist": "Jerry Butler", + "position": 84, + "title": "Lost" + }, + { + "artist": "Al Martino", + "position": 85, + "title": "A Voice In The Choir" + }, + { + "artist": "King Curtis & The Kingpins", + "position": 86, + "title": "I Was Made To Love Her" + }, + { + "artist": "Ronnie Dove", + "position": 87, + "title": "Dancin' Out Of My Heart" + }, + { + "artist": "Bill Wyman", + "position": 88, + "title": "In Another Land" + }, + { + "artist": "5 Stairsteps and Cubie", + "position": 89, + "title": "Something's Missing" + }, + { + "artist": "Bruce Channel", + "position": 90, + "title": "Mr. Bus Driver" + }, + { + "artist": "Billy Stewart", + "position": 91, + "title": "Cross My Heart" + }, + { + "artist": "The Music Makers", + "position": 92, + "title": "United (Part 1)" + }, + { + "artist": "Leon Haywood", + "position": 93, + "title": "Mellow Moonlight" + }, + { + "artist": "Aretha Franklin", + "position": 94, + "title": "Mockingbird" + }, + { + "artist": "Barbara Mason", + "position": 95, + "title": "Oh, How It Hurts" + }, + { + "artist": "The Epic Splendor", + "position": 96, + "title": "A Little Rain Must Fall" + }, + { + "artist": "The Manhattans", + "position": 97, + "title": "I Call It Love" + }, + { + "artist": "Laura Lee", + "position": 98, + "title": "Up Tight, Good Man" + }, + { + "artist": "The Impressions", + "position": 99, + "title": "We're A Winner" + }, + { + "artist": "The Fireballs", + "position": 100, + "title": "Bottle Of Wine" + } + ], + "title": "1967 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Monkees", + "position": 1, + "title": "I'm A Believer" + }, + { + "artist": "The Royal Guardsmen", + "position": 2, + "title": "Snoopy Vs. The Red Baron" + }, + { + "artist": "The New Vaudeville Band", + "position": 3, + "title": "Winchester Cathedral" + }, + { + "artist": "Frank Sinatra", + "position": 4, + "title": "That's Life" + }, + { + "artist": "Nancy Sinatra", + "position": 5, + "title": "Sugar Town" + }, + { + "artist": "Donovan", + "position": 6, + "title": "Mellow Yellow" + }, + { + "artist": "Aaron Neville", + "position": 7, + "title": "Tell It Like It Is" + }, + { + "artist": "The Temptations", + "position": 8, + "title": "(I Know) I'm Losing You" + }, + { + "artist": "Stevie Wonder", + "position": 9, + "title": "A Place In The Sun" + }, + { + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "position": 10, + "title": "Good Thing" + }, + { + "artist": "Mitch Ryder And The Detroit Wheels", + "position": 11, + "title": "Devil With A Blue Dress On & Good Golly Miss Molly" + }, + { + "artist": "Sandy Posey", + "position": 12, + "title": "Single Girl" + }, + { + "artist": "The Beach Boys", + "position": 13, + "title": "Good Vibrations" + }, + { + "artist": "The Supremes", + "position": 14, + "title": "You Keep Me Hangin' On" + }, + { + "artist": "Four Tops", + "position": 15, + "title": "Standing In The Shadows Of Love" + }, + { + "artist": "The Music Machine", + "position": 16, + "title": "Talk Talk" + }, + { + "artist": "Bobby Vinton", + "position": 17, + "title": "Coming Home Soldier" + }, + { + "artist": "Ronnie Dove", + "position": 18, + "title": "Cry" + }, + { + "artist": "The Mamas & The Papas", + "position": 19, + "title": "Words Of Love" + }, + { + "artist": "Roger Williams", + "position": 20, + "title": "Born Free" + }, + { + "artist": "Jackie Wilson", + "position": 21, + "title": "Whispers (Gettin' Louder)" + }, + { + "artist": "? (Question Mark) & The Mysterians", + "position": 22, + "title": "I Need Somebody" + }, + { + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "position": 23, + "title": "Tell It To The Rain" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 24, + "title": "Mame" + }, + { + "artist": "Peter And Gordon", + "position": 25, + "title": "Lady Godiva" + }, + { + "artist": "Wilson Pickett", + "position": 26, + "title": "Mustang Sally" + }, + { + "artist": "Herman's Hermits", + "position": 27, + "title": "East West" + }, + { + "artist": "Jimmy Ruffin", + "position": 28, + "title": "I've Passed This Way Before" + }, + { + "artist": "Eric Burdon & The Animals", + "position": 29, + "title": "Help Me Girl" + }, + { + "artist": "The Yardbirds", + "position": 30, + "title": "Happenings Ten Years Time Ago" + }, + { + "artist": "Neil Diamond", + "position": 31, + "title": "I Got The Feelin' (Oh No No)" + }, + { + "artist": "The Monkees", + "position": 32, + "title": "(I'm Not Your) Steppin' Stone" + }, + { + "artist": "The Lovin' Spoonful", + "position": 33, + "title": "Nashville Cats" + }, + { + "artist": "The Miracles", + "position": 34, + "title": "(Come 'Round Here) I'm The One You Need" + }, + { + "artist": "The Association", + "position": 35, + "title": "Pandora's Golden Heebie Jeebies" + }, + { + "artist": "Otis Redding", + "position": 36, + "title": "Try A Little Tenderness" + }, + { + "artist": "The Seekers", + "position": 37, + "title": "Georgy Girl" + }, + { + "artist": "Petula Clark", + "position": 38, + "title": "Color My World" + }, + { + "artist": "Tommy James And The Shondells", + "position": 39, + "title": "It's Only Love" + }, + { + "artist": "Percy Sledge", + "position": 40, + "title": "It Tears Me Up" + }, + { + "artist": "Blues Magoos", + "position": 41, + "title": "(We Ain't Got) Nothin' Yet" + }, + { + "artist": "The Innocence", + "position": 42, + "title": "There's Got To Be A Word!" + }, + { + "artist": "Senator Everett McKinley Dirksen", + "position": 43, + "title": "Gallant Men" + }, + { + "artist": "Bobby Goldsboro", + "position": 44, + "title": "Blue Autumn" + }, + { + "artist": "Martha & The Vandellas", + "position": 45, + "title": "I'm Ready For Love" + }, + { + "artist": "Simon & Garfunkel", + "position": 46, + "title": "A Hazy Shade Of Winter" + }, + { + "artist": "Keith", + "position": 47, + "title": "98.6" + }, + { + "artist": "Terry Knight and The Pack", + "position": 48, + "title": "I (Who Have Nothing)" + }, + { + "artist": "Gene Chandler", + "position": 49, + "title": "I Fooled You This Time" + }, + { + "artist": "The Hollies", + "position": 50, + "title": "Stop Stop Stop" + }, + { + "artist": "Gary Lewis And The Playboys", + "position": 51, + "title": "Where Will The Words Come From" + }, + { + "artist": "Dr. West's Medicine Show and Junk Band", + "position": 52, + "title": "The Eggplant That Ate Chicago" + }, + { + "artist": "Eddie Floyd", + "position": 53, + "title": "Knock On Wood" + }, + { + "artist": "The Electric Prunes", + "position": 54, + "title": "I Had Too Much To Dream (Last Night)" + }, + { + "artist": "The Critters", + "position": 55, + "title": "Bad Misunderstanding" + }, + { + "artist": "The Happenings", + "position": 56, + "title": "Goodnight My Love" + }, + { + "artist": "Baja Marimba Band", + "position": 57, + "title": "Ghost Riders In The Sky" + }, + { + "artist": "Spyder Turner", + "position": 58, + "title": "Stand By Me" + }, + { + "artist": "Joe Tex", + "position": 59, + "title": "Papa Was Too" + }, + { + "artist": "Lou Rawls", + "position": 60, + "title": "You Can Bring Me All Your Heartaches" + }, + { + "artist": "Sam The Sham and the Pharaohs", + "position": 61, + "title": "How Do You Catch A Girl" + }, + { + "artist": "The Drifters", + "position": 62, + "title": "Baby What I Mean" + }, + { + "artist": "The Emperor's", + "position": 63, + "title": "Karate" + }, + { + "artist": "Pozo Seco Singers", + "position": 64, + "title": "Look What You've Done" + }, + { + "artist": "The Outsiders", + "position": 65, + "title": "Help Me Girl" + }, + { + "artist": "Bobby Darin", + "position": 66, + "title": "The Girl That Stood Beside Me" + }, + { + "artist": "Dean Martin", + "position": 67, + "title": "(Open Up The Door) Let The Good Times In" + }, + { + "artist": "The Young Holt Trio", + "position": 68, + "title": "Wack Wack" + }, + { + "artist": "Baby Ray", + "position": 69, + "title": "There's Something On Your Mind" + }, + { + "artist": "The Youngbloods", + "position": 70, + "title": "Grizzly Bear" + }, + { + "artist": "Peter And Gordon", + "position": 71, + "title": "Knight In Rusty Armour" + }, + { + "artist": "Roy Orbison", + "position": 72, + "title": "Communication Breakdown" + }, + { + "artist": "Dionne Warwick", + "position": 73, + "title": "Another Night" + }, + { + "artist": "Tom Jones", + "position": 74, + "title": "Green, Green Grass Of Home" + }, + { + "artist": "Gene Pitney", + "position": 75, + "title": "Just One Smile" + }, + { + "artist": "Alvin Cash & The Registers", + "position": 76, + "title": "Alvin's Boo-Ga-Loo" + }, + { + "artist": "The Mamas & The Papas", + "position": 77, + "title": "Dancing In The Street" + }, + { + "artist": "Ramsey Lewis", + "position": 78, + "title": "Day Tripper" + }, + { + "artist": "Damita Jo", + "position": 79, + "title": "If You Go Away" + }, + { + "artist": "The Artistics", + "position": 80, + "title": "I'm Gonna Miss You" + }, + { + "artist": "The Gunter Kallmann Chorus", + "position": 81, + "title": "Wish Me A Rainbow" + }, + { + "artist": "The Cyrkle", + "position": 82, + "title": "Please Don't Ever Leave Me" + }, + { + "artist": "Sergio Mendes & Brasil '66", + "position": 83, + "title": "Constant Rain (Chove Chuva)" + }, + { + "artist": "Tommy Roe", + "position": 84, + "title": "It's Now Winters Day" + }, + { + "artist": "The Seeds", + "position": 85, + "title": "Pushin' Too Hard" + }, + { + "artist": "Bob Crewe Generation", + "position": 86, + "title": "Music To Watch Girls By" + }, + { + "artist": "Howard Tate", + "position": 87, + "title": "Look At Granny Run, Run" + }, + { + "artist": "Freddy Scott", + "position": 88, + "title": "Are You Lonely For Me" + }, + { + "artist": "J.J. Jackson", + "position": 89, + "title": "I Dig Girls" + }, + { + "artist": "The Buckinghams", + "position": 90, + "title": "Kind Of A Drag" + }, + { + "artist": "The Sopwith Camel", + "position": 91, + "title": "Hello Hello" + }, + { + "artist": "Peaches & Herb", + "position": 92, + "title": "Let's Fall In Love" + }, + { + "artist": "Patti LaBelle And The Blue Belles", + "position": 93, + "title": "Take Me For A Little While" + }, + { + "artist": "Boots Randolph", + "position": 94, + "title": "The Shadow Of Your Smile" + }, + { + "artist": "Jimmy Castor", + "position": 95, + "title": "Hey, Leroy, Your Mama's Callin' You" + }, + { + "artist": "Bobby Hebb", + "position": 96, + "title": "Love Me" + }, + { + "artist": "Sam & Dave", + "position": 97, + "title": "You Got Me Hummin'" + }, + { + "artist": "Don Ho and the Aliis", + "position": 98, + "title": "Tiny Bubbles" + }, + { + "artist": "The Hardtimes", + "position": 99, + "title": "Fortune Teller" + }, + { + "artist": "The Spencer Davis Group", + "position": 100, + "title": "Gimme Some Lovin'" + } + ], + "title": "1966 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Dave Clark Five", + "position": 1, + "title": "Over And Over" + }, + { + "artist": "The Byrds", + "position": 2, + "title": "Turn! Turn! Turn! (To Everything There Is A Season)" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 3, + "title": "I Got You (I Feel Good)" + }, + { + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "position": 4, + "title": "Let's Hang On!" + }, + { + "artist": "Simon & Garfunkel", + "position": 5, + "title": "The Sound Of Silence" + }, + { + "artist": "Eddy Arnold", + "position": 6, + "title": "Make The World Go Away" + }, + { + "artist": "The McCoys", + "position": 7, + "title": "Fever" + }, + { + "artist": "Roger Miller", + "position": 8, + "title": "England Swings" + }, + { + "artist": "The Righteous Brothers", + "position": 9, + "title": "Ebb Tide" + }, + { + "artist": "The Shangri-Las", + "position": 10, + "title": "I Can Never Go Home Anymore" + }, + { + "artist": "The Beatles", + "position": 11, + "title": "We Can Work It Out" + }, + { + "artist": "The Wonder Who?", + "position": 12, + "title": "Don't Think Twice" + }, + { + "artist": "The Statler Brothers", + "position": 13, + "title": "Flowers On The Wall" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 14, + "title": "Puppet On A String" + }, + { + "artist": "Ramsey Lewis Trio", + "position": 15, + "title": "Hang On Sloopy" + }, + { + "artist": "The Vogues", + "position": 16, + "title": "Five O'Clock World" + }, + { + "artist": "Barry Young", + "position": 17, + "title": "One Has My Name (The Other Has My Heart)" + }, + { + "artist": "Jay & The Americans", + "position": 18, + "title": "Sunday And Me" + }, + { + "artist": "Dean Martin", + "position": 19, + "title": "I Will" + }, + { + "artist": "The Supremes", + "position": 20, + "title": "I Hear A Symphony" + }, + { + "artist": "The Beach Boys", + "position": 21, + "title": "The Little Girl I Once Knew" + }, + { + "artist": "Gary Lewis And The Playboys", + "position": 22, + "title": "She's Just My Style" + }, + { + "artist": "The Lovin' Spoonful", + "position": 23, + "title": "You Didn't Have To Be So Nice" + }, + { + "artist": "The Animals", + "position": 24, + "title": "It's My Life" + }, + { + "artist": "The Yardbirds", + "position": 25, + "title": "I'm A Man" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 26, + "title": "Taste Of Honey" + }, + { + "artist": "Len Barry", + "position": 27, + "title": "1-2-3" + }, + { + "artist": "The Beatles", + "position": 28, + "title": "Day Tripper" + }, + { + "artist": "Jackie Lee", + "position": 29, + "title": "The Duck" + }, + { + "artist": "Al Martino", + "position": 30, + "title": "Spanish Eyes" + }, + { + "artist": "We Five", + "position": 31, + "title": "Let's Get Together" + }, + { + "artist": "Roy Head And The Traits", + "position": 32, + "title": "Apple Of My Eye" + }, + { + "artist": "The T-Bones", + "position": 33, + "title": "No Matter What Shape (Your Stomach's In)" + }, + { + "artist": "Four Tops", + "position": 34, + "title": "Something About You" + }, + { + "artist": "Bobby Vinton", + "position": 35, + "title": "Satin Pillows" + }, + { + "artist": "The Rolling Stones", + "position": 36, + "title": "Get Off Of My Cloud" + }, + { + "artist": "Gene Pitney", + "position": 37, + "title": "Princess In Rags" + }, + { + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "position": 38, + "title": "Just Like Me" + }, + { + "artist": "The Newbeats", + "position": 39, + "title": "Run, Baby Run (Back Into My Arms)" + }, + { + "artist": "Fontella Bass", + "position": 40, + "title": "Rescue Me" + }, + { + "artist": "Tom Jones", + "position": 41, + "title": "Thunderball" + }, + { + "artist": "The Impressions", + "position": 42, + "title": "You've Been Cheatin'" + }, + { + "artist": "The Viscounts", + "position": 43, + "title": "Harlem Nocturne" + }, + { + "artist": "Don Covay & The Goodtimers", + "position": 44, + "title": "Seesaw" + }, + { + "artist": "Joe Tex", + "position": 45, + "title": "A Sweet Woman Like You" + }, + { + "artist": "Marvin Gaye", + "position": 46, + "title": "Ain't That Peculiar" + }, + { + "artist": "Connie Francis", + "position": 47, + "title": "Jealous Heart" + }, + { + "artist": "Herman's Hermits", + "position": 48, + "title": "A Must To Avoid" + }, + { + "artist": "Ronny And The Daytonas", + "position": 49, + "title": "Sandy" + }, + { + "artist": "The Hollies", + "position": 50, + "title": "Look Through Any Window" + }, + { + "artist": "Vic Dana", + "position": 51, + "title": "Crystal Chandelier" + }, + { + "artist": "The Fortunes", + "position": 52, + "title": "Here It Comes Again" + }, + { + "artist": "The Knickerbockers", + "position": 53, + "title": "Lies" + }, + { + "artist": "Billy Joe Royal", + "position": 54, + "title": "I've Got To Be Somebody" + }, + { + "artist": "Ronnie Dove", + "position": 55, + "title": "Kiss Away" + }, + { + "artist": "Noel Harrison", + "position": 56, + "title": "A Young Girl" + }, + { + "artist": "The Kinks", + "position": 57, + "title": "A Well Respected Man" + }, + { + "artist": "Dionne Warwick", + "position": 58, + "title": "Are You There (With Another Girl)" + }, + { + "artist": "The Toys", + "position": 59, + "title": "Attack" + }, + { + "artist": "Buck Owens and The Buckaroos", + "position": 60, + "title": "Buckaroo" + }, + { + "artist": "Ray Charles", + "position": 61, + "title": "Crying Time" + }, + { + "artist": "The Packers", + "position": 62, + "title": "Hole In The Wall" + }, + { + "artist": "James Brown At The Organ", + "position": 63, + "title": "Try Me" + }, + { + "artist": "Wilson Pickett", + "position": 64, + "title": "Don't Fight It" + }, + { + "artist": "Mitch Ryder And The Detroit Wheels", + "position": 65, + "title": "Jenny Take A Ride!" + }, + { + "artist": "Hedgehoppers Anonymous", + "position": 66, + "title": "It's Good News Week" + }, + { + "artist": "Dino, Desi & Billy", + "position": 67, + "title": "Please Don't Fight It" + }, + { + "artist": "Bobby Goldsboro", + "position": 68, + "title": "Broomstick Cowboy" + }, + { + "artist": "Brook Benton", + "position": 69, + "title": "Mother Nature, Father Time" + }, + { + "artist": "Lou Johnson", + "position": 70, + "title": "A Time To Love-A Time To Cry (Petite Fleur)" + }, + { + "artist": "The C.O.D.'s", + "position": 71, + "title": "Michael" + }, + { + "artist": "Patti LaBelle And The Blue Belles", + "position": 72, + "title": "All Or Nothing" + }, + { + "artist": "Johnny Tillotson", + "position": 73, + "title": "Our World" + }, + { + "artist": "Johnny Rivers", + "position": 74, + "title": "Under Your Spell Again" + }, + { + "artist": "Jack Jones", + "position": 75, + "title": "Love Bug" + }, + { + "artist": "Barbra Streisand", + "position": 76, + "title": "Second Hand Rose" + }, + { + "artist": "Frank Sinatra", + "position": 77, + "title": "It Was A Very Good Year" + }, + { + "artist": "Bobby Powell", + "position": 78, + "title": "C.C. Rider" + }, + { + "artist": "The Rolling Stones", + "position": 79, + "title": "As Tears Go By" + }, + { + "artist": "Mike Douglas", + "position": 80, + "title": "The Men In My Little Girl's Life" + }, + { + "artist": "Johnny Thunder", + "position": 81, + "title": "Everybody Do The Sloopy" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 82, + "title": "Zorba The Greek" + }, + { + "artist": "Fontella Bass", + "position": 83, + "title": "Recovery" + }, + { + "artist": "The Miracles", + "position": 84, + "title": "Going To A Go-Go" + }, + { + "artist": "Otis Redding", + "position": 85, + "title": "Just One More Day" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 86, + "title": "Tijuana Taxi" + }, + { + "artist": "Maxine Brown", + "position": 87, + "title": "If You Gotta Make A Fool Of Somebody" + }, + { + "artist": "The 4 Seasons", + "position": 88, + "title": "Little Boy (In Grown Up Clothes)" + }, + { + "artist": "Marianne Faithfull", + "position": 89, + "title": "Go Away From My World" + }, + { + "artist": "Petula Clark", + "position": 90, + "title": "My Love" + }, + { + "artist": "Martha & The Vandellas", + "position": 91, + "title": "Love (Makes Me Do Foolish Things)" + }, + { + "artist": "The Temptations", + "position": 92, + "title": "Don't Look Back" + }, + { + "artist": "Lou Christie", + "position": 93, + "title": "Lightnin' Strikes" + }, + { + "artist": "The Young Rascals", + "position": 94, + "title": "I Ain't Gonna Eat Out My Heart Anymore" + }, + { + "artist": "Stevie Wonder", + "position": 95, + "title": "Uptight (Everything's Alright)" + }, + { + "artist": "Lowell Fulsom", + "position": 96, + "title": "Black Nights" + }, + { + "artist": "The Beau Brummels", + "position": 97, + "title": "Good Time Music" + }, + { + "artist": "Johnny Mathis", + "position": 98, + "title": "On A Clear Day You Can See Forever" + }, + { + "artist": "Tony Bennett", + "position": 99, + "title": "Love Theme From The Sandpiper (The Shadow Of Your Smile)" + }, + { + "artist": "King Curtis", + "position": 100, + "title": "Spanish Harlem" + } + ], + "title": "1965 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Beatles", + "position": 1, + "title": "I Feel Fine" + }, + { + "artist": "The Supremes", + "position": 2, + "title": "Come See About Me" + }, + { + "artist": "Bobby Vinton", + "position": 3, + "title": "Mr. Lonely" + }, + { + "artist": "The Beatles", + "position": 4, + "title": "She's A Woman" + }, + { + "artist": "The Zombies", + "position": 5, + "title": "She's Not There" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 6, + "title": "Goin' Out Of My Head" + }, + { + "artist": "Lorne Greene", + "position": 7, + "title": "Ringo" + }, + { + "artist": "The Beach Boys", + "position": 8, + "title": "Dance, Dance, Dance" + }, + { + "artist": "The Larks", + "position": 9, + "title": "The Jerk" + }, + { + "artist": "The Rolling Stones", + "position": 10, + "title": "Time Is On My Side" + }, + { + "artist": "The Searchers", + "position": 11, + "title": "Love Potion Number Nine" + }, + { + "artist": "The Impressions", + "position": 12, + "title": "Amen" + }, + { + "artist": "Manfred Mann", + "position": 13, + "title": "Sha La La" + }, + { + "artist": "Julie Rogers", + "position": 14, + "title": "The Wedding" + }, + { + "artist": "Gene Pitney", + "position": 15, + "title": "I'm Gonna Be Strong" + }, + { + "artist": "Johnny Rivers", + "position": 16, + "title": "Mountain Of Love" + }, + { + "artist": "Herman's Hermits", + "position": 17, + "title": "I'm Into Something Good" + }, + { + "artist": "The Kinks", + "position": 18, + "title": "You Really Got Me" + }, + { + "artist": "The Dave Clark Five", + "position": 19, + "title": "Any Way You Want It" + }, + { + "artist": "The Drifters", + "position": 20, + "title": "Saturday Night At The Movies" + }, + { + "artist": "Robert Goulet", + "position": 21, + "title": "My Love, Forgive Me (Amore, Scusami)" + }, + { + "artist": "The Shangri-Las", + "position": 22, + "title": "Leader Of The Pack" + }, + { + "artist": "Del Shannon", + "position": 23, + "title": "Keep Searchin' (We'll Follow The Sun)" + }, + { + "artist": "Chad & Jeremy", + "position": 24, + "title": "Willow Weep For Me" + }, + { + "artist": "Maxine Brown", + "position": 25, + "title": "Oh No Not My Baby" + }, + { + "artist": "Marianne Faithfull", + "position": 26, + "title": "As Tears Go By" + }, + { + "artist": "Marvin Gaye", + "position": 27, + "title": "How Sweet It Is To Be Loved By You" + }, + { + "artist": "The Detergents", + "position": 28, + "title": "Leader Of The Laundromat" + }, + { + "artist": "The Marvelettes", + "position": 29, + "title": "Too Many Fish In The Sea" + }, + { + "artist": "Andy Williams", + "position": 30, + "title": "Dear Heart" + }, + { + "artist": "Johnny Tillotson", + "position": 31, + "title": "She Understands Me" + }, + { + "artist": "Dick and DeeDee", + "position": 32, + "title": "Thou Shalt Not Steal" + }, + { + "artist": "The Supremes", + "position": 33, + "title": "Baby Love" + }, + { + "artist": "The Righteous Brothers", + "position": 34, + "title": "You've Lost That Lovin' Feelin'" + }, + { + "artist": "The Ray Charles Singers", + "position": 35, + "title": "One More Time" + }, + { + "artist": "Ronnie Dove", + "position": 36, + "title": "Right Or Wrong" + }, + { + "artist": "Jack Jones", + "position": 37, + "title": "Dear Heart" + }, + { + "artist": "The Ronettes", + "position": 38, + "title": "Walking In The Rain" + }, + { + "artist": "Martha & The Vandellas", + "position": 39, + "title": "Wild One" + }, + { + "artist": "Matt Monro", + "position": 40, + "title": "Walk Away" + }, + { + "artist": "Petula Clark", + "position": 41, + "title": "Downtown" + }, + { + "artist": "Bobbi Martin", + "position": 42, + "title": "Don't Forget I Still Love You" + }, + { + "artist": "Roger Miller", + "position": 43, + "title": "Do-Wacka-Do" + }, + { + "artist": "The Gestures", + "position": 44, + "title": "Run, Run, Run" + }, + { + "artist": "Betty Everett & Jerry Butler", + "position": 45, + "title": "Smile" + }, + { + "artist": "The You Know Who Group!", + "position": 46, + "title": "Roses Are Red My Love" + }, + { + "artist": "Chuck Jackson", + "position": 47, + "title": "Since I Don't Have You" + }, + { + "artist": "Gene Chandler", + "position": 48, + "title": "What Now" + }, + { + "artist": "The Animals", + "position": 49, + "title": "Boom Boom" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 50, + "title": "Ask Me" + }, + { + "artist": "Gerry And The Pacemakers", + "position": 51, + "title": "I'll Be There" + }, + { + "artist": "The Waikikis", + "position": 52, + "title": "Hawaii Tattoo" + }, + { + "artist": "Candy & The Kisses", + "position": 53, + "title": "The 81" + }, + { + "artist": "Sandie Shaw", + "position": 54, + "title": "(There's) Always Something There To Remind Me" + }, + { + "artist": "Chuck Berry", + "position": 55, + "title": "Promised Land" + }, + { + "artist": "Four Tops", + "position": 56, + "title": "Without The One You Love (Life's Not Worth While)" + }, + { + "artist": "Dean Martin", + "position": 57, + "title": "You're Nobody Till Somebody Loves You" + }, + { + "artist": "The Hullaballoos", + "position": 58, + "title": "I'm Gonna Love You Too" + }, + { + "artist": "Joe Tex", + "position": 59, + "title": "Hold What You've Got" + }, + { + "artist": "Shirley Ellis", + "position": 60, + "title": "The Name Game" + }, + { + "artist": "Gale Garnett", + "position": 61, + "title": "Lovin' Place" + }, + { + "artist": "Ray Charles", + "position": 62, + "title": "Makin' Whoopee" + }, + { + "artist": "Ben E. King", + "position": 63, + "title": "Seven Letters" + }, + { + "artist": "Major Lance", + "position": 64, + "title": "Sometimes I Wonder" + }, + { + "artist": "The Miracles", + "position": 65, + "title": "Come On Do The Jerk" + }, + { + "artist": "Betty Everett", + "position": 66, + "title": "Getting Mighty Crowded" + }, + { + "artist": "Solomon Burke", + "position": 67, + "title": "The Price" + }, + { + "artist": "The Honeycombs", + "position": 68, + "title": "I Can't Stop" + }, + { + "artist": "The Kinks", + "position": 69, + "title": "All Day And All Of The Night" + }, + { + "artist": "Brook Benton", + "position": 70, + "title": "Do It Right" + }, + { + "artist": "Irma Thomas", + "position": 71, + "title": "He's My Guy" + }, + { + "artist": "Walter Jackson", + "position": 72, + "title": "It's All Over" + }, + { + "artist": "Jo Ann & Troy", + "position": 73, + "title": "I Found A Love Oh What A Love" + }, + { + "artist": "Harold Betters", + "position": 74, + "title": "Do Anything You Wanna (Part I)" + }, + { + "artist": "Jerry Vale", + "position": 75, + "title": "Have You Looked Into Your Heart" + }, + { + "artist": "Frank Sinatra", + "position": 76, + "title": "Somewhere In Your Heart" + }, + { + "artist": "The Contours", + "position": 77, + "title": "Can You Jerk Like Me" + }, + { + "artist": "Henry Mancini And His Orchestra", + "position": 78, + "title": "Dear Heart" + }, + { + "artist": "Dean Martin", + "position": 79, + "title": "You'll Always Be The One I Love" + }, + { + "artist": "Travis Wammack", + "position": 80, + "title": "Scratchy" + }, + { + "artist": "Jay & The Americans", + "position": 81, + "title": "Let's Lock The Door (And Throw Away The Key)" + }, + { + "artist": "Patti LaBelle And The Blue Belles", + "position": 82, + "title": "Danny Boy" + }, + { + "artist": "The Shangri-Las", + "position": 83, + "title": "Give Him A Great Big Kiss" + }, + { + "artist": "The Dolphins", + "position": 84, + "title": "Hey-Da-Da-Dow" + }, + { + "artist": "Ronny And The Daytonas", + "position": 85, + "title": "Bucket T" + }, + { + "artist": "Lee Morgan", + "position": 86, + "title": "The Sidewinder, Part 1" + }, + { + "artist": "Willie Mitchell", + "position": 87, + "title": "Percolatin'" + }, + { + "artist": "The Dixie Cups", + "position": 88, + "title": "Little Bell" + }, + { + "artist": "Bobby Vee", + "position": 89, + "title": "(There'll Come A Day When) Ev'ry Little Bit Hurts" + }, + { + "artist": "Lesley Gore", + "position": 90, + "title": "Look Of Love" + }, + { + "artist": "Sonny James", + "position": 91, + "title": "You're The Only World I Know" + }, + { + "artist": "The Hondells", + "position": 92, + "title": "My Buddy Seat" + }, + { + "artist": "The Shangri-Las", + "position": 93, + "title": "Maybe" + }, + { + "artist": "Hank Williams Jr.", + "position": 94, + "title": "Endless Sleep" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 95, + "title": "Have Mercy Baby" + }, + { + "artist": "The Radiants", + "position": 96, + "title": "Voice Your Choice" + }, + { + "artist": "Don Covay", + "position": 97, + "title": "Take This Hurt Off Me" + }, + { + "artist": "The Bachelors", + "position": 98, + "title": "No Arms Can Ever Hold You" + }, + { + "artist": "The Shirelles", + "position": 99, + "title": "Are You Still My Baby" + }, + { + "artist": "Ned Miller", + "position": 100, + "title": "Do What You Do Do Well" + } + ], + "title": "1964 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Singing Nun (Soeur Sourire)", + "position": 1, + "title": "Dominique" + }, + { + "artist": "Bobby Vinton", + "position": 2, + "title": "There! I've Said It Again" + }, + { + "artist": "The Kingsmen", + "position": 3, + "title": "Louie Louie" + }, + { + "artist": "Lenny Welch", + "position": 4, + "title": "Since I Fell For You" + }, + { + "artist": "The Caravelles", + "position": 5, + "title": "You Don't Have To Be A Baby To Cry" + }, + { + "artist": "Dion Di Muci", + "position": 6, + "title": "Drip Drop" + }, + { + "artist": "Bobby Rydell", + "position": 7, + "title": "Forget Him" + }, + { + "artist": "The Murmaids", + "position": 8, + "title": "Popsicles And Icicles" + }, + { + "artist": "Johnny Tillotson", + "position": 9, + "title": "Talk Back Trembling Lips" + }, + { + "artist": "The Beach Boys", + "position": 10, + "title": "Be True To Your School" + }, + { + "artist": "Joey Powers", + "position": 11, + "title": "Midnight Mary" + }, + { + "artist": "Martha & The Vandellas", + "position": 12, + "title": "Quicksand" + }, + { + "artist": "Shirley Ellis", + "position": 13, + "title": "The Nitty Gritty" + }, + { + "artist": "Chubby Checker", + "position": 14, + "title": "Loddy Lo" + }, + { + "artist": "Jack Jones", + "position": 15, + "title": "Wives And Lovers" + }, + { + "artist": "Dale & Grace", + "position": 16, + "title": "I'm Leaving It Up To You" + }, + { + "artist": "Tommy Roe", + "position": 17, + "title": "Everybody" + }, + { + "artist": "The Secrets", + "position": 18, + "title": "The Boy Next Door" + }, + { + "artist": "Roy Orbison", + "position": 19, + "title": "Pretty Paper" + }, + { + "artist": "Brenda Lee", + "position": 20, + "title": "As Usual" + }, + { + "artist": "The Trashmen", + "position": 21, + "title": "Surfin' Bird" + }, + { + "artist": "Marvin Gaye", + "position": 22, + "title": "Can I Get A Witness" + }, + { + "artist": "The Duprees featuring Joey Vann", + "position": 23, + "title": "Have You Heard" + }, + { + "artist": "Jan & Dean", + "position": 24, + "title": "Drag City" + }, + { + "artist": "Trini Lopez", + "position": 25, + "title": "Kansas City" + }, + { + "artist": "Robin Ward", + "position": 26, + "title": "Wonderful Summer" + }, + { + "artist": "The Beach Boys", + "position": 27, + "title": "In My Room" + }, + { + "artist": "Lesley Gore", + "position": 28, + "title": "She's A Fool" + }, + { + "artist": "Rufus Thomas", + "position": 29, + "title": "Walking The Dog" + }, + { + "artist": "Dick and DeeDee", + "position": 30, + "title": "Turn Around" + }, + { + "artist": "Garnet Mimms & The Enchanters", + "position": 31, + "title": "For Your Precious Love" + }, + { + "artist": "Ray Charles", + "position": 32, + "title": "That Lucky Old Sun" + }, + { + "artist": "Neil Sedaka", + "position": 33, + "title": "Bad Girl" + }, + { + "artist": "Sam Cooke", + "position": 34, + "title": "Little Red Rooster" + }, + { + "artist": "Peter, Paul & Mary", + "position": 35, + "title": "Stewball" + }, + { + "artist": "Garnet Mimms & The Enchanters", + "position": 36, + "title": "Baby Don't You Weep" + }, + { + "artist": "Nino Tempo & April Stevens", + "position": 37, + "title": "Whispering" + }, + { + "artist": "The Marketts", + "position": 38, + "title": "Out Of Limits" + }, + { + "artist": "Jerry Butler", + "position": 39, + "title": "Need To Belong" + }, + { + "artist": "The Supremes", + "position": 40, + "title": "When The Lovelight Starts Shining Through His Eyes" + }, + { + "artist": "The Chiffons", + "position": 41, + "title": "I Have A Boyfriend" + }, + { + "artist": "The Tymes", + "position": 42, + "title": "Somewhere" + }, + { + "artist": "Al Martino", + "position": 43, + "title": "Living A Lie" + }, + { + "artist": "Gene Pitney", + "position": 44, + "title": "Twenty Four Hours From Tulsa" + }, + { + "artist": "The Miracles", + "position": 45, + "title": "I Gotta Dance To Keep From Crying" + }, + { + "artist": "The Rip Chords", + "position": 46, + "title": "Hey Little Cobra" + }, + { + "artist": "Jimmy Gilmer And The Fireballs", + "position": 47, + "title": "Sugar Shack" + }, + { + "artist": "The Impressions", + "position": 48, + "title": "It's All Right" + }, + { + "artist": "Dean And Jean", + "position": 49, + "title": "Tra La La La Suzy" + }, + { + "artist": "Sunny & The Sunliners", + "position": 50, + "title": "Rags To Riches" + }, + { + "artist": "The Cookies", + "position": 51, + "title": "Girls Grow Up Faster Than Boys" + }, + { + "artist": "Jimmy Gilmer And The Fireballs", + "position": 52, + "title": "Daisy Petal Pickin'" + }, + { + "artist": "Murry Kellum", + "position": 53, + "title": "Long Tall Texan" + }, + { + "artist": "The Dynamics", + "position": 54, + "title": "Misery" + }, + { + "artist": "Chubby Checker", + "position": 55, + "title": "Hooka Tooka" + }, + { + "artist": "The Chad Mitchell Trio", + "position": 56, + "title": "The Marvelous Toy" + }, + { + "artist": "Little Peggy March", + "position": 57, + "title": "The Impossible Happened" + }, + { + "artist": "The Marvelettes", + "position": 58, + "title": "As Long As I Know He's Mine" + }, + { + "artist": "Rick Nelson", + "position": 59, + "title": "Today's Teardrops" + }, + { + "artist": "Cliff Richard", + "position": 60, + "title": "It's All In The Game" + }, + { + "artist": "Rick Nelson", + "position": 61, + "title": "For You" + }, + { + "artist": "The Kingston Trio", + "position": 62, + "title": "Ally Ally Oxen Free" + }, + { + "artist": "The Ronettes", + "position": 63, + "title": "Baby, I Love You" + }, + { + "artist": "Dionne Warwick", + "position": 64, + "title": "Anyone Who Had A Heart" + }, + { + "artist": "Henry Mancini And His Orchestra", + "position": 65, + "title": "Charade" + }, + { + "artist": "Bobby Darin", + "position": 66, + "title": "Be Mad Little Girl" + }, + { + "artist": "Steve & Eydie", + "position": 67, + "title": "I Can't Stop Talking About You" + }, + { + "artist": "The Raindrops", + "position": 68, + "title": "That Boy John" + }, + { + "artist": "The David Rockingham Trio", + "position": 69, + "title": "Dawn" + }, + { + "artist": "Ginny Arnell", + "position": 70, + "title": "Dumb Head" + }, + { + "artist": "The Orlons", + "position": 71, + "title": "Bon-Doo-Wah" + }, + { + "artist": "Lesley Gore", + "position": 72, + "title": "You Don't Own Me" + }, + { + "artist": "The Baja Marimba Band", + "position": 73, + "title": "Comin' In The Back Door" + }, + { + "artist": "Marty Robbins", + "position": 74, + "title": "Begging To You" + }, + { + "artist": "The Tams", + "position": 75, + "title": "What Kind Of Fool (Do You Think I Am)" + }, + { + "artist": "Jay & The Americans", + "position": 76, + "title": "Come Dance With Me" + }, + { + "artist": "Brooks O'Dell", + "position": 77, + "title": "Watch Your Step" + }, + { + "artist": "Burl Ives", + "position": 78, + "title": "True Love Goes On And On" + }, + { + "artist": "Mary Wells", + "position": 79, + "title": "What's Easy For Two Is So Hard For One" + }, + { + "artist": "Frank Ifield", + "position": 80, + "title": "Please" + }, + { + "artist": "Tony Bennett", + "position": 81, + "title": "The Little Boy" + }, + { + "artist": "Jimmy Velvet", + "position": 82, + "title": "We Belong Together" + }, + { + "artist": "Dale Ward", + "position": 83, + "title": "Letter From Sherry" + }, + { + "artist": "The Girlfriends", + "position": 84, + "title": "My One And Only, Jimmy Boy" + }, + { + "artist": "Connie Francis", + "position": 85, + "title": "In The Summer Of His Years" + }, + { + "artist": "Paul Petersen", + "position": 86, + "title": "The Cheer Leader" + }, + { + "artist": "Gene Thomas", + "position": 87, + "title": "Baby's Gone" + }, + { + "artist": "The Pixies Three", + "position": 88, + "title": "Cold Cold Winter" + }, + { + "artist": "The Brothers Four", + "position": 89, + "title": "Hootenanny Saturday Night" + }, + { + "artist": "Johnny Mathis", + "position": 90, + "title": "I'll Search My Heart" + }, + { + "artist": "Sammy Davis Jr.", + "position": 91, + "title": "The Shelter Of Your Arms" + }, + { + "artist": "Paul Anka", + "position": 92, + "title": "Did You Have A Happy Birthday?" + }, + { + "artist": "Tracey Dey", + "position": 93, + "title": "Here Comes The Boy" + }, + { + "artist": "Bob And Earl", + "position": 94, + "title": "Harlem Shuffle" + }, + { + "artist": "The Crescents Featuring Chiyo", + "position": 95, + "title": "Pink Dominos" + }, + { + "artist": "Barbara Lewis", + "position": 96, + "title": "Snap Your Fingers" + }, + { + "artist": "Bobby Bland", + "position": 97, + "title": "The Feeling Is Gone" + }, + { + "artist": "The Cascades", + "position": 98, + "title": "For Your Sweet Love" + }, + { + "artist": "Bobby Vee", + "position": 99, + "title": "Never Love A Robin" + }, + { + "artist": "The Lettermen", + "position": 100, + "title": "Where Or When" + } + ], + "title": "1963 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Tornadoes", + "position": 1, + "title": "Telstar" + }, + { + "artist": "Chubby Checker", + "position": 2, + "title": "Limbo Rock" + }, + { + "artist": "Marcie Blane", + "position": 3, + "title": "Bobby's Girl" + }, + { + "artist": "Steve Lawrence", + "position": 4, + "title": "Go Away Little Girl" + }, + { + "artist": "The 4 Seasons", + "position": 5, + "title": "Big Girls Don't Cry" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 6, + "title": "Return To Sender" + }, + { + "artist": "Ray Charles", + "position": 7, + "title": "You Are My Sunshine" + }, + { + "artist": "Esther Phillips Little Esther", + "position": 8, + "title": "Release Me" + }, + { + "artist": "Bob B. Soxx And The Blue Jeans", + "position": 9, + "title": "Zip-A-Dee Doo-Dah" + }, + { + "artist": "Brook Benton", + "position": 10, + "title": "Hotel Happiness" + }, + { + "artist": "Lou Monte", + "position": 11, + "title": "Pepino The Italian Mouse" + }, + { + "artist": "Little Eva", + "position": 12, + "title": "Keep Your Hands Off My Baby" + }, + { + "artist": "Nat King Cole", + "position": 13, + "title": "Dear Lonely Hearts" + }, + { + "artist": "The Exciters", + "position": 14, + "title": "Tell Him" + }, + { + "artist": "The Tijuana Brass", + "position": 15, + "title": "The Lonely Bull (El Solo Torro)" + }, + { + "artist": "The Orlons", + "position": 16, + "title": "Don't Hang Up" + }, + { + "artist": "The Cookies", + "position": 17, + "title": "Chains" + }, + { + "artist": "Dion", + "position": 18, + "title": "Love Came To Me" + }, + { + "artist": "Mary Wells", + "position": 19, + "title": "Two Lovers" + }, + { + "artist": "Paul Petersen", + "position": 20, + "title": "My Dad" + }, + { + "artist": "Bobby Vee", + "position": 21, + "title": "The Night Has A Thousand Eyes" + }, + { + "artist": "Marty Robbins", + "position": 22, + "title": "Ruby Ann" + }, + { + "artist": "The 4 Seasons", + "position": 23, + "title": "Santa Claus Is Coming To Town" + }, + { + "artist": "Les Cooper and the Soul Rockers", + "position": 24, + "title": "Wiggle Wobble" + }, + { + "artist": "Dee Dee Sharp", + "position": 25, + "title": "Ride!" + }, + { + "artist": "Johnny Crawford", + "position": 26, + "title": "Rumors" + }, + { + "artist": "The Shirelles", + "position": 27, + "title": "Everybody Loves A Lover" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 28, + "title": "The Little Drummer Boy" + }, + { + "artist": "The Drifters", + "position": 29, + "title": "Up On The Roof" + }, + { + "artist": "Rick Nelson", + "position": 30, + "title": "It's Up To You" + }, + { + "artist": "Bobby Boris Pickett And The Crypt-Kickers", + "position": 31, + "title": "Monsters' Holiday" + }, + { + "artist": "Ray Charles", + "position": 32, + "title": "Your Cheating Heart" + }, + { + "artist": "Duane Eddy and the Rebelettes", + "position": 33, + "title": "(Dance With The) Guitar Man" + }, + { + "artist": "Jerry Wallace", + "position": 34, + "title": "Shutters And Boards" + }, + { + "artist": "The Routers", + "position": 35, + "title": "Let's Go (pony)" + }, + { + "artist": "Mel Torme", + "position": 36, + "title": "Comin' Home Baby" + }, + { + "artist": "Stan Getz/Charlie Byrd", + "position": 37, + "title": "Desafinado" + }, + { + "artist": "Bing Crosby", + "position": 38, + "title": "White Christmas" + }, + { + "artist": "Dickey Lee", + "position": 39, + "title": "I Saw Linda Yesterday" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 40, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Mark Valentino", + "position": 41, + "title": "The Push And Kick" + }, + { + "artist": "Bobby Vinton", + "position": 42, + "title": "Let's Kiss And Make Up" + }, + { + "artist": "Gene Pitney", + "position": 43, + "title": "Half Heaven - Half Heartache" + }, + { + "artist": "LaVern Baker", + "position": 44, + "title": "See See Rider" + }, + { + "artist": "Ray Stevens", + "position": 45, + "title": "Santa Claus Is Watching You" + }, + { + "artist": "Dionne Warwick", + "position": 46, + "title": "Don't Make Me Over" + }, + { + "artist": "The Crystals", + "position": 47, + "title": "He's A Rebel" + }, + { + "artist": "Gene McDaniels", + "position": 48, + "title": "Spanish Lace" + }, + { + "artist": "Bobby Vinton", + "position": 49, + "title": "Trouble Is My Middle Name" + }, + { + "artist": "The Beach Boys", + "position": 50, + "title": "Ten Little Indians" + }, + { + "artist": "Connie Francis", + "position": 51, + "title": "I'm Gonna' Be Warm This Winter" + }, + { + "artist": "Chris Montez", + "position": 52, + "title": "Some Kinda Fun" + }, + { + "artist": "Timi Yuro", + "position": 53, + "title": "The Love Of A Boy" + }, + { + "artist": "Gene Chandler", + "position": 54, + "title": "You Threw A Lucky Punch" + }, + { + "artist": "The Excellents", + "position": 55, + "title": "Coney Island Baby" + }, + { + "artist": "Bobby Helms", + "position": 56, + "title": "Jingle Bell Rock" + }, + { + "artist": "Brenda Lee", + "position": 57, + "title": "All Alone Am I" + }, + { + "artist": "The Earls", + "position": 58, + "title": "Remember Then" + }, + { + "artist": "Brenda Lee", + "position": 59, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Gabriel And The Angels", + "position": 60, + "title": "That's Life (That's Tough)" + }, + { + "artist": "Johnny Thunder", + "position": 61, + "title": "Loop De Loop" + }, + { + "artist": "Jimmie Rodgers", + "position": 62, + "title": "Rainbow At Midnight" + }, + { + "artist": "Tony Bennett", + "position": 63, + "title": "I Left My Heart In San Francisco" + }, + { + "artist": "Frank Sinatra & Sammy Davis Jr.", + "position": 64, + "title": "Me And My Shadow" + }, + { + "artist": "Nat King Cole", + "position": 65, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Ben Colder", + "position": 66, + "title": "Don't Go Near The Eskimos" + }, + { + "artist": "Kitty Kallen", + "position": 67, + "title": "My Coloring Book" + }, + { + "artist": "Lester Flatt, Earl Scruggs & The Foggy Mountain Boys", + "position": 68, + "title": "The Ballad Of Jed Clampett" + }, + { + "artist": "The Miracles", + "position": 69, + "title": "You've Really Got A Hold On Me" + }, + { + "artist": "Brian Hyland", + "position": 70, + "title": "I May Not Live To See Tomorrow" + }, + { + "artist": "The Contours", + "position": 71, + "title": "Shake Sherry" + }, + { + "artist": "The Marvelettes", + "position": 72, + "title": "Strange I Know" + }, + { + "artist": "Frank Ifield", + "position": 73, + "title": "Lovesick Blues" + }, + { + "artist": "Lonnie Russ", + "position": 74, + "title": "My Wife Can't Cook" + }, + { + "artist": "Vince Guaraldi Trio", + "position": 75, + "title": "Cast Your Fate To The Wind" + }, + { + "artist": "Barbara Lynn", + "position": 76, + "title": "You're Gonna Need Me" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 77, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Jimmy Dean", + "position": 78, + "title": "Gonna Raise A Rukus Tonight" + }, + { + "artist": "The Pastel Six", + "position": 79, + "title": "The Cinnamon Cinder (It's A Very Nice Dance)" + }, + { + "artist": "Sandy Stewart", + "position": 80, + "title": "My Coloring Book" + }, + { + "artist": "Del Shannon", + "position": 81, + "title": "Little Town Flirt" + }, + { + "artist": "The Emotions", + "position": 82, + "title": "Echo" + }, + { + "artist": "Ned Miller", + "position": 83, + "title": "From A Jack To A King" + }, + { + "artist": "The Rebels", + "position": 84, + "title": "Wild Weekend" + }, + { + "artist": "Bobby Goldsboro", + "position": 85, + "title": "Molly" + }, + { + "artist": "Floyd Cramer", + "position": 86, + "title": "Java" + }, + { + "artist": "Rick Nelson", + "position": 87, + "title": "I Need You" + }, + { + "artist": "Aretha Franklin", + "position": 88, + "title": "Trouble In Mind" + }, + { + "artist": "The Toy Dolls", + "position": 89, + "title": "Little Tin Soldier" + }, + { + "artist": "Marion Worth", + "position": 90, + "title": "Shake Me I Rattle (Squeeze Me I Cry)" + }, + { + "artist": "Joe Harnell And His Orchestra", + "position": 91, + "title": "Fly Me To The Moon - Bossa Nova" + }, + { + "artist": "The Ventures", + "position": 92, + "title": "The 2,000 Pound Bee (Part 2)" + }, + { + "artist": "The Crystals", + "position": 93, + "title": "He's Sure The Boy I Love" + }, + { + "artist": "Dean Martin & Sammy Davis Jr.", + "position": 94, + "title": "Sam's Song" + }, + { + "artist": "The Cleftones", + "position": 95, + "title": "Lover Come Back To Me" + }, + { + "artist": "Paul and Paula", + "position": 96, + "title": "Hey Paula" + }, + { + "artist": "The Dells", + "position": 97, + "title": "The (Bossa Nova) Bird" + }, + { + "artist": "Mike Clifford", + "position": 98, + "title": "What To Do With Laurie" + }, + { + "artist": "Mahalia Jackson", + "position": 99, + "title": "Silent Night, Holy Night" + }, + { + "artist": "Don Covay", + "position": 100, + "title": "The Popeye Waddle" + } + ], + "title": "1962 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Tokens", + "position": 1, + "title": "The Lion Sleeps Tonight" + }, + { + "artist": "Bobby Vee", + "position": 2, + "title": "Run To Him" + }, + { + "artist": "Chubby Checker", + "position": 3, + "title": "The Twist" + }, + { + "artist": "James Darren", + "position": 4, + "title": "Goodbye Cruel World" + }, + { + "artist": "Leroy Van Dyke", + "position": 5, + "title": "Walk On By" + }, + { + "artist": "Joey Dee & the Starliters", + "position": 6, + "title": "Peppermint Twist - Part I" + }, + { + "artist": "The Marvelettes", + "position": 7, + "title": "Please Mr. Postman" + }, + { + "artist": "Neil Sedaka", + "position": 8, + "title": "Happy Birthday, Sweet Sixteen" + }, + { + "artist": "Sandy Nelson", + "position": 9, + "title": "Let There Be Drums" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 10, + "title": "Can't Help Falling In Love" + }, + { + "artist": "Henry Mancini And His Orchestra", + "position": 11, + "title": "Moon River" + }, + { + "artist": "Linda Scott", + "position": 12, + "title": "I Don't Know Why" + }, + { + "artist": "The Lettermen", + "position": 13, + "title": "When I Fall In Love" + }, + { + "artist": "Ray Charles and his Orchestra", + "position": 14, + "title": "Unchain My Heart" + }, + { + "artist": "Connie Francis", + "position": 15, + "title": "When The Boy In Your Arms (Is The Boy In Your Heart)" + }, + { + "artist": "Jerry Butler", + "position": 16, + "title": "Moon River" + }, + { + "artist": "The Angels", + "position": 17, + "title": "'Til" + }, + { + "artist": "Ferrante & Teicher", + "position": 18, + "title": "Tonight" + }, + { + "artist": "Jimmy Dean", + "position": 19, + "title": "Big Bad John" + }, + { + "artist": "Bing Crosby", + "position": 20, + "title": "White Christmas" + }, + { + "artist": "The Impressions", + "position": 21, + "title": "Gypsy Woman" + }, + { + "artist": "Brook Benton", + "position": 22, + "title": "Revenge" + }, + { + "artist": "The Crystals", + "position": 23, + "title": "There's No Other (Like My Baby)" + }, + { + "artist": "Kenny Dino", + "position": 24, + "title": "Your Ma Said You Cried In Your Sleep Last Night" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 25, + "title": "Rock-A-Hula Baby" + }, + { + "artist": "Barbara George", + "position": 26, + "title": "I Know (You Don't Love Me No More)" + }, + { + "artist": "Bobby Rydell/Chubby Checker", + "position": 27, + "title": "Jingle Bell Rock" + }, + { + "artist": "Brenda Lee", + "position": 28, + "title": "Fool #1" + }, + { + "artist": "Chubby Checker", + "position": 29, + "title": "Let's Twist Again" + }, + { + "artist": "Solomon Burke", + "position": 30, + "title": "Just Out Of Reach (Of My Two Open Arms)" + }, + { + "artist": "Jimmy Elledge", + "position": 31, + "title": "Funny How Time Slips Away" + }, + { + "artist": "The Chantels", + "position": 32, + "title": "Well, I Told You" + }, + { + "artist": "Phil McLean", + "position": 33, + "title": "Small Sad Sam" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 34, + "title": "The Little Drummer Boy" + }, + { + "artist": "Fats Domino", + "position": 35, + "title": "Jambalaya (On The Bayou)" + }, + { + "artist": "Gene Pitney", + "position": 36, + "title": "Town Without Pity" + }, + { + "artist": "The Highwaymen", + "position": 37, + "title": "Cotton Fields" + }, + { + "artist": "The G-Clefs", + "position": 38, + "title": "I Understand (Just How You Feel)" + }, + { + "artist": "James Ray", + "position": 39, + "title": "If You Gotta Make A Fool Of Somebody" + }, + { + "artist": "Pat Boone", + "position": 40, + "title": "Johnny Will" + }, + { + "artist": "Dion", + "position": 41, + "title": "The Wanderer" + }, + { + "artist": "The Highwaymen", + "position": 42, + "title": "The Gypsy Rover" + }, + { + "artist": "Connie Francis", + "position": 43, + "title": "Baby's First Christmas" + }, + { + "artist": "Del Shannon", + "position": 44, + "title": "Hey! Little Girl" + }, + { + "artist": "The Shirelles", + "position": 45, + "title": "Baby It's You" + }, + { + "artist": "Ike & Tina Turner", + "position": 46, + "title": "Poor Fool" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 47, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Vic Dana", + "position": 48, + "title": "Little Altar Boy" + }, + { + "artist": "Bobby Helms", + "position": 49, + "title": "Jingle Bell Rock" + }, + { + "artist": "Gary U.S. Bonds", + "position": 50, + "title": "Dear Lady Twist" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 51, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Burl Ives", + "position": 52, + "title": "A Little Bitty Tear" + }, + { + "artist": "Sims Twins", + "position": 53, + "title": "Soothe Me" + }, + { + "artist": "Dion", + "position": 54, + "title": "The Majestic" + }, + { + "artist": "Dion", + "position": 55, + "title": "Runaround Sue" + }, + { + "artist": "Dinah Washington", + "position": 56, + "title": "September In The Rain" + }, + { + "artist": "Patsy Cline", + "position": 57, + "title": "Crazy" + }, + { + "artist": "Brenda Lee", + "position": 58, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "John D. Loudermilk", + "position": 59, + "title": "Language Of Love" + }, + { + "artist": "Sue Thompson", + "position": 60, + "title": "Norman" + }, + { + "artist": "Bobby Bland", + "position": 61, + "title": "Turn On Your Love Light" + }, + { + "artist": "Glen Campbell", + "position": 62, + "title": "Turn Around, Look At Me" + }, + { + "artist": "Bobby Darin", + "position": 63, + "title": "Irresistible You" + }, + { + "artist": "Frank Sinatra", + "position": 64, + "title": "Pocketful Of Miracles" + }, + { + "artist": "Bill Black's Combo", + "position": 65, + "title": "Twist-Her" + }, + { + "artist": "Lee Dorsey", + "position": 66, + "title": "Do-Re-Mi" + }, + { + "artist": "Si Zentner And His Orchestra", + "position": 67, + "title": "Up A Lazy River" + }, + { + "artist": "Roger Williams", + "position": 68, + "title": "Maria" + }, + { + "artist": "Frank Slay And His Orchestra", + "position": 69, + "title": "Flying Circle" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 70, + "title": "Letter Full Of Tears" + }, + { + "artist": "Linda Scott", + "position": 70, + "title": "It's All Because" + }, + { + "artist": "The Drifters", + "position": 72, + "title": "Room Full Of Tears" + }, + { + "artist": "Johnny Tillotson", + "position": 73, + "title": "Dreamy Eyes" + }, + { + "artist": "Bobby Vee", + "position": 74, + "title": "Walkin' With My Angel" + }, + { + "artist": "Jimmy McCracklin", + "position": 75, + "title": "Just Got To Know" + }, + { + "artist": "Ral Donner", + "position": 76, + "title": "She's Everything (I Wanted You To Be)" + }, + { + "artist": "The Dovells", + "position": 77, + "title": "Bristol Stomp" + }, + { + "artist": "The Showmen", + "position": 78, + "title": "It Will Stand" + }, + { + "artist": "The Marcels", + "position": 79, + "title": "Heartaches" + }, + { + "artist": "Gene McDaniels", + "position": 80, + "title": "Tower Of Strength" + }, + { + "artist": "Chubby Checker", + "position": 81, + "title": "Twistin' U.S.A." + }, + { + "artist": "The Dave Brubeck Quartet", + "position": 82, + "title": "Unsquare Dance" + }, + { + "artist": "Bobby Darin", + "position": 83, + "title": "Multiplication" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 84, + "title": "Alvin's Harmonica" + }, + { + "artist": "Charles Brown", + "position": 85, + "title": "Please Come Home For Christmas" + }, + { + "artist": "Dick Dale and The Del-Tones", + "position": 86, + "title": "Let's Go Trippin'" + }, + { + "artist": "Anthony Newley", + "position": 87, + "title": "Pop Goes The Weasel" + }, + { + "artist": "Danny Peppermint and the Jumping Jacks", + "position": 88, + "title": "The Peppermint Twist" + }, + { + "artist": "Ray Peterson", + "position": 89, + "title": "I Could Have Loved You So Well" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 90, + "title": "Lost Someone" + }, + { + "artist": "Patti Page", + "position": 91, + "title": "Go On Home" + }, + { + "artist": "Ace Cannon", + "position": 92, + "title": "Tuff" + }, + { + "artist": "Sleepy King", + "position": 93, + "title": "Pushin' Your Luck" + }, + { + "artist": "Marty Robbins", + "position": 94, + "title": "I Told The Brook" + }, + { + "artist": "The Corsairs Featuring Jay Bird Uzzell", + "position": 95, + "title": "Smoky Places" + }, + { + "artist": "Troy Shondell", + "position": 96, + "title": "Tears From An Angel" + }, + { + "artist": "Johnny Preston", + "position": 97, + "title": "Free Me" + }, + { + "artist": "The Belmonts", + "position": 98, + "title": "I Need Some One" + }, + { + "artist": "Dickie Goodman", + "position": 99, + "title": "Santa & The Touchables" + }, + { + "artist": "Jimmie Beaumont", + "position": 100, + "title": "Ev'rybody's Cryin'" + } + ], + "title": "1961 - Hot 100" + }, + { + "songs": [ + { + "artist": "Elvis Presley With The Jordanaires", + "position": 1, + "title": "Are You Lonesome To-night?" + }, + { + "artist": "Bert Kaempfert And His Orchestra", + "position": 2, + "title": "Wonderland By Night" + }, + { + "artist": "Floyd Cramer", + "position": 3, + "title": "Last Date" + }, + { + "artist": "Kathy Young with The Innocents", + "position": 4, + "title": "A Thousand Stars" + }, + { + "artist": "Ferrante & Teicher", + "position": 5, + "title": "Exodus" + }, + { + "artist": "Johnny Horton", + "position": 6, + "title": "North To Alaska" + }, + { + "artist": "Connie Francis", + "position": 7, + "title": "Many Tears Ago" + }, + { + "artist": "Johnny Burnette", + "position": 8, + "title": "You're Sixteen" + }, + { + "artist": "Lolita", + "position": 9, + "title": "Sailor (Your Home Is The Sea)" + }, + { + "artist": "Ray Peterson", + "position": 10, + "title": "Corinna, Corinna" + }, + { + "artist": "Jerry Butler", + "position": 11, + "title": "He Will Break Your Heart" + }, + { + "artist": "Dion", + "position": 12, + "title": "Lonely Teenager" + }, + { + "artist": "Rosie And The Originals", + "position": 13, + "title": "Angel Baby" + }, + { + "artist": "Brenda Lee", + "position": 14, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "The Ventures", + "position": 15, + "title": "Perfidia" + }, + { + "artist": "Bobby Vee", + "position": 16, + "title": "Rubber Ball" + }, + { + "artist": "Louis Prima", + "position": 17, + "title": "Wonderland By Night" + }, + { + "artist": "Johnny Tillotson", + "position": 18, + "title": "Poetry In Motion" + }, + { + "artist": "U.S. Bonds", + "position": 19, + "title": "New Orleans" + }, + { + "artist": "The Shirelles", + "position": 20, + "title": "Will You Love Me Tomorrow" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 21, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Fats Domino", + "position": 22, + "title": "My Girl Josephine" + }, + { + "artist": "Bobby Rydell", + "position": 23, + "title": "Sway" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 24, + "title": "The Little Drummer Boy" + }, + { + "artist": "Bill Black's Combo", + "position": 25, + "title": "Blue Tango" + }, + { + "artist": "Bing Crosby", + "position": 26, + "title": "White Christmas" + }, + { + "artist": "Anita Bryant", + "position": 27, + "title": "Wonderland By Night" + }, + { + "artist": "Jackie Wilson", + "position": 28, + "title": "Alone At Last" + }, + { + "artist": "Brook Benton", + "position": 29, + "title": "Fools Rush In (Where Angels Fear To Tread)" + }, + { + "artist": "Maurice Williams & The Zodiacs", + "position": 30, + "title": "Stay" + }, + { + "artist": "Donnie Brooks", + "position": 31, + "title": "Doll House" + }, + { + "artist": "Ray Charles", + "position": 32, + "title": "Ruby" + }, + { + "artist": "Hank Ballard And The Midnighters", + "position": 33, + "title": "Let's Go, Let's Go, Let's Go" + }, + { + "artist": "Sam Cooke", + "position": 34, + "title": "Sad Mood" + }, + { + "artist": "Ferlin Husky", + "position": 35, + "title": "Wings Of A Dove" + }, + { + "artist": "Bobby Helms", + "position": 36, + "title": "Jingle Bell Rock" + }, + { + "artist": "Damita Jo", + "position": 37, + "title": "I'll Save The Last Dance For You" + }, + { + "artist": "Marty Robbins", + "position": 38, + "title": "Ballad Of The Alamo" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 39, + "title": "I Gotta Know" + }, + { + "artist": "Chubby Checker", + "position": 40, + "title": "The Hucklebuck" + }, + { + "artist": "Lawrence Welk And His Orchestra", + "position": 41, + "title": "Last Date" + }, + { + "artist": "Lawrence Welk And His Orchestra", + "position": 42, + "title": "Calcutta" + }, + { + "artist": "Jim Reeves", + "position": 43, + "title": "Am I Losing You" + }, + { + "artist": "The Drifters", + "position": 44, + "title": "Save The Last Dance For Me" + }, + { + "artist": "Bing Crosby", + "position": 45, + "title": "Adeste Fideles (Oh, Come, All Ye Faithful)" + }, + { + "artist": "Frank Sinatra", + "position": 46, + "title": "Ol' Mac Donald" + }, + { + "artist": "The Everly Brothers", + "position": 47, + "title": "Like Strangers" + }, + { + "artist": "The Innocents", + "position": 48, + "title": "Gee Whiz" + }, + { + "artist": "The Chimes", + "position": 49, + "title": "Once In Awhile" + }, + { + "artist": "Frankie Avalon", + "position": 50, + "title": "A Perfect Love" + }, + { + "artist": "Roy Orbison", + "position": 51, + "title": "I'm Hurtin'" + }, + { + "artist": "James Booker", + "position": 52, + "title": "Gonzo" + }, + { + "artist": "The Miracles (featuring Bill Smokey Robinson)", + "position": 53, + "title": "Shop Around" + }, + { + "artist": "Bing Crosby", + "position": 54, + "title": "Silent Night" + }, + { + "artist": "The Drifters", + "position": 55, + "title": "I Count The Tears" + }, + { + "artist": "The Olympics", + "position": 56, + "title": "Dance By The Light Of The Moon" + }, + { + "artist": "Neil Sedaka", + "position": 57, + "title": "Calendar Girl" + }, + { + "artist": "Bobby Darin", + "position": 58, + "title": "Christmas Auld Lang Syne" + }, + { + "artist": "LaVern Baker", + "position": 59, + "title": "Bumble Bee" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 60, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Santo & Johnny", + "position": 61, + "title": "Twistin' Bells" + }, + { + "artist": "The Shells", + "position": 62, + "title": "Baby Oh Baby" + }, + { + "artist": "Ricky Nelson", + "position": 63, + "title": "You Are The Only One" + }, + { + "artist": "Jackie Wilson", + "position": 64, + "title": "Am I The Man" + }, + { + "artist": "Fats Domino", + "position": 65, + "title": "Natural Born Lover" + }, + { + "artist": "The Flamingos", + "position": 66, + "title": "Your Other Love" + }, + { + "artist": "Al Caiola And His Orchestra", + "position": 67, + "title": "The Magnificent Seven" + }, + { + "artist": "Skeeter Davis", + "position": 68, + "title": "My Last Date (With You)" + }, + { + "artist": "Frankie Avalon", + "position": 69, + "title": "The Puppet Song" + }, + { + "artist": "Mantovani & His Orch.", + "position": 70, + "title": "Main Theme from Exodus (Ari's Theme)" + }, + { + "artist": "The Melodeers", + "position": 71, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Hank Ballard And The Midnighters", + "position": 72, + "title": "The Hoochi Coochi Coo" + }, + { + "artist": "The Ramblers", + "position": 73, + "title": "Rambling" + }, + { + "artist": "Adam Wade", + "position": 74, + "title": "Gloria's Theme" + }, + { + "artist": "Johnny Mathis", + "position": 75, + "title": "How To Handle A Woman" + }, + { + "artist": "The Browns featuring Jim Edward Brown", + "position": 76, + "title": "Send Me The Pillow You Dream On" + }, + { + "artist": "Larry Verne", + "position": 77, + "title": "Mister Livingston" + }, + { + "artist": "The Blue Diamonds", + "position": 78, + "title": "Ramona" + }, + { + "artist": "Andy Williams", + "position": 79, + "title": "You Don't Want My Love" + }, + { + "artist": "Bill Doggett", + "position": 80, + "title": "(Let's Do) The Hully Gully Twist" + }, + { + "artist": "Little Willie John", + "position": 81, + "title": "Walk Slow" + }, + { + "artist": "Jerry Murad's Harmonicats", + "position": 82, + "title": "Cherry Pink And Apple Blossom White" + }, + { + "artist": "Joni James", + "position": 83, + "title": "My Last Date (With You)" + }, + { + "artist": "Teresa Brewer", + "position": 84, + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)" + }, + { + "artist": "Jimmy Charles", + "position": 85, + "title": "The Age For Love" + }, + { + "artist": "Marv Johnson", + "position": 86, + "title": "Happy Days" + }, + { + "artist": "Frank Gari", + "position": 87, + "title": "Utopia" + }, + { + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "position": 88, + "title": "Pepe" + }, + { + "artist": "Buddy Knox", + "position": 89, + "title": "Lovey Dovey" + }, + { + "artist": "Ike & Tina Turner", + "position": 90, + "title": "I Idolize You" + }, + { + "artist": "The Viscounts", + "position": 91, + "title": "Wabash Blues" + }, + { + "artist": "Annette With The Afterbeats", + "position": 92, + "title": "Talk To Me Baby" + }, + { + "artist": "Brook Benton", + "position": 93, + "title": "Someday You'll Want Me To Want You" + }, + { + "artist": "Shelby Flint", + "position": 94, + "title": "Angel On My Shoulder" + }, + { + "artist": "Bobby Darin", + "position": 95, + "title": "Child Of God" + }, + { + "artist": "Dinah Washington", + "position": 96, + "title": "We Have Love" + }, + { + "artist": "Perry Como", + "position": 97, + "title": "Make Someone Happy" + }, + { + "artist": "Jerry Wallace", + "position": 98, + "title": "There She Goes" + }, + { + "artist": "Jeanne Black", + "position": 99, + "title": "Oh, How I Miss You Tonight" + }, + { + "artist": "Etta & Harvey", + "position": 100, + "title": "Spoonful" + } + ], + "title": "1960 - Hot 100" + }, + { + "songs": [ + { + "artist": "Guy Mitchell", + "position": 1, + "title": "Heartaches By The Number" + }, + { + "artist": "Frankie Avalon", + "position": 2, + "title": "Why" + }, + { + "artist": "Marty Robbins", + "position": 3, + "title": "El Paso" + }, + { + "artist": "Miss Toni Fisher", + "position": 4, + "title": "The Big Hurt" + }, + { + "artist": "Freddie Cannon", + "position": 5, + "title": "Way Down Yonder In New Orleans" + }, + { + "artist": "Paul Anka", + "position": 6, + "title": "It's Time To Cry" + }, + { + "artist": "Bobby Darin", + "position": 7, + "title": "Mack The Knife" + }, + { + "artist": "Bobby Rydell", + "position": 8, + "title": "We Got Love" + }, + { + "artist": "Connie Francis", + "position": 9, + "title": "Among My Souvenirs" + }, + { + "artist": "Fabian", + "position": 10, + "title": "Hound Dog Man" + }, + { + "artist": "Ernie Fields & Orch.", + "position": 11, + "title": "In The Mood" + }, + { + "artist": "Fabian", + "position": 12, + "title": "This Friendly World" + }, + { + "artist": "Della Reese", + "position": 13, + "title": "Don't You Know" + }, + { + "artist": "The Browns", + "position": 14, + "title": "Scarlet Ribbons (For Her Hair)" + }, + { + "artist": "Brook Benton", + "position": 15, + "title": "So Many Ways" + }, + { + "artist": "Neil Sedaka", + "position": 16, + "title": "Oh! Carol" + }, + { + "artist": "The Fleetwoods", + "position": 17, + "title": "Mr. Blue" + }, + { + "artist": "The Nutty Squirrels", + "position": 18, + "title": "Uh! Oh! Part 2" + }, + { + "artist": "Steve Lawrence", + "position": 19, + "title": "Pretty Blue Eyes" + }, + { + "artist": "Ricky Nelson", + "position": 20, + "title": "I Wanna Be Loved" + }, + { + "artist": "Fats Domino", + "position": 21, + "title": "Be My Guest" + }, + { + "artist": "Johnny Mathis", + "position": 22, + "title": "Misty" + }, + { + "artist": "Santo & Johnny", + "position": 23, + "title": "Tear Drop" + }, + { + "artist": "Johnny Preston", + "position": 24, + "title": "Running Bear" + }, + { + "artist": "Marv Johnson", + "position": 25, + "title": "You Got What It Takes" + }, + { + "artist": "Lloyd Price and His Orchestra", + "position": 26, + "title": "Come Into My Heart" + }, + { + "artist": "Conway Twitty", + "position": 27, + "title": "Danny Boy" + }, + { + "artist": "Bill Black's Combo", + "position": 28, + "title": "Smokie - Part 2" + }, + { + "artist": "Larry Hall", + "position": 29, + "title": "Sandy" + }, + { + "artist": "Johnny And The Hurricanes", + "position": 30, + "title": "Reveille Rock" + }, + { + "artist": "Rocco Granata and the International Quintet", + "position": 31, + "title": "Marina" + }, + { + "artist": "Annette With The Afterbeats", + "position": 32, + "title": "First Name Initial" + }, + { + "artist": "The Drifters", + "position": 33, + "title": "Dance With Me" + }, + { + "artist": "Sammy Turner", + "position": 34, + "title": "Always" + }, + { + "artist": "Jimmy Clanton", + "position": 35, + "title": "Go, Jimmy, Go" + }, + { + "artist": "Connie Francis", + "position": 36, + "title": "God Bless America" + }, + { + "artist": "Bob Beckham", + "position": 37, + "title": "Just As Much As Ever" + }, + { + "artist": "Ricky Nelson", + "position": 38, + "title": "Mighty Good" + }, + { + "artist": "The Drifters", + "position": 39, + "title": "(If You Cry) True Love, True Love" + }, + { + "artist": "Royal Teens", + "position": 40, + "title": "Believe Me" + }, + { + "artist": "Paul Evans and the Curls", + "position": 41, + "title": "(Seven Little Girls) Sitting In The Back Seat" + }, + { + "artist": "Dinah Washington", + "position": 42, + "title": "Unforgettable" + }, + { + "artist": "Paul Anka", + "position": 43, + "title": "Put Your Head On My Shoulder" + }, + { + "artist": "Jackie Wilson", + "position": 44, + "title": "Talk That Talk" + }, + { + "artist": "The Nutty Squirrels", + "position": 45, + "title": "Uh! Oh! Part 1" + }, + { + "artist": "Willy Alberti", + "position": 46, + "title": "Marina" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 47, + "title": "The Little Drummer Boy" + }, + { + "artist": "Wink Martindale", + "position": 48, + "title": "Deck Of Cards" + }, + { + "artist": "Tommy Facenda", + "position": 49, + "title": "High School U.S.A." + }, + { + "artist": "Jerry Wallace With The Jewels", + "position": 50, + "title": "Primrose Lane" + }, + { + "artist": "The Spacemen", + "position": 51, + "title": "The Clouds" + }, + { + "artist": "Della Reese", + "position": 52, + "title": "Not One Minute More" + }, + { + "artist": "The Clovers", + "position": 53, + "title": "Love Potion No. 9" + }, + { + "artist": "Sarah Vaughan", + "position": 54, + "title": "Smooth Operator" + }, + { + "artist": "Ray Charles and his Orchestra", + "position": 55, + "title": "I'm Movin' On" + }, + { + "artist": "Andy Williams", + "position": 56, + "title": "The Village Of St. Bernadette" + }, + { + "artist": "The Crests", + "position": 57, + "title": "A Year Ago Tonight" + }, + { + "artist": "Frank Sinatra", + "position": 58, + "title": "Talk To Me" + }, + { + "artist": "Andy Williams", + "position": 59, + "title": "Lonely Street" + }, + { + "artist": "Lloyd Price and His Orchestra", + "position": 60, + "title": "Wont'cha Come Home" + }, + { + "artist": "Dee Clark", + "position": 61, + "title": "How About That" + }, + { + "artist": "Fireflies", + "position": 62, + "title": "You Were Mine" + }, + { + "artist": "Fats Domino", + "position": 63, + "title": "I've Been Around" + }, + { + "artist": "Ray Peterson", + "position": 64, + "title": "Goodnight My Love (Pleasant Dreams)" + }, + { + "artist": "The Coasters", + "position": 65, + "title": "What About Us" + }, + { + "artist": "Don Costa And His Orchestra And Chorus", + "position": 66, + "title": "I'll Walk The Line" + }, + { + "artist": "Rock-A-Teens", + "position": 67, + "title": "Woo-Hoo" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 68, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Cliff Richard and The Drifters", + "position": 69, + "title": "Living Doll" + }, + { + "artist": "Kitty Kallen", + "position": 70, + "title": "If I Give My Heart To You" + }, + { + "artist": "Pat Boone", + "position": 71, + "title": "Beyond The Sunset" + }, + { + "artist": "Fireballs", + "position": 72, + "title": "Torquay" + }, + { + "artist": "Hugo & Luigi", + "position": 73, + "title": "Just Come Home" + }, + { + "artist": "LaVern Baker", + "position": 74, + "title": "Tiny Tim" + }, + { + "artist": "Mitch Miller", + "position": 75, + "title": "Do-Re-Mi" + }, + { + "artist": "Dancer, Prancer And Nervous", + "position": 76, + "title": "The Happy Reindeer" + }, + { + "artist": "The Revels", + "position": 77, + "title": "Midnight Stroll" + }, + { + "artist": "Tommy Edwards", + "position": 78, + "title": "(New In) The Ways Of Love" + }, + { + "artist": "The Islanders", + "position": 79, + "title": "The Enchanted Sea" + }, + { + "artist": "Tommy Edwards", + "position": 80, + "title": "Honestly And Truly" + }, + { + "artist": "Rod Bernard", + "position": 81, + "title": "One More Chance" + }, + { + "artist": "Tony Bennett", + "position": 82, + "title": "Climb Ev'ry Mountain" + }, + { + "artist": "Titus Turner", + "position": 83, + "title": "We Told You Not To Marry" + }, + { + "artist": "Carl Dobkins, Jr.", + "position": 84, + "title": "Lucky Devil" + }, + { + "artist": "Dorothy Collins", + "position": 85, + "title": "Baciare Baciare (Kissing Kissing)" + }, + { + "artist": "Jane Morgan", + "position": 86, + "title": "Happy Anniversary" + }, + { + "artist": "The Mormon Tabernacle Choir", + "position": 87, + "title": "Battle Hymn Of The Republic" + }, + { + "artist": "The Coasters", + "position": 88, + "title": "Run Red Run" + }, + { + "artist": "The Bluenotes", + "position": 89, + "title": "I Don't Know What It Is" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 90, + "title": "Shimmy, Shimmy, Ko-Ko-Bop" + }, + { + "artist": "Johnny Cash", + "position": 91, + "title": "The Little Drummer Boy" + }, + { + "artist": "Sandy Nelson", + "position": 92, + "title": "Teen Beat" + }, + { + "artist": "Frankie Avalon", + "position": 93, + "title": "Swingin' On A Rainbow" + }, + { + "artist": "Clyde McPhatter", + "position": 94, + "title": "Let's Try Again" + }, + { + "artist": "Bill Haley And His Comets", + "position": 95, + "title": "Joey's Song" + }, + { + "artist": "Brook Benton", + "position": 96, + "title": "This Time Of The Year" + }, + { + "artist": "Bonnie Guitar", + "position": 97, + "title": "Candy Apple Red" + }, + { + "artist": "Rod Lauren", + "position": 98, + "title": "If I Had A Girl" + }, + { + "artist": "Brenda Lee", + "position": 99, + "title": "Sweet Nothin's" + }, + { + "artist": "Mark Dinning", + "position": 100, + "title": "Teen Angel" + } + ], + "title": "1959 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Chipmunks With David Seville", + "position": 1, + "title": "The Chipmunk Song" + }, + { + "artist": "The Platters", + "position": 2, + "title": "Smoke Gets In Your Eyes" + }, + { + "artist": "The Teddy Bears", + "position": 3, + "title": "To Know Him, Is To Love Him" + }, + { + "artist": "The Everly Brothers", + "position": 4, + "title": "Problems" + }, + { + "artist": "The Kingston Trio", + "position": 5, + "title": "Tom Dooley" + }, + { + "artist": "Elvis Presley", + "position": 6, + "title": "One Night" + }, + { + "artist": "The Playmates", + "position": 7, + "title": "Beep Beep" + }, + { + "artist": "Ricky Nelson", + "position": 8, + "title": "Lonesome Town" + }, + { + "artist": "Conway Twitty", + "position": 9, + "title": "It's Only Make Believe" + }, + { + "artist": "Clyde McPhatter", + "position": 10, + "title": "A Lover's Question" + }, + { + "artist": "Elvis Presley", + "position": 11, + "title": "I Got Stung" + }, + { + "artist": "Fats Domino", + "position": 12, + "title": "Whole Lotta Loving" + }, + { + "artist": "Jimmie Rodgers", + "position": 13, + "title": "Bimbombey" + }, + { + "artist": "Billy Grammer", + "position": 14, + "title": "Gotta Travel On" + }, + { + "artist": "Tommy Edwards", + "position": 15, + "title": "Love Is All We Need" + }, + { + "artist": "Bobby Darin", + "position": 16, + "title": "Queen Of The Hop" + }, + { + "artist": "Connie Francis", + "position": 17, + "title": "My Happiness" + }, + { + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "position": 18, + "title": "Cannonball" + }, + { + "artist": "Jackie Wilson", + "position": 19, + "title": "Lonely Teardrops" + }, + { + "artist": "Cozy Cole", + "position": 20, + "title": "Topsy II" + }, + { + "artist": "Frankie Avalon", + "position": 21, + "title": "I'll Wait For You" + }, + { + "artist": "Ricky Nelson", + "position": 22, + "title": "I Got A Feeling" + }, + { + "artist": "The Royaltones", + "position": 23, + "title": "Poor Boy" + }, + { + "artist": "Louis Prima And Keely Smith", + "position": 24, + "title": "That Old Black Magic" + }, + { + "artist": "Big Bopper", + "position": 25, + "title": "Chantilly Lace" + }, + { + "artist": "The Nu Tornados", + "position": 26, + "title": "Philadelphia U.S.A." + }, + { + "artist": "Ritchie Valens", + "position": 27, + "title": "Donna" + }, + { + "artist": "Donnie Owens", + "position": 28, + "title": "Need You" + }, + { + "artist": "Tommy Edwards", + "position": 29, + "title": "It's All In The Game" + }, + { + "artist": "The Four Coins", + "position": 30, + "title": "The World Outside" + }, + { + "artist": "Reg Owen & His Orchestra", + "position": 31, + "title": "Manhattan Spiritual" + }, + { + "artist": "The Crests", + "position": 32, + "title": "16 Candles" + }, + { + "artist": "The Diamonds", + "position": 33, + "title": "Walking Along" + }, + { + "artist": "Earl Grant", + "position": 34, + "title": "The End" + }, + { + "artist": "The Cadillacs", + "position": 35, + "title": "Peek-A-Boo" + }, + { + "artist": "Sam Cooke", + "position": 36, + "title": "Love You Most Of All" + }, + { + "artist": "Paul Anka-Geo. Hamilton IV-Johnny Nash", + "position": 37, + "title": "The Teen Commandments" + }, + { + "artist": "Big Bopper", + "position": 38, + "title": "Big Bopper's Wedding" + }, + { + "artist": "Paul Anka", + "position": 39, + "title": "(All of a Sudden) My Heart Sings" + }, + { + "artist": "Pat Boone", + "position": 40, + "title": "I'll Remember Tonight" + }, + { + "artist": "Neil Sedaka", + "position": 41, + "title": "The Diary" + }, + { + "artist": "Jimmy Clanton", + "position": 42, + "title": "A Letter To An Angel" + }, + { + "artist": "Eddie Cochran", + "position": 43, + "title": "C'mon Everybody" + }, + { + "artist": "Cozy Cole", + "position": 44, + "title": "Turvy II" + }, + { + "artist": "LaVern Baker", + "position": 45, + "title": "I Cried A Tear" + }, + { + "artist": "The Four Lads", + "position": 46, + "title": "The Mocking Bird" + }, + { + "artist": "Jane Morgan", + "position": 47, + "title": "The Day The Rains Came" + }, + { + "artist": "Johnny Mathis", + "position": 48, + "title": "Call Me" + }, + { + "artist": "The Ames Brothers", + "position": 49, + "title": "Pussy Cat" + }, + { + "artist": "Kalin Twins", + "position": 50, + "title": "Forget Me Not" + }, + { + "artist": "The Tommy Dorsey Orchestra", + "position": 51, + "title": "Tea For Two Cha Cha" + }, + { + "artist": "Dee Clark", + "position": 52, + "title": "Nobody But You" + }, + { + "artist": "Augie Rios", + "position": 53, + "title": "??�D??�nde Est??� Santa Claus? (Where Is Santa Claus?)" + }, + { + "artist": "Chuck Berry", + "position": 54, + "title": "Sweet Little Rock And Roller" + }, + { + "artist": "June Valli", + "position": 55, + "title": "The Wedding" + }, + { + "artist": "Bill Parsons", + "position": 56, + "title": "The All American Boy" + }, + { + "artist": "Bobby Helms", + "position": 57, + "title": "Jingle Bell Rock" + }, + { + "artist": "Bernie Lowe Orchestra", + "position": 58, + "title": "Sing Sing Sing" + }, + { + "artist": "Roy Hamilton", + "position": 59, + "title": "Pledging My Love" + }, + { + "artist": "Billy Vaughn And His Orchestra", + "position": 60, + "title": "Cimarron (Roll On)" + }, + { + "artist": "The Four Esquires", + "position": 61, + "title": "Hideaway" + }, + { + "artist": "Johnny Cash And The Tennessee Two", + "position": 62, + "title": "It's Just About Time" + }, + { + "artist": "Dion & The Belmonts", + "position": 63, + "title": "Don't Pity Me" + }, + { + "artist": "The Applejacks", + "position": 64, + "title": "Rocka-Conga" + }, + { + "artist": "Joni James", + "position": 65, + "title": "There Goes My Heart" + }, + { + "artist": "Lloyd Price", + "position": 66, + "title": "Stagger Lee" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 67, + "title": "Try Me" + }, + { + "artist": "Jack Scott", + "position": 68, + "title": "Goodbye Baby" + }, + { + "artist": "The Four Preps", + "position": 69, + "title": "Cinderella" + }, + { + "artist": "Tony Dallara", + "position": 70, + "title": "Come Prima" + }, + { + "artist": "Raymond Lefevre and His Orchestra", + "position": 71, + "title": "The Day The Rains Came" + }, + { + "artist": "Harvey & The Moonglows", + "position": 72, + "title": "Ten Commandments Of Love" + }, + { + "artist": "Chuck Berry", + "position": 73, + "title": "Run Rudolph Run" + }, + { + "artist": "Tab Hunter", + "position": 74, + "title": "Jealous Heart" + }, + { + "artist": "Polly Bergen", + "position": 75, + "title": "Come Prima (Koma Preema)" + }, + { + "artist": "Frank Sinatra", + "position": 76, + "title": "Mr. Success" + }, + { + "artist": "Billy & Lillie", + "position": 77, + "title": "Lucky Ladybug" + }, + { + "artist": "The Everly Brothers", + "position": 78, + "title": "Love Of My Life" + }, + { + "artist": "Chuck Berry", + "position": 79, + "title": "Merry Christmas Baby" + }, + { + "artist": "The Applejacks", + "position": 80, + "title": "Mexican Hat Rock" + }, + { + "artist": "Quaker City Boys", + "position": 81, + "title": "Teasin'" + }, + { + "artist": "Perry Como", + "position": 82, + "title": "Mandolins In The Moonlight" + }, + { + "artist": "Jerry Wallace", + "position": 83, + "title": "Diamond Ring" + }, + { + "artist": "Bobby Helms", + "position": 84, + "title": "The Fool And The Angel" + }, + { + "artist": "Poni-Tails", + "position": 85, + "title": "Seven Minutes In Heaven" + }, + { + "artist": "Bing Crosby", + "position": 86, + "title": "White Christmas" + }, + { + "artist": "Nat King Cole", + "position": 87, + "title": "Non Dimenticar (Don't Forget)" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 88, + "title": "The Little Drummer Boy" + }, + { + "artist": "Enoch Light & The Light Brigade", + "position": 89, + "title": "I Want To Be Happy Cha Cha" + }, + { + "artist": "Bobby Freeman", + "position": 90, + "title": "Need Your Love" + }, + { + "artist": "Bobby Day", + "position": 91, + "title": "Rock-in Robin" + }, + { + "artist": "Johnny Tillotson", + "position": 92, + "title": "Dreamy Eyes" + }, + { + "artist": "Art Lund", + "position": 93, + "title": "Philadelphia U.S.A." + }, + { + "artist": "Chuck Berry", + "position": 94, + "title": "Joe Joe Gunne" + }, + { + "artist": "Ray Charles and his Orchestra", + "position": 95, + "title": "Rockhouse (Part 2)" + }, + { + "artist": "The Accents", + "position": 96, + "title": "Wiggle, Wiggle" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 97, + "title": "So Much" + }, + { + "artist": "The 5 Chanels", + "position": 98, + "title": "The Reason" + }, + { + "artist": "Wade Flemons and the Newcomers", + "position": 99, + "title": "Here I Stand" + }, + { + "artist": "The Olympics", + "position": 100, + "title": "(I Wanna) Dance With The Teacher" + } + ], + "title": "1958 - Hot 100" + } +] \ No newline at end of file diff --git a/docs/herse-songList-export.json b/docs/herse-songList-export.json new file mode 100644 index 0000000..9bc7f92 --- /dev/null +++ b/docs/herse-songList-export.json @@ -0,0 +1,48832 @@ +[ + { + "title": "2025 - Top 50 Songs", + "songs": [ + { + "position": 1, + "title": "Luther", + "artist": "Kendrick Lamar" + }, + { + "position": 2, + "title": "Die With A Smile", + "artist": "Lady Gaga" + }, + { + "position": 3, + "title": "A Bar Song (Tipsy)", + "artist": "Shaboozey" + }, + { + "position": 4, + "title": "Lose Control", + "artist": "Teddy Swims" + }, + { + "position": 5, + "title": "Birds Of A Feather", + "artist": "Billie Eilish" + }, + { + "position": 6, + "title": "Beautiful Things", + "artist": "Benson Boone" + }, + { + "position": 7, + "title": "APT.", + "artist": "ROSE" + }, + { + "position": 8, + "title": "I Had Some Help", + "artist": "Post Malone" + }, + { + "position": 9, + "title": "Pink Pony Club", + "artist": "Chappell Roan" + }, + { + "position": 10, + "title": "I'm The Problem", + "artist": "Morgan Wallen" + }, + { + "position": 11, + "title": "Espresso", + "artist": "Sabrina Carpenter" + }, + { + "position": 12, + "title": "Love Somebody", + "artist": "Morgan Wallen" + }, + { + "position": 13, + "title": "Nokia", + "artist": "Drake" + }, + { + "position": 14, + "title": "That's So True", + "artist": "Gracie Abrams" + }, + { + "position": 15, + "title": "Ordinary", + "artist": "Alex Warren" + }, + { + "position": 16, + "title": "TV Off", + "artist": "Kendrick Lamar" + }, + { + "position": 17, + "title": "30 For 30", + "artist": "SZA" + }, + { + "position": 18, + "title": "Just In Case", + "artist": "Morgan Wallen" + }, + { + "position": 19, + "title": "Timeless", + "artist": "The Weeknd" + }, + { + "position": 20, + "title": "Not Like Us", + "artist": "Kendrick Lamar" + }, + { + "position": 21, + "title": "Messy", + "artist": "Lola Young" + }, + { + "position": 22, + "title": "Anxiety", + "artist": "Doechii" + }, + { + "position": 23, + "title": "Squabble Up", + "artist": "Kendrick Lamar" + }, + { + "position": 24, + "title": "Mutt", + "artist": "Leon Thomas" + }, + { + "position": 25, + "title": "Taste", + "artist": "Sabrina Carpenter" + }, + { + "position": 26, + "title": "All The Way", + "artist": "BigXthaPlug" + }, + { + "position": 27, + "title": "Sports Car", + "artist": "Tate McRae" + }, + { + "position": 28, + "title": "Stargazing", + "artist": "Myles Smith" + }, + { + "position": 29, + "title": "What I Want", + "artist": "Morgan Wallen" + }, + { + "position": 30, + "title": "Blue Strips", + "artist": "Jessie Murph" + }, + { + "position": 31, + "title": "Abracadabra", + "artist": "Lady Gaga" + }, + { + "position": 32, + "title": "Too Sweet", + "artist": "Hozier" + }, + { + "position": 33, + "title": "Good Luck, Babe!", + "artist": "Chappell Roan" + }, + { + "position": 34, + "title": "Sorry I'm Here For Someone Else", + "artist": "Benson Boone" + }, + { + "position": 35, + "title": "Worst Way", + "artist": "Riley Green" + }, + { + "position": 36, + "title": "DTMF", + "artist": "Bad Bunny" + }, + { + "position": 37, + "title": "No One Noticed", + "artist": "The Marias" + }, + { + "position": 38, + "title": "I Got Better", + "artist": "Morgan Wallen" + }, + { + "position": 39, + "title": "I Ain't Coming Back", + "artist": "Morgan Wallen" + }, + { + "position": 40, + "title": "Manchild", + "artist": "Sabrina Carpenter" + }, + { + "position": 41, + "title": "Love Me Not", + "artist": "Ravyn Lenae" + }, + { + "position": 42, + "title": "Sailor Song", + "artist": "Gigi Perez" + }, + { + "position": 43, + "title": "Denial Is A River", + "artist": "Doechii" + }, + { + "position": 44, + "title": "I Never Lie", + "artist": "Zach Top" + }, + { + "position": 45, + "title": "Weren't For The Wind", + "artist": "Ella Langley" + }, + { + "position": 46, + "title": "Smile", + "artist": "Morgan Wallen" + }, + { + "position": 47, + "title": "Baile Inolvidable", + "artist": "Bad Bunny" + }, + { + "position": 48, + "title": "Mystical Magical", + "artist": "Benson Boone" + }, + { + "position": 49, + "title": "Good News", + "artist": "Shaboozey" + }, + { + "position": 50, + "title": "Bed Chem", + "artist": "Sabrina Carpenter" + } + ] + }, + { + "title": "2024 - Top 50 Songs", + "songs": [ + { + "position": 1, + "title": "Lose Control", + "artist": "Teddy Swims" + }, + { + "position": 2, + "title": "Beautiful Things", + "artist": "Benson Boone" + }, + { + "position": 3, + "title": "A Bar Song (Tipsy)", + "artist": "Shaboozey" + }, + { + "position": 4, + "title": "Espresso", + "artist": "Sabrina Carpenter" + }, + { + "position": 5, + "title": "Too Sweet", + "artist": "Hozier" + }, + { + "position": 6, + "title": "I Had Some Help", + "artist": "Post Malone" + }, + { + "position": 7, + "title": "Birds Of A Feather", + "artist": "Billie Eilish" + }, + { + "position": 8, + "title": "Not Like Us", + "artist": "Kendrick Lamar" + }, + { + "position": 9, + "title": "Million Dollar Baby", + "artist": "Tommy Richman" + }, + { + "position": 10, + "title": "I Remember Everything", + "artist": "Zach Bryan" + }, + { + "position": 11, + "title": "Lovin On Me", + "artist": "Jack Harlow" + }, + { + "position": 12, + "title": "Good Luck, Babe!", + "artist": "Chappell Roan" + }, + { + "position": 13, + "title": "Stick Season", + "artist": "Noah Kahan" + }, + { + "position": 14, + "title": "Saturn", + "artist": "SZA" + }, + { + "position": 15, + "title": "Please Please Please", + "artist": "Sabrina Carpenter" + }, + { + "position": 16, + "title": "Like That", + "artist": "Future, Metro Boomin & Kendrick Lamar" + }, + { + "position": 17, + "title": "Greedy", + "artist": "Tate McRae" + }, + { + "position": 18, + "title": "Cowgirls", + "artist": "Morgan Wallen" + }, + { + "position": 19, + "title": "Die With A Smile", + "artist": "Lady Gaga" + }, + { + "position": 20, + "title": "Cruel Summer [re-release]", + "artist": "Taylor Swift" + }, + { + "position": 21, + "title": "Miles On It", + "artist": "Marshmello" + }, + { + "position": 22, + "title": "Pink Skies", + "artist": "Zach Bryan" + }, + { + "position": 23, + "title": "Austin", + "artist": "Dasha" + }, + { + "position": 24, + "title": "Agora Hills", + "artist": "Doja Cat" + }, + { + "position": 25, + "title": "We Can't Be Friends (Wait For Your Love)", + "artist": "Ariana Grande" + }, + { + "position": 26, + "title": "Ain't No Love In Oklahoma", + "artist": "Luke Combs" + }, + { + "position": 27, + "title": "Lies Lies Lies", + "artist": "Morgan Wallen" + }, + { + "position": 28, + "title": "Taste", + "artist": "Sabrina Carpenter" + }, + { + "position": 29, + "title": "Snooze", + "artist": "SZA" + }, + { + "position": 30, + "title": "Hot To Go!", + "artist": "Chappell Roan" + }, + { + "position": 31, + "title": "Feather", + "artist": "Sabrina Carpenter" + }, + { + "position": 32, + "title": "Fortnight", + "artist": "Taylor Swift" + }, + { + "position": 33, + "title": "Water", + "artist": "Tyla" + }, + { + "position": 34, + "title": "I Am Not Okay", + "artist": "Jelly Roll" + }, + { + "position": 35, + "title": "Fast Car", + "artist": "Luke Combs" + }, + { + "position": 36, + "title": "Texas Hold 'Em", + "artist": "Beyonce" + }, + { + "position": 37, + "title": "I Can Do It With A Broken Heart", + "artist": "Taylor Swift" + }, + { + "position": 38, + "title": "Redrum", + "artist": "21 Savage" + }, + { + "position": 39, + "title": "Last Night", + "artist": "Morgan Wallen" + }, + { + "position": 40, + "title": "Wanna Be", + "artist": "GloRilla" + }, + { + "position": 41, + "title": "Paint The Town Red", + "artist": "Doja Cat" + }, + { + "position": 42, + "title": "Houdini", + "artist": "Eminem" + }, + { + "position": 43, + "title": "Carnival", + "artist": "Kanye West and Ty Dolla $ign" + }, + { + "position": 44, + "title": "Thinkin' Bout Me", + "artist": "Morgan Wallen" + }, + { + "position": 45, + "title": "Pour Me A Drink", + "artist": "Post Malone" + }, + { + "position": 46, + "title": "Is It Over Now? (Taylor's Version)", + "artist": "Taylor Swift" + }, + { + "position": 47, + "title": "Timeless", + "artist": "The Weeknd" + }, + { + "position": 48, + "title": "Never Lose Me", + "artist": "Flo Milli" + }, + { + "position": 49, + "title": "Who", + "artist": "Jimin" + }, + { + "position": 50, + "title": "End Of Beginning", + "artist": "Djo" + } + ] + }, + { + "title": "2023 - Top 50 Songs", + "songs": [ + { + "position": 1, + "title": "Last Night", + "artist": "Morgan Wallen" + }, + { + "position": 2, + "title": "Flowers", + "artist": "Miley Cyrus" + }, + { + "position": 3, + "title": "Kill Bill", + "artist": "SZA" + }, + { + "position": 4, + "title": "Anti-Hero", + "artist": "Taylor Swift" + }, + { + "position": 5, + "title": "Creepin'", + "artist": "Metro Boomin, The Weeknd & 21 Savage" + }, + { + "position": 6, + "title": "Calm Down", + "artist": "Rema" + }, + { + "position": 7, + "title": "Snooze", + "artist": "SZA" + }, + { + "position": 8, + "title": "Fast Car", + "artist": "Luke Combs" + }, + { + "position": 9, + "title": "Die For You [re-release]", + "artist": "The Weeknd" + }, + { + "position": 10, + "title": "Thinkin' Bout Me", + "artist": "Morgan Wallen" + }, + { + "position": 11, + "title": "Cruel Summer [re-release]", + "artist": "Taylor Swift" + }, + { + "position": 12, + "title": "You Proof", + "artist": "Morgan Wallen" + }, + { + "position": 13, + "title": "Fukumean", + "artist": "Gunna" + }, + { + "position": 14, + "title": "I'm Good (Blue)", + "artist": "David Guetta" + }, + { + "position": 15, + "title": "Something In The Orange", + "artist": "Zach Bryan" + }, + { + "position": 16, + "title": "Paint The Town Red", + "artist": "Doja Cat" + }, + { + "position": 17, + "title": "All My Life", + "artist": "Lil Durk" + }, + { + "position": 18, + "title": "Vampire", + "artist": "Olivia Rodrigo" + }, + { + "position": 19, + "title": "Favorite Song", + "artist": "Toosii" + }, + { + "position": 20, + "title": "Rock And A Hard Place", + "artist": "Bailey Zimmerman" + }, + { + "position": 21, + "title": "Sure Thing [re-release]", + "artist": "Miguel" + }, + { + "position": 22, + "title": "Need A Favor", + "artist": "Jelly Roll" + }, + { + "position": 23, + "title": "Dance The Night", + "artist": "Dua Lipa" + }, + { + "position": 24, + "title": "As It Was", + "artist": "Harry Styles" + }, + { + "position": 25, + "title": "Boy's A Liar, Pt. 2", + "artist": "PinkPantheress" + }, + { + "position": 26, + "title": "Thought You Should Know", + "artist": "Morgan Wallen" + }, + { + "position": 27, + "title": "Ella Baila Sola", + "artist": "Eslabon Armado" + }, + { + "position": 28, + "title": "Unholy", + "artist": "Sam Smith" + }, + { + "position": 29, + "title": "I Remember Everything", + "artist": "Zach Bryan" + }, + { + "position": 30, + "title": "Karma", + "artist": "Taylor Swift" + }, + { + "position": 31, + "title": "Under The Influence", + "artist": "Chris Brown" + }, + { + "position": 32, + "title": "Barbie World", + "artist": "Nicki Minaj and Ice Spice" + }, + { + "position": 33, + "title": "Thank God", + "artist": "Kane Brown" + }, + { + "position": 34, + "title": "Players", + "artist": "Coi Leray" + }, + { + "position": 35, + "title": "Just Wanna Rock", + "artist": "Lil Uzi Vert" + }, + { + "position": 36, + "title": "La Bebe", + "artist": "Yng Lvcas" + }, + { + "position": 37, + "title": "Religiously", + "artist": "Bailey Zimmerman" + }, + { + "position": 38, + "title": "Rich Flex", + "artist": "Drake" + }, + { + "position": 39, + "title": "Search & Rescue", + "artist": "Drake" + }, + { + "position": 40, + "title": "Cuff It", + "artist": "Beyonce" + }, + { + "position": 41, + "title": "Greedy", + "artist": "Tate McRae" + }, + { + "position": 42, + "title": "Cupid", + "artist": "Fifty Fifty" + }, + { + "position": 43, + "title": "Un x100to", + "artist": "Grupo Frontera" + }, + { + "position": 44, + "title": "Lavender Haze", + "artist": "Taylor Swift" + }, + { + "position": 45, + "title": "What Was I Made For?", + "artist": "Billie Eilish" + }, + { + "position": 46, + "title": "Escapism", + "artist": "RAYE" + }, + { + "position": 47, + "title": "One Thing At A Time", + "artist": "Morgan Wallen" + }, + { + "position": 48, + "title": "Chemical", + "artist": "Post Malone" + }, + { + "position": 49, + "title": "Used To Be Young", + "artist": "Miley Cyrus" + }, + { + "position": 50, + "title": "Superhero (Heroes & Villains)", + "artist": "Metro Boomin, Future & Chris Brown" + } + ] + }, + { + "title": "2022 - Top 50 Songs", + "songs": [ + { + "position": 1, + "title": "Heat Waves", + "artist": "Glass Animals" + }, + { + "position": 2, + "title": "As It Was", + "artist": "Harry Styles" + }, + { + "position": 3, + "title": "Stay", + "artist": "The Kid LAROI" + }, + { + "position": 4, + "title": "Ghost", + "artist": "Justin Bieber" + }, + { + "position": 5, + "title": "Big Energy", + "artist": "Latto" + }, + { + "position": 6, + "title": "Wait For U", + "artist": "Future" + }, + { + "position": 7, + "title": "About Damn Time", + "artist": "Lizzo" + }, + { + "position": 8, + "title": "Shivers", + "artist": "Ed Sheeran" + }, + { + "position": 9, + "title": "First Class", + "artist": "Jack Harlow" + }, + { + "position": 10, + "title": "Super Gremlin", + "artist": "Kodak Black" + }, + { + "position": 11, + "title": "Wasted On You", + "artist": "Morgan Wallen" + }, + { + "position": 12, + "title": "Cold Heart (PNAU Remix)", + "artist": "Elton John" + }, + { + "position": 13, + "title": "Bad Habits", + "artist": "Ed Sheeran" + }, + { + "position": 14, + "title": "I Like You (A Happier Song)", + "artist": "Post Malone" + }, + { + "position": 15, + "title": "Bad Habit", + "artist": "Steve Lacy" + }, + { + "position": 16, + "title": "Titi Me Pregunto", + "artist": "Bad Bunny" + }, + { + "position": 17, + "title": "Me Porto Bonito", + "artist": "Bad Bunny" + }, + { + "position": 18, + "title": "You Proof", + "artist": "Morgan Wallen" + }, + { + "position": 19, + "title": "That's What I Want", + "artist": "Lil Nas X" + }, + { + "position": 20, + "title": "Late Night Talking", + "artist": "Harry Styles" + }, + { + "position": 21, + "title": "Enemy", + "artist": "Imagine Dragons X JID" + }, + { + "position": 22, + "title": "Easy On Me", + "artist": "Adele" + }, + { + "position": 23, + "title": "Sunroof", + "artist": "Nicky Youre" + }, + { + "position": 24, + "title": "abcdefu", + "artist": "GAYLE" + }, + { + "position": 25, + "title": "Running Up That Hill [re-release]", + "artist": "Kate Bush" + }, + { + "position": 26, + "title": "Woman", + "artist": "Doja Cat" + }, + { + "position": 27, + "title": "We Don't Talk About Bruno", + "artist": "Carolina Gaitan, Mauro Castillo, Adassa, Rhenzy Feliz, Diane Guerrero, Stephanie Beatriz" + }, + { + "position": 28, + "title": "Jimmy Cooks", + "artist": "Drake" + }, + { + "position": 29, + "title": "The Kind Of Love We Make", + "artist": "Luke Combs" + }, + { + "position": 30, + "title": "Need To Know", + "artist": "Doja Cat" + }, + { + "position": 31, + "title": "I Ain't Worried", + "artist": "OneRepublic" + }, + { + "position": 32, + "title": "Industry Baby", + "artist": "Lil Nas X" + }, + { + "position": 33, + "title": "Super Freaky Girl", + "artist": "Nicki Minaj" + }, + { + "position": 34, + "title": "Vegas", + "artist": "Doja Cat" + }, + { + "position": 35, + "title": "Unholy", + "artist": "Sam Smith" + }, + { + "position": 36, + "title": "Break My Soul", + "artist": "Beyonce" + }, + { + "position": 37, + "title": "Moscow Mule", + "artist": "Bad Bunny" + }, + { + "position": 38, + "title": "Levitating", + "artist": "Dua Lipa" + }, + { + "position": 39, + "title": "Save Your Tears", + "artist": "The Weeknd" + }, + { + "position": 40, + "title": "Something In The Orange", + "artist": "Zach Bryan" + }, + { + "position": 41, + "title": "One Right Now", + "artist": "Post Malone" + }, + { + "position": 42, + "title": "She Had Me At Heads Carolina", + "artist": "Cole Swindell" + }, + { + "position": 43, + "title": "Glimpse Of Us", + "artist": "Joji" + }, + { + "position": 44, + "title": "Pushin P", + "artist": "Gunna and Future" + }, + { + "position": 45, + "title": "I'm Good (Blue)", + "artist": "David Guetta" + }, + { + "position": 46, + "title": "Hrs And Hrs", + "artist": "Muni Long" + }, + { + "position": 47, + "title": "Numb Little Bug", + "artist": "Em Beihold" + }, + { + "position": 48, + "title": "Good 4 U", + "artist": "Olivia Rodrigo" + }, + { + "position": 49, + "title": "Surface Pressure", + "artist": "Jessica Darrow" + }, + { + "position": 50, + "title": "Anti-Hero", + "artist": "Taylor Swift" + } + ] + }, + { + "songs": [ + { + "artist": "Steve Lacy", + "position": 1, + "title": "Bad Habit" + }, + { + "artist": "Nicky Youre & dazy", + "position": 2, + "title": "Sunroof" + }, + { + "artist": "Kate Bush", + "position": 3, + "title": "Running Up That Hill (A Deal With God)" + }, + { + "artist": "Zach Bryan", + "position": 4, + "title": "Something In The Orange" + }, + { + "artist": "Jelly Roll", + "position": 5, + "title": "Son Of A Sinner" + }, + { + "artist": "Imagine Dragons", + "position": 6, + "title": "Bones" + }, + { + "artist": "Imagine Dragons X JID", + "position": 7, + "title": "Enemy" + }, + { + "artist": "Stephen Sanchez", + "position": 8, + "title": "Until I Found You" + }, + { + "artist": "d4vd", + "position": 9, + "title": "Romantic Homicide" + }, + { + "artist": "GAYLE", + "position": 10, + "title": "abcdefu" + }, + { + "artist": "Steve Lacy", + "position": 11, + "title": "Static" + }, + { + "artist": "Zach Bryan", + "position": 12, + "title": "Oklahoma Smoke Show" + }, + { + "artist": "Foo Fighters", + "position": 13, + "title": "Everlong" + }, + { + "artist": "AJR", + "position": 14, + "title": "World's Smallest Violin" + }, + { + "artist": "Gorillaz Featuring Tame Impala & Bootie Brown", + "position": 15, + "title": "New Gold" + }, + { + "artist": "Cafune", + "position": 16, + "title": "Tek It" + }, + { + "artist": "Metallica", + "position": 17, + "title": "Master Of Puppets" + }, + { + "artist": "Koe Wetzel", + "position": 18, + "title": "Creeps" + }, + { + "artist": "Beach Weather", + "position": 19, + "title": "Sex, Drugs, Etc." + }, + { + "artist": "Noah Kahan", + "position": 20, + "title": "Stick Season" + }, + { + "artist": "Foo Fighters", + "position": 21, + "title": "My Hero" + }, + { + "artist": "Demi Lovato", + "position": 22, + "title": "29" + }, + { + "artist": "Elvis Presley", + "position": 23, + "title": "Suspicious Minds" + }, + { + "artist": "Pierce The Veil", + "position": 24, + "title": "Pass The Nirvana" + }, + { + "artist": "TALK", + "position": 25, + "title": "Run Away To Mars" + }, + { + "artist": "Billie Eilish", + "position": 26, + "title": "TV" + }, + { + "artist": "The 1975", + "position": 27, + "title": "I'm In Love With You" + }, + { + "artist": "Maneskin", + "position": 28, + "title": "Supermodel" + }, + { + "artist": "Imagine Dragons", + "position": 29, + "title": "Sharks" + }, + { + "artist": "Nessa Barrett", + "position": 30, + "title": "Die First" + }, + { + "artist": "Zach Williams", + "position": 31, + "title": "Heart Of God" + }, + { + "artist": "Billie Eilish", + "position": 32, + "title": "The 30th" + }, + { + "artist": "Falling In Reverse", + "position": 33, + "title": "Voices In My Head" + }, + { + "artist": "Gorillaz Featuring Thundercat", + "position": 34, + "title": "Cracker Island" + }, + { + "artist": "CORPSE, Scarlxrd & Kordhell", + "position": 35, + "title": "Misa Misa!" + }, + { + "artist": "Rex Orange County", + "position": 36, + "title": "Amazing" + }, + { + "artist": "Arctic Monkeys", + "position": 37, + "title": "There'd Better Be A Mirrorball" + }, + { + "artist": "Zach Bryan", + "position": 38, + "title": "Sun To Me" + }, + { + "artist": "Zach Bryan", + "position": 39, + "title": "Heavy Eyes" + }, + { + "artist": "Steve Lacy", + "position": 40, + "title": "Mercury" + }, + { + "artist": "Steve Lacy Featuring Foushee", + "position": 41, + "title": "Sunshine" + }, + { + "artist": "Shinedown", + "position": 42, + "title": "Daylight" + }, + { + "artist": "The Killers", + "position": 43, + "title": "Boy" + }, + { + "artist": "Suki Waterhouse", + "position": 44, + "title": "Good Looking" + }, + { + "artist": "Panic! At The Disco", + "position": 45, + "title": "Don't Let The Light Go Out" + }, + { + "artist": "Rex Orange County", + "position": 46, + "title": "The Shade" + }, + { + "artist": "Steve Lacy", + "position": 47, + "title": "Helmet" + }, + { + "artist": "Disturbed", + "position": 48, + "title": "Hey You" + }, + { + "artist": "AJR", + "position": 49, + "title": "I Won't" + }, + { + "artist": "Vance Joy", + "position": 50, + "title": "Clarity" + } + ], + "title": "2022 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Steve Lacy", + "position": 1, + "title": "Bad Habit" + }, + { + "artist": "Lizzo", + "position": 2, + "title": "About Damn Time" + }, + { + "artist": "Nicki Minaj", + "position": 3, + "title": "Super Freaky Girl" + }, + { + "artist": "Future Featuring Drake & Tems", + "position": 4, + "title": "Wait For U" + }, + { + "artist": "Beyonce", + "position": 5, + "title": "Break My Soul" + }, + { + "artist": "Jack Harlow", + "position": 6, + "title": "First Class" + }, + { + "artist": "Drake Featuring 21 Savage", + "position": 7, + "title": "Jimmy Cooks" + }, + { + "artist": "Lil Baby", + "position": 8, + "title": "Detox" + }, + { + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "position": 9, + "title": "Staying Alive" + }, + { + "artist": "Lil Baby", + "position": 10, + "title": "In A Minute" + }, + { + "artist": "Yeat", + "position": 11, + "title": "Talk" + }, + { + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "position": 12, + "title": "God Did" + }, + { + "artist": "Nardo Wick", + "position": 13, + "title": "Dah Dah DahDah" + }, + { + "artist": "Chris Brown", + "position": 14, + "title": "Under The Influence" + }, + { + "artist": "The Weeknd", + "position": 15, + "title": "Die For You" + }, + { + "artist": "Cardi B, Ye & Lil Durk", + "position": 16, + "title": "Hot Shit" + }, + { + "artist": "Tems", + "position": 17, + "title": "Free Mind" + }, + { + "artist": "SleazyWorld Go Featuring Lil Baby", + "position": 18, + "title": "Sleazy Flow" + }, + { + "artist": "Hitkidd & GloRilla", + "position": 19, + "title": "F.N.F. (Let's Go)" + }, + { + "artist": "Lil Tjay", + "position": 20, + "title": "Beat The Odds" + }, + { + "artist": "Drake", + "position": 21, + "title": "Sticky" + }, + { + "artist": "DJ Khaled Featuring Future & SZA", + "position": 22, + "title": "Beautiful" + }, + { + "artist": "Rod Wave", + "position": 23, + "title": "Alone" + }, + { + "artist": "Brent Faiyaz", + "position": 24, + "title": "All Mine" + }, + { + "artist": "Future", + "position": 25, + "title": "Puffin On Zootiez" + }, + { + "artist": "Quavo & Takeoff", + "position": 26, + "title": "Hotel Lobby (Unc And Phew)" + }, + { + "artist": "Steve Lacy", + "position": 27, + "title": "Static" + }, + { + "artist": "Armani White", + "position": 28, + "title": "Billie Eilish." + }, + { + "artist": "Beyonce", + "position": 29, + "title": "Alien Superstar" + }, + { + "artist": "DJ Khaled Featuring Future & Lil Baby", + "position": 30, + "title": "Big Time" + }, + { + "artist": "Beyonce", + "position": 31, + "title": "Cuff It" + }, + { + "artist": "Post Malone Featuring Roddy Ricch", + "position": 32, + "title": "Cooped Up" + }, + { + "artist": "City Girls & Usher", + "position": 33, + "title": "Good Love" + }, + { + "artist": "Ice Spice", + "position": 34, + "title": "Munch (Feelin' U)" + }, + { + "artist": "Diddy & Bryson Tiller", + "position": 35, + "title": "Gotta Move On" + }, + { + "artist": "DJ Khaled Featuring Juice WRLD", + "position": 36, + "title": "Juice WRLD Did" + }, + { + "artist": "GloRilla", + "position": 37, + "title": "Blessed" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 38, + "title": "Vette Motors" + }, + { + "artist": "Finesse2Tymes", + "position": 39, + "title": "Back End" + }, + { + "artist": "NAV, Travis Scott & Lil Baby", + "position": 40, + "title": "Never Sleep" + }, + { + "artist": "Moneybagg Yo", + "position": 41, + "title": "See Wat I'm Sayin" + }, + { + "artist": "Kendrick Lamar, Blxst & Amanda Reifer", + "position": 42, + "title": "Die Hard" + }, + { + "artist": "Pharrell Williams Featuring 21 Savage & Tyler, The Creator", + "position": 43, + "title": "Cash In Cash Out" + }, + { + "artist": "YG", + "position": 44, + "title": "Toxic" + }, + { + "artist": "Beyonce", + "position": 45, + "title": "Church Girl" + }, + { + "artist": "Rod Wave", + "position": 46, + "title": "Sweet Little Lies" + }, + { + "artist": "Chris Brown Featuring WizKid", + "position": 47, + "title": "Call Me Everyday" + }, + { + "artist": "Future", + "position": 48, + "title": "Love You Better" + }, + { + "artist": "Lil Baby, 42 Dugg & Veeze", + "position": 49, + "title": "U-Digg" + }, + { + "artist": "Rod Wave Featuring Jack Harlow", + "position": 50, + "title": "Yungen" + } + ], + "title": "2022 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Nicky Youre & dazy", + "position": 1, + "title": "Sunroof" + }, + { + "artist": "Harry Styles", + "position": 2, + "title": "Late Night Talking" + }, + { + "artist": "Harry Styles", + "position": 3, + "title": "As It Was" + }, + { + "artist": "Lizzo", + "position": 4, + "title": "About Damn Time" + }, + { + "artist": "Post Malone Featuring Doja Cat", + "position": 5, + "title": "I Like You (A Happier Song)" + }, + { + "artist": "Kate Bush", + "position": 6, + "title": "Running Up That Hill (A Deal With God)" + }, + { + "artist": "Doja Cat", + "position": 7, + "title": "Vegas" + }, + { + "artist": "OneRepublic", + "position": 8, + "title": "I Ain't Worried" + }, + { + "artist": "Steve Lacy", + "position": 9, + "title": "Bad Habit" + }, + { + "artist": "Jack Harlow", + "position": 10, + "title": "First Class" + }, + { + "artist": "Halsey", + "position": 11, + "title": "So Good" + }, + { + "artist": "Marshmello & Khalid", + "position": 12, + "title": "Numb" + }, + { + "artist": "Joji", + "position": 13, + "title": "Glimpse Of Us" + }, + { + "artist": "Charlie Puth Featuring Jung Kook", + "position": 14, + "title": "Left And Right" + }, + { + "artist": "Yung Gravy", + "position": 15, + "title": "Betty (Get Money)" + }, + { + "artist": "Lizzo", + "position": 16, + "title": "2 Be Loved (Am I Ready)" + }, + { + "artist": "Elton John & Britney Spears", + "position": 17, + "title": "Hold Me Closer" + }, + { + "artist": "Black Eyed Peas, Shakira + David Guetta", + "position": 18, + "title": "Don't You Worry" + }, + { + "artist": "Beyonce", + "position": 19, + "title": "Break My Soul" + }, + { + "artist": "Harry Styles", + "position": 20, + "title": "Music For A Sushi Restaurant" + }, + { + "artist": "Nicki Minaj", + "position": 21, + "title": "Super Freaky Girl" + }, + { + "artist": "Future Featuring Drake & Tems", + "position": 22, + "title": "Wait For U" + }, + { + "artist": "Jax", + "position": 23, + "title": "Victoria’s Secret" + }, + { + "artist": "Imagine Dragons", + "position": 24, + "title": "Bones" + }, + { + "artist": "Kane Brown", + "position": 25, + "title": "Grand" + }, + { + "artist": "Morgan Wallen", + "position": 26, + "title": "Wasted On You" + }, + { + "artist": "benny blanco, BTS & Snoop Dogg", + "position": 27, + "title": "Bad Decisions" + }, + { + "artist": "Sia", + "position": 28, + "title": "Unstoppable" + }, + { + "artist": "Stephen Sanchez", + "position": 29, + "title": "Until I Found You" + }, + { + "artist": "Pitbull + Zac Brown", + "position": 30, + "title": "Can't Stop Us Now" + }, + { + "artist": "The Weeknd", + "position": 31, + "title": "Die For You" + }, + { + "artist": "Rosa Linn", + "position": 32, + "title": "Snap" + }, + { + "artist": "Ellie Goulding Featuring Big Sean", + "position": 33, + "title": "Easy Lover" + }, + { + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "position": 34, + "title": "Staying Alive" + }, + { + "artist": "Kx5 Featuring Hayla", + "position": 35, + "title": "Escape" + }, + { + "artist": "BLACKPINK", + "position": 36, + "title": "Pink Venom" + }, + { + "artist": "Macklemore Featuring Windser", + "position": 37, + "title": "Maniac" + }, + { + "artist": "Louis Tomlinson", + "position": 38, + "title": "Bigger Than Me" + }, + { + "artist": "David Guetta & Bebe Rexha", + "position": 39, + "title": "I'm Good (Blue)" + }, + { + "artist": "Zedd, Maren Morris & BEAUZ", + "position": 40, + "title": "Make You Say" + } + ], + "title": "2022 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Harry Styles", + "position": 1, + "title": "As It Was" + }, + { + "artist": "Steve Lacy", + "position": 2, + "title": "Bad Habit" + }, + { + "artist": "Harry Styles", + "position": 3, + "title": "Late Night Talking" + }, + { + "artist": "Nicky Youre & dazy", + "position": 4, + "title": "Sunroof" + }, + { + "artist": "Lizzo", + "position": 5, + "title": "About Damn Time" + }, + { + "artist": "Post Malone Featuring Doja Cat", + "position": 6, + "title": "I Like You (A Happier Song)" + }, + { + "artist": "Nicki Minaj", + "position": 7, + "title": "Super Freaky Girl" + }, + { + "artist": "OneRepublic", + "position": 8, + "title": "I Ain't Worried" + }, + { + "artist": "Kate Bush", + "position": 9, + "title": "Running Up That Hill (A Deal With God)" + }, + { + "artist": "Morgan Wallen", + "position": 10, + "title": "You Proof" + }, + { + "artist": "Future Featuring Drake & Tems", + "position": 11, + "title": "Wait For U" + }, + { + "artist": "Bad Bunny & Chencho Corleone", + "position": 12, + "title": "Me Porto Bonito" + }, + { + "artist": "Bad Bunny", + "position": 13, + "title": "Titi Me Pregunto" + }, + { + "artist": "Luke Combs", + "position": 14, + "title": "The Kind Of Love We Make" + }, + { + "artist": "Beyonce", + "position": 15, + "title": "Break My Soul" + }, + { + "artist": "Jack Harlow", + "position": 16, + "title": "First Class" + }, + { + "artist": "Morgan Wallen", + "position": 17, + "title": "Wasted On You" + }, + { + "artist": "Glass Animals", + "position": 18, + "title": "Heat Waves" + }, + { + "artist": "Cole Swindell", + "position": 19, + "title": "She Had Me At Heads Carolina" + }, + { + "artist": "Doja Cat", + "position": 20, + "title": "Vegas" + }, + { + "artist": "Drake Featuring 21 Savage", + "position": 21, + "title": "Jimmy Cooks" + }, + { + "artist": "The Kid LAROI & Justin Bieber", + "position": 22, + "title": "Stay" + }, + { + "artist": "Elton John & Britney Spears", + "position": 23, + "title": "Hold Me Closer" + }, + { + "artist": "Tyler Hubbard", + "position": 24, + "title": "5 Foot 9" + }, + { + "artist": "Lil Baby", + "position": 25, + "title": "Detox" + }, + { + "artist": "Joji", + "position": 26, + "title": "Glimpse Of Us" + }, + { + "artist": "Jon Pardi", + "position": 27, + "title": "Last Night Lonely" + }, + { + "artist": "Bad Bunny", + "position": 28, + "title": "Moscow Mule" + }, + { + "artist": "Latto", + "position": 29, + "title": "Big Energy" + }, + { + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "position": 30, + "title": "Staying Alive" + }, + { + "artist": "Yung Gravy", + "position": 31, + "title": "Betty (Get Money)" + }, + { + "artist": "Zach Bryan", + "position": 32, + "title": "Something In The Orange" + }, + { + "artist": "Justin Bieber", + "position": 33, + "title": "Ghost" + }, + { + "artist": "Ed Sheeran", + "position": 34, + "title": "Shivers" + }, + { + "artist": "Lil Baby", + "position": 35, + "title": "In A Minute" + }, + { + "artist": "Bailey Zimmerman", + "position": 36, + "title": "Rock And A Hard Place" + }, + { + "artist": "Charlie Puth Featuring Jung Kook", + "position": 37, + "title": "Left And Right" + }, + { + "artist": "Bad Bunny", + "position": 38, + "title": "Efecto" + }, + { + "artist": "Jelly Roll", + "position": 39, + "title": "Son Of A Sinner" + }, + { + "artist": "Marshmello & Khalid", + "position": 40, + "title": "Numb" + }, + { + "artist": "Bailey Zimmerman", + "position": 41, + "title": "Fall In Love" + }, + { + "artist": "Yeat", + "position": 42, + "title": "Talk" + }, + { + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "position": 43, + "title": "God Did" + }, + { + "artist": "Karol G", + "position": 44, + "title": "Provenza" + }, + { + "artist": "Sia", + "position": 45, + "title": "Unstoppable" + }, + { + "artist": "David Guetta & Bebe Rexha", + "position": 46, + "title": "I'm Good (Blue)" + }, + { + "artist": "Em Beihold", + "position": 47, + "title": "Numb Little Bug" + }, + { + "artist": "Imagine Dragons", + "position": 48, + "title": "Bones" + }, + { + "artist": "Nardo Wick", + "position": 49, + "title": "Dah Dah DahDah" + }, + { + "artist": "Jax", + "position": 50, + "title": "Victoria’s Secret" + }, + { + "artist": "Karol G x Maldy", + "position": 51, + "title": "Gatubela" + }, + { + "artist": "The Weeknd", + "position": 52, + "title": "Die For You" + }, + { + "artist": "Burna Boy", + "position": 53, + "title": "Last Last" + }, + { + "artist": "Mitchell Tenpenny", + "position": 54, + "title": "Truth About You" + }, + { + "artist": "Cardi B, Ye & Lil Durk", + "position": 55, + "title": "Hot Shit" + }, + { + "artist": "Tems", + "position": 56, + "title": "Free Mind" + }, + { + "artist": "SleazyWorld Go Featuring Lil Baby", + "position": 57, + "title": "Sleazy Flow" + }, + { + "artist": "Halsey", + "position": 58, + "title": "So Good" + }, + { + "artist": "Justin Moore", + "position": 59, + "title": "With A Woman You Love" + }, + { + "artist": "Kane Brown", + "position": 60, + "title": "Like I Love Country Music" + }, + { + "artist": "Ingrid Andress With Sam Hunt", + "position": 61, + "title": "Wishful Drinking" + }, + { + "artist": "Bad Bunny & Rauw Alejandro", + "position": 62, + "title": "Party" + }, + { + "artist": "Rosalia", + "position": 63, + "title": "Despecha" + }, + { + "artist": "Hitkidd & GloRilla", + "position": 64, + "title": "F.N.F. (Let's Go)" + }, + { + "artist": "JVKE", + "position": 65, + "title": "Golden Hour" + }, + { + "artist": "Bad Bunny & Bomba Estereo", + "position": 66, + "title": "Ojitos Lindos" + }, + { + "artist": "BLACKPINK", + "position": 67, + "title": "Pink Venom" + }, + { + "artist": "Lil Tjay", + "position": 68, + "title": "Beat The Odds" + }, + { + "artist": "Drake", + "position": 69, + "title": "Sticky" + }, + { + "artist": "Gabby Barrett", + "position": 70, + "title": "Pick Me Up" + }, + { + "artist": "Nate Smith", + "position": 71, + "title": "Whiskey On You" + }, + { + "artist": "Bad Bunny", + "position": 72, + "title": "Despues de La Playa" + }, + { + "artist": "DJ Khaled Featuring Future & SZA", + "position": 73, + "title": "Beautiful" + }, + { + "artist": "Russell Dickerson & Jake Scott", + "position": 74, + "title": "She Likes It" + }, + { + "artist": "Stephen Sanchez", + "position": 75, + "title": "Until I Found You" + }, + { + "artist": "Carrie Underwood", + "position": 76, + "title": "Ghost Story" + }, + { + "artist": "d4vd", + "position": 77, + "title": "Romantic Homicide" + }, + { + "artist": "Lizzo", + "position": 78, + "title": "2 Be Loved (Am I Ready)" + }, + { + "artist": "Bailey Zimmerman", + "position": 79, + "title": "Where It Ends" + }, + { + "artist": "Rod Wave", + "position": 80, + "title": "Alone" + }, + { + "artist": "Bad Bunny", + "position": 81, + "title": "Neverita" + }, + { + "artist": "Brent Faiyaz", + "position": 82, + "title": "All Mine" + }, + { + "artist": "Bad Bunny & Jhay Cortez", + "position": 83, + "title": "Tarot" + }, + { + "artist": "Jordan Davis", + "position": 84, + "title": "What My World Spins Around" + }, + { + "artist": "Thomas Rhett Featuring Riley Green", + "position": 85, + "title": "Half Of Me" + }, + { + "artist": "Manuel Turizo", + "position": 86, + "title": "La Bachata" + }, + { + "artist": "Harry Styles", + "position": 87, + "title": "Music For A Sushi Restaurant" + }, + { + "artist": "Jackson Dean", + "position": 88, + "title": "Don't Come Lookin'" + }, + { + "artist": "Lee Brice", + "position": 89, + "title": "Soul" + }, + { + "artist": "benny blanco, BTS & Snoop Dogg", + "position": 90, + "title": "Bad Decisions" + }, + { + "artist": "Rema & Selena Gomez", + "position": 91, + "title": "Calm Down" + }, + { + "artist": "Future", + "position": 92, + "title": "Puffin On Zootiez" + }, + { + "artist": "Rosa Linn", + "position": 93, + "title": "Snap" + }, + { + "artist": "Quavo & Takeoff", + "position": 94, + "title": "Hotel Lobby (Unc And Phew)" + }, + { + "artist": "Bizarrap & Quevedo", + "position": 95, + "title": "Bzrp Music Sessions, Vol. 52" + }, + { + "artist": "Morgan Wallen", + "position": 96, + "title": "Thought You Should Know" + }, + { + "artist": "Luke Bryan", + "position": 97, + "title": "Country On" + }, + { + "artist": "Steve Lacy", + "position": 98, + "title": "Static" + }, + { + "artist": "Armani White", + "position": 99, + "title": "Billie Eilish." + }, + { + "artist": "Romeo Santos & Justin Timberlake", + "position": 100, + "title": "Sin Fin" + } + ], + "title": "2022 - Hot 100" + }, + { + "songs": [ + { + "artist": "Morgan Wallen", + "position": 1, + "title": "You Proof" + }, + { + "artist": "Luke Combs", + "position": 2, + "title": "The Kind Of Love We Make" + }, + { + "artist": "Morgan Wallen", + "position": 3, + "title": "Wasted On You" + }, + { + "artist": "Cole Swindell", + "position": 4, + "title": "She Had Me At Heads Carolina" + }, + { + "artist": "Tyler Hubbard", + "position": 5, + "title": "5 Foot 9" + }, + { + "artist": "Jon Pardi", + "position": 6, + "title": "Last Night Lonely" + }, + { + "artist": "Zach Bryan", + "position": 7, + "title": "Something In The Orange" + }, + { + "artist": "Bailey Zimmerman", + "position": 8, + "title": "Rock And A Hard Place" + }, + { + "artist": "Jelly Roll", + "position": 9, + "title": "Son Of A Sinner" + }, + { + "artist": "Bailey Zimmerman", + "position": 10, + "title": "Fall In Love" + }, + { + "artist": "Mitchell Tenpenny", + "position": 11, + "title": "Truth About You" + }, + { + "artist": "Justin Moore", + "position": 12, + "title": "With A Woman You Love" + }, + { + "artist": "Kane Brown", + "position": 13, + "title": "Like I Love Country Music" + }, + { + "artist": "Ingrid Andress With Sam Hunt", + "position": 14, + "title": "Wishful Drinking" + }, + { + "artist": "Gabby Barrett", + "position": 15, + "title": "Pick Me Up" + }, + { + "artist": "Nate Smith", + "position": 16, + "title": "Whiskey On You" + }, + { + "artist": "Russell Dickerson & Jake Scott", + "position": 17, + "title": "She Likes It" + }, + { + "artist": "Carrie Underwood", + "position": 18, + "title": "Ghost Story" + }, + { + "artist": "Bailey Zimmerman", + "position": 19, + "title": "Where It Ends" + }, + { + "artist": "Jordan Davis", + "position": 20, + "title": "What My World Spins Around" + }, + { + "artist": "Thomas Rhett Featuring Riley Green", + "position": 21, + "title": "Half Of Me" + }, + { + "artist": "Jackson Dean", + "position": 22, + "title": "Don't Come Lookin'" + }, + { + "artist": "Lee Brice", + "position": 23, + "title": "Soul" + }, + { + "artist": "Morgan Wallen", + "position": 24, + "title": "Thought You Should Know" + }, + { + "artist": "Luke Bryan", + "position": 25, + "title": "Country On" + }, + { + "artist": "Zach Bryan", + "position": 26, + "title": "Oklahoma Smoke Show" + }, + { + "artist": "Corey Kent", + "position": 27, + "title": "Wild As Her" + }, + { + "artist": "Old Dominion", + "position": 28, + "title": "No Hard Feelings" + }, + { + "artist": "HARDY Featuring Lainey Wilson", + "position": 29, + "title": "Wait In The Truck" + }, + { + "artist": "Chris Stapleton", + "position": 30, + "title": "Joy Of My Life" + }, + { + "artist": "Kelsea Ballerini", + "position": 31, + "title": "Heartfirst" + }, + { + "artist": "Jimmie Allen", + "position": 32, + "title": "Down Home" + }, + { + "artist": "Carly Pearce", + "position": 33, + "title": "What He Didn't Do" + }, + { + "artist": "Zac Brown Band", + "position": 34, + "title": "Out In The Middle" + }, + { + "artist": "BRELAND Featuring Lady A", + "position": 35, + "title": "Told You I Could Drink" + }, + { + "artist": "Hailey Whitters", + "position": 36, + "title": "Everything She Ain't" + }, + { + "artist": "David Morris", + "position": 37, + "title": "Dutton Ranch Freestyle" + }, + { + "artist": "Koe Wetzel", + "position": 38, + "title": "Creeps" + }, + { + "artist": "Jason Aldean", + "position": 39, + "title": "That's What Tequila Does" + }, + { + "artist": "Dustin Lynch", + "position": 40, + "title": "Party Mode" + }, + { + "artist": "Little Big Town", + "position": 41, + "title": "Hell Yeah" + }, + { + "artist": "Parker McCollum", + "position": 42, + "title": "Handle On You" + }, + { + "artist": "Walker Hayes", + "position": 43, + "title": "Y'all Life" + }, + { + "artist": "Drew Green", + "position": 44, + "title": "Good Ol' Man" + }, + { + "artist": "Luke Combs", + "position": 45, + "title": "Tomorrow Me" + }, + { + "artist": "Jordan Davis", + "position": 46, + "title": "Next Thing You Know" + }, + { + "artist": "Frank Ray", + "position": 47, + "title": "Country'd Look Good On You" + }, + { + "artist": "Lainey Wilson", + "position": 48, + "title": "Heart Like A Truck" + }, + { + "artist": "Sam Hunt", + "position": 49, + "title": "Water Under The Bridge" + }, + { + "artist": "Dylan Scott", + "position": 50, + "title": "Can't Have Mine" + } + ], + "title": "2022 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Billie Eilish", + "position": 1, + "title": "Happier Than Ever" + }, + { + "artist": "The Kid LAROI", + "position": 2, + "title": "Without You" + }, + { + "artist": "Glass Animals", + "position": 3, + "title": "Heat Waves" + }, + { + "artist": "Maneskin", + "position": 4, + "title": "Beggin'" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 5, + "title": "My Ex's Best Friend" + }, + { + "artist": "24kGoldn Featuring iann dior", + "position": 6, + "title": "Mood" + }, + { + "artist": "Elle King & Miranda Lambert", + "position": 7, + "title": "Drunk (And I Don't Wanna Go Home)" + }, + { + "artist": "Billie Eilish", + "position": 8, + "title": "NDA" + }, + { + "artist": "Tai Verdes", + "position": 9, + "title": "A-O-K" + }, + { + "artist": "Billie Eilish", + "position": 10, + "title": "Getting Older" + }, + { + "artist": "Billie Eilish", + "position": 11, + "title": "Billie Bossa Nova" + }, + { + "artist": "Billie Eilish", + "position": 12, + "title": "Oxytocin" + }, + { + "artist": "Fleetwood Mac", + "position": 13, + "title": "Dreams" + }, + { + "artist": "Billie Eilish", + "position": 14, + "title": "I Didn't Change My Number" + }, + { + "artist": "AJR", + "position": 15, + "title": "Way Less Sad" + }, + { + "artist": "Billie Eilish", + "position": 16, + "title": "Lost Cause" + }, + { + "artist": "Billie Eilish", + "position": 17, + "title": "Halley's Comet" + }, + { + "artist": "Billie Eilish", + "position": 18, + "title": "Your Power" + }, + { + "artist": "Billie Eilish", + "position": 19, + "title": "Goldwing" + }, + { + "artist": "Billie Eilish", + "position": 20, + "title": "Male Fantasy" + }, + { + "artist": "Olivia Rodrigo", + "position": 21, + "title": "Brutal" + }, + { + "artist": "Maneskin", + "position": 22, + "title": "I Wanna Be Your Slave" + }, + { + "artist": "Willow Featuring Travis Barker", + "position": 23, + "title": "transparentsoul" + }, + { + "artist": "Imagine Dragons", + "position": 24, + "title": "Follow You" + }, + { + "artist": "Billie Eilish", + "position": 25, + "title": "OverHeated" + }, + { + "artist": "Billie Eilish", + "position": 26, + "title": "Everybody Dies" + }, + { + "artist": "Billie Eilish", + "position": 27, + "title": "Not My Responsibility" + }, + { + "artist": "Surf Curse", + "position": 28, + "title": "Freaks" + }, + { + "artist": "Weezer", + "position": 29, + "title": "All My Favorite Songs" + }, + { + "artist": "twenty one pilots", + "position": 30, + "title": "Saturday" + }, + { + "artist": "Imagine Dragons", + "position": 31, + "title": "Wrecked" + }, + { + "artist": "Big Red Machine Featuring Taylor Swift", + "position": 32, + "title": "Renegade" + }, + { + "artist": "Lorde", + "position": 33, + "title": "Solar Power" + }, + { + "artist": "AURORA", + "position": 34, + "title": "Runaway" + }, + { + "artist": "Coldplay", + "position": 35, + "title": "Higher Power" + }, + { + "artist": "Vance Joy", + "position": 36, + "title": "Missing Piece" + }, + { + "artist": "girl in red", + "position": 37, + "title": "Serotonin" + }, + { + "artist": "PinkPantheress", + "position": 38, + "title": "Break It Off" + }, + { + "artist": "John Mayer", + "position": 39, + "title": "Last Train Home" + }, + { + "artist": "Rise Against", + "position": 40, + "title": "Nowhere Generation" + }, + { + "artist": "PinkPantheress", + "position": 41, + "title": "Passion" + }, + { + "artist": "Modest Mouse", + "position": 42, + "title": "We Are Between" + }, + { + "artist": "twenty one pilots", + "position": 43, + "title": "Shy Away" + }, + { + "artist": "Bleachers", + "position": 44, + "title": "Stop Making This Hurt" + }, + { + "artist": "Machine Gun Kelly Featuring Kellin Quinn", + "position": 45, + "title": "Love Race" + }, + { + "artist": "Lorde", + "position": 46, + "title": "Stoned At The Nail Salon" + }, + { + "artist": "Foo Fighters", + "position": 47, + "title": "Making A Fire" + }, + { + "artist": "bbno$ Featuring Rich Brian", + "position": 48, + "title": "Edamame" + }, + { + "artist": "Five Finger Death Punch", + "position": 49, + "title": "Darkness Settles In" + }, + { + "artist": "Clairo", + "position": 50, + "title": "Amoeba" + } + ], + "title": "2021 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Lil Nas X & Jack Harlow", + "position": 1, + "title": "Industry Baby" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 2, + "title": "Leave The Door Open" + }, + { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "position": 3, + "title": "Peaches" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 4, + "title": "Skate" + }, + { + "artist": "Giveon", + "position": 5, + "title": "Heartbreak Anniversary" + }, + { + "artist": "Doja Cat & The Weeknd", + "position": 6, + "title": "You Right" + }, + { + "artist": "Polo G", + "position": 7, + "title": "Rapstar" + }, + { + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "position": 8, + "title": "Every Chance I Get" + }, + { + "artist": "Masked Wolf", + "position": 9, + "title": "Astronaut In The Ocean" + }, + { + "artist": "Roddy Ricch", + "position": 10, + "title": "Late At Night" + }, + { + "artist": "Megan Thee Stallion", + "position": 11, + "title": "Thot Shit" + }, + { + "artist": "Post Malone", + "position": 12, + "title": "Motley Crew" + }, + { + "artist": "Doja Cat", + "position": 13, + "title": "Ain't Shit" + }, + { + "artist": "Moneybagg Yo", + "position": 14, + "title": "Wockesha" + }, + { + "artist": "BIA Featuring Nicki Minaj", + "position": 15, + "title": "Whole Lotta Money" + }, + { + "artist": "Drake Featuring Lil Baby", + "position": 16, + "title": "Wants And Needs" + }, + { + "artist": "Sleepy Hallow", + "position": 17, + "title": "2055" + }, + { + "artist": "Wizkid Featuring Tems", + "position": 18, + "title": "Essence" + }, + { + "artist": "Lil Tjay Featuring 6LACK", + "position": 19, + "title": "Calling My Phone" + }, + { + "artist": "Normani Featuring Cardi B", + "position": 20, + "title": "Wild Side" + }, + { + "artist": "Moneybagg Yo", + "position": 21, + "title": "Time Today" + }, + { + "artist": "Rod Wave", + "position": 22, + "title": "Tombstone" + }, + { + "artist": "DaBaby", + "position": 23, + "title": "Ball If I Want To" + }, + { + "artist": "J. Cole, 21 Savage & Morray", + "position": 24, + "title": "my.life" + }, + { + "artist": "Migos", + "position": 25, + "title": "Straightenin" + }, + { + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "position": 26, + "title": "Not Sober" + }, + { + "artist": "Smiley Featuring Drake", + "position": 27, + "title": "Over The Top" + }, + { + "artist": "H.E.R. Featuring Chris Brown", + "position": 28, + "title": "Come Through" + }, + { + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "position": 29, + "title": "Baddest" + }, + { + "artist": "Lil Baby, Lil Durk & Travis Scott", + "position": 30, + "title": "Hats Off" + }, + { + "artist": "Capella Grey", + "position": 31, + "title": "Gyalis" + }, + { + "artist": "MO3 X OG Bobby Billions", + "position": 32, + "title": "Outside" + }, + { + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "position": 33, + "title": "From The Garden" + }, + { + "artist": "City Girls", + "position": 34, + "title": "Twerkulator" + }, + { + "artist": "Tyler, The Creator Featuring YoungBoy Never Broke Again & Ty Dolla $ign", + "position": 35, + "title": "WUSYANAME" + }, + { + "artist": "Young Thug & Gunna", + "position": 36, + "title": "Ski" + }, + { + "artist": "DaBaby", + "position": 37, + "title": "Red Light Green Light" + }, + { + "artist": "Doja Cat", + "position": 38, + "title": "Woman" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 39, + "title": "Nevada" + }, + { + "artist": "T-Pain & Kehlani", + "position": 40, + "title": "I Like Dat" + }, + { + "artist": "42 Dugg & Roddy Ricch", + "position": 41, + "title": "4 Da Gang" + }, + { + "artist": "Brent Faiyaz Featuring Drake", + "position": 42, + "title": "Wasting Time" + }, + { + "artist": "42 Dugg Featuring Future", + "position": 43, + "title": "Maybach" + }, + { + "artist": "Trippie Redd & Playboi Carti", + "position": 44, + "title": "Miss The Rage" + }, + { + "artist": "Trippie Redd Featuring Lil Uzi Vert", + "position": 45, + "title": "Holy Smokes" + }, + { + "artist": "Wale Featuring Chris Brown", + "position": 46, + "title": "Angles" + }, + { + "artist": "Isaiah Rashad", + "position": 47, + "title": "RIP Young" + }, + { + "artist": "Cochise & $NOT", + "position": 48, + "title": "Tell Em" + }, + { + "artist": "J. Cole & Lil Baby", + "position": 49, + "title": "pride.is.the.devil" + }, + { + "artist": "EST Gee", + "position": 50, + "title": "Lick Back" + } + ], + "title": "2021 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Olivia Rodrigo", + "position": 1, + "title": "Good 4 U" + }, + { + "artist": "Olivia Rodrigo", + "position": 2, + "title": "Deja Vu" + }, + { + "artist": "Doja Cat Featuring SZA", + "position": 3, + "title": "Kiss Me More" + }, + { + "artist": "Lil Nas X", + "position": 4, + "title": "Montero (Call Me By Your Name)" + }, + { + "artist": "Ed Sheeran", + "position": 5, + "title": "Bad Habits" + }, + { + "artist": "Dua Lipa", + "position": 6, + "title": "Levitating" + }, + { + "artist": "The Kid LAROI & Justin Bieber", + "position": 7, + "title": "Stay" + }, + { + "artist": "BTS", + "position": 8, + "title": "Butter" + }, + { + "artist": "Marshmello X Jonas Brothers", + "position": 9, + "title": "Leave Before You Love Me" + }, + { + "artist": "The Weeknd", + "position": 10, + "title": "Save Your Tears" + }, + { + "artist": "Kali Uchis", + "position": 11, + "title": "Telepatia" + }, + { + "artist": "Regard x Troye Sivan x Tate McRae", + "position": 12, + "title": "You" + }, + { + "artist": "Duncan Laurence", + "position": 13, + "title": "Arcade" + }, + { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "position": 14, + "title": "Peaches" + }, + { + "artist": "Doja Cat & The Weeknd", + "position": 15, + "title": "You Right" + }, + { + "artist": "Giveon", + "position": 16, + "title": "Heartbreak Anniversary" + }, + { + "artist": "Dua Lipa", + "position": 17, + "title": "Love Again" + }, + { + "artist": "Ariana Grande", + "position": 18, + "title": "pov" + }, + { + "artist": "Camila Cabello", + "position": 19, + "title": "Don't Go Yet" + }, + { + "artist": "Tate McRae X Khalid", + "position": 20, + "title": "Working" + }, + { + "artist": "Tai Verdes", + "position": 21, + "title": "A-O-K" + }, + { + "artist": "Post Malone", + "position": 22, + "title": "Motley Crew" + }, + { + "artist": "Lil Nas X & Jack Harlow", + "position": 23, + "title": "Industry Baby" + }, + { + "artist": "Kane Brown X blackbear", + "position": 24, + "title": "Memory" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 25, + "title": "Skate" + }, + { + "artist": "The Weeknd", + "position": 26, + "title": "Take My Breath" + }, + { + "artist": "Billie Eilish", + "position": 27, + "title": "NDA" + }, + { + "artist": "Bella Poarch", + "position": 28, + "title": "Build A Bitch" + }, + { + "artist": "Maroon 5", + "position": 29, + "title": "Lost" + }, + { + "artist": "Bazzi", + "position": 30, + "title": "I Like That" + }, + { + "artist": "Pop Smoke Featuring Dua Lipa", + "position": 31, + "title": "Demeanor" + }, + { + "artist": "Olivia Rodrigo", + "position": 32, + "title": "Traitor" + }, + { + "artist": "Normani Featuring Cardi B", + "position": 33, + "title": "Wild Side" + }, + { + "artist": "Maneskin", + "position": 34, + "title": "Beggin'" + }, + { + "artist": "Tones And I", + "position": 35, + "title": "Cloudy Day" + }, + { + "artist": "twenty one pilots", + "position": 36, + "title": "Saturday" + }, + { + "artist": "Dixie Featuring Rubi Rose", + "position": 37, + "title": "Psycho" + }, + { + "artist": "Alessia Cara", + "position": 38, + "title": "Sweet Dream" + }, + { + "artist": "Tesher X Jason Derulo", + "position": 39, + "title": "Jalebi Baby" + }, + { + "artist": "Swedish House Mafia Featuring Ty Dolla $ign & 070 Shake", + "position": 40, + "title": "Lifetime" + } + ], + "title": "2021 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "The Kid LAROI & Justin Bieber", + "position": 1, + "title": "Stay" + }, + { + "artist": "Olivia Rodrigo", + "position": 2, + "title": "Good 4 U" + }, + { + "artist": "Dua Lipa Featuring DaBaby", + "position": 3, + "title": "Levitating" + }, + { + "artist": "BTS", + "position": 4, + "title": "Butter" + }, + { + "artist": "Ed Sheeran", + "position": 5, + "title": "Bad Habits" + }, + { + "artist": "Doja Cat Featuring SZA", + "position": 6, + "title": "Kiss Me More" + }, + { + "artist": "Lil Nas X & Jack Harlow", + "position": 7, + "title": "Industry Baby" + }, + { + "artist": "Lil Nas X", + "position": 8, + "title": "Montero (Call Me By Your Name)" + }, + { + "artist": "Olivia Rodrigo", + "position": 9, + "title": "Deja Vu" + }, + { + "artist": "The Weeknd & Ariana Grande", + "position": 10, + "title": "Save Your Tears" + }, + { + "artist": "Billie Eilish", + "position": 11, + "title": "Happier Than Ever" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 12, + "title": "Leave The Door Open" + }, + { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "position": 13, + "title": "Peaches" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 14, + "title": "Skate" + }, + { + "artist": "Walker Hayes", + "position": 15, + "title": "Fancy Like" + }, + { + "artist": "The Weeknd", + "position": 16, + "title": "Blinding Lights" + }, + { + "artist": "Giveon", + "position": 17, + "title": "Heartbreak Anniversary" + }, + { + "artist": "Doja Cat & The Weeknd", + "position": 18, + "title": "You Right" + }, + { + "artist": "Polo G", + "position": 19, + "title": "Rapstar" + }, + { + "artist": "Marshmello X Jonas Brothers", + "position": 20, + "title": "Leave Before You Love Me" + }, + { + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "position": 21, + "title": "Every Chance I Get" + }, + { + "artist": "The Kid LAROI", + "position": 22, + "title": "Without You" + }, + { + "artist": "Luke Combs", + "position": 23, + "title": "Forever After All" + }, + { + "artist": "Chase Rice Featuring Florida Georgia Line", + "position": 24, + "title": "Drinkin' Beer. Talkin' God. Amen." + }, + { + "artist": "Dan + Shay", + "position": 25, + "title": "Glad You Exist" + }, + { + "artist": "Nelly & Florida Georgia Line", + "position": 26, + "title": "Lil Bit" + }, + { + "artist": "BTS", + "position": 27, + "title": "Permission To Dance" + }, + { + "artist": "Masked Wolf", + "position": 28, + "title": "Astronaut In The Ocean" + }, + { + "artist": "Roddy Ricch", + "position": 29, + "title": "Late At Night" + }, + { + "artist": "Megan Thee Stallion", + "position": 30, + "title": "Thot Shit" + }, + { + "artist": "Glass Animals", + "position": 31, + "title": "Heat Waves" + }, + { + "artist": "Doja Cat", + "position": 32, + "title": "Need To Know" + }, + { + "artist": "Kali Uchis", + "position": 33, + "title": "Telepatia" + }, + { + "artist": "Maroon 5 Featuring Megan Thee Stallion", + "position": 34, + "title": "Beautiful Mistakes" + }, + { + "artist": "Luke Bryan", + "position": 35, + "title": "Waves" + }, + { + "artist": "Chris Young + Kane Brown", + "position": 36, + "title": "Famous Friends" + }, + { + "artist": "Aventura x Bad Bunny", + "position": 37, + "title": "Volvi" + }, + { + "artist": "Saweetie Featuring Doja Cat", + "position": 38, + "title": "Best Friend" + }, + { + "artist": "Post Malone", + "position": 39, + "title": "Motley Crew" + }, + { + "artist": "Cole Swindell", + "position": 40, + "title": "Single Saturday Night" + }, + { + "artist": "Doja Cat", + "position": 41, + "title": "Ain't Shit" + }, + { + "artist": "Moneybagg Yo", + "position": 42, + "title": "Wockesha" + }, + { + "artist": "BIA Featuring Nicki Minaj", + "position": 43, + "title": "Whole Lotta Money" + }, + { + "artist": "Maneskin", + "position": 44, + "title": "Beggin'" + }, + { + "artist": "Lainey Wilson", + "position": 45, + "title": "Things A Man Oughta Know" + }, + { + "artist": "Ryan Hurd With Maren Morris", + "position": 46, + "title": "Chasing After You" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 47, + "title": "My Ex's Best Friend" + }, + { + "artist": "24kGoldn Featuring iann dior", + "position": 48, + "title": "Mood" + }, + { + "artist": "Olivia Rodrigo", + "position": 49, + "title": "Traitor" + }, + { + "artist": "Duncan Laurence", + "position": 50, + "title": "Arcade" + }, + { + "artist": "Thomas Rhett", + "position": 51, + "title": "Country Again" + }, + { + "artist": "Jason Aldean & Carrie Underwood", + "position": 52, + "title": "If I Didn't Love You" + }, + { + "artist": "Sleepy Hallow", + "position": 53, + "title": "2055" + }, + { + "artist": "Wizkid Featuring Tems", + "position": 54, + "title": "Essence" + }, + { + "artist": "Bad Bunny", + "position": 55, + "title": "Yonaguni" + }, + { + "artist": "Rauw Alejandro", + "position": 56, + "title": "Todo de Ti" + }, + { + "artist": "Keith Urban Duet With P!nk", + "position": 57, + "title": "One Too Many" + }, + { + "artist": "Elle King & Miranda Lambert", + "position": 58, + "title": "Drunk (And I Don't Wanna Go Home)" + }, + { + "artist": "Billie Eilish", + "position": 59, + "title": "NDA" + }, + { + "artist": "Justin Moore", + "position": 60, + "title": "We Didn't Have Much" + }, + { + "artist": "Normani Featuring Cardi B", + "position": 61, + "title": "Wild Side" + }, + { + "artist": "Regard x Troye Sivan x Tate McRae", + "position": 62, + "title": "You" + }, + { + "artist": "Camila Cabello", + "position": 63, + "title": "Don't Go Yet" + }, + { + "artist": "Old Dominion", + "position": 64, + "title": "I Was On A Boat That Day" + }, + { + "artist": "Dua Lipa", + "position": 65, + "title": "Love Again" + }, + { + "artist": "Farruko", + "position": 66, + "title": "Pepas" + }, + { + "artist": "Tai Verdes", + "position": 67, + "title": "A-O-K" + }, + { + "artist": "Kane Brown X blackbear", + "position": 68, + "title": "Memory" + }, + { + "artist": "Billie Eilish", + "position": 69, + "title": "Getting Older" + }, + { + "artist": "Billie Eilish", + "position": 70, + "title": "Billie Bossa Nova" + }, + { + "artist": "Rod Wave", + "position": 71, + "title": "Tombstone" + }, + { + "artist": "Billie Eilish", + "position": 72, + "title": "Oxytocin" + }, + { + "artist": "DaBaby", + "position": 73, + "title": "Ball If I Want To" + }, + { + "artist": "J. Cole, 21 Savage & Morray", + "position": 74, + "title": "my.life" + }, + { + "artist": "Jason Aldean", + "position": 75, + "title": "Blame It On You" + }, + { + "artist": "Migos", + "position": 76, + "title": "Straightenin" + }, + { + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "position": 77, + "title": "Not Sober" + }, + { + "artist": "Smiley Featuring Drake", + "position": 78, + "title": "Over The Top" + }, + { + "artist": "Jameson Rodgers Featuring Luke Combs", + "position": 79, + "title": "Cold Beer Calling My Name" + }, + { + "artist": "Billie Eilish", + "position": 80, + "title": "I Didn't Change My Number" + }, + { + "artist": "AJR", + "position": 81, + "title": "Way Less Sad" + }, + { + "artist": "H.E.R. Featuring Chris Brown", + "position": 82, + "title": "Come Through" + }, + { + "artist": "Elvie Shane", + "position": 83, + "title": "My Boy" + }, + { + "artist": "Billie Eilish", + "position": 84, + "title": "Lost Cause" + }, + { + "artist": "Nio Garcia X J Balvin X Bad Bunny", + "position": 85, + "title": "AM" + }, + { + "artist": "Olivia Rodrigo", + "position": 86, + "title": "Favorite Crime" + }, + { + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "position": 87, + "title": "Baddest" + }, + { + "artist": "Lee Brice", + "position": 88, + "title": "Memory I Don't Mess With" + }, + { + "artist": "Chris Stapleton", + "position": 89, + "title": "You Should Probably Leave" + }, + { + "artist": "Billie Eilish", + "position": 90, + "title": "Halley's Comet" + }, + { + "artist": "Billie Eilish", + "position": 91, + "title": "My Future" + }, + { + "artist": "Bella Poarch", + "position": 92, + "title": "Build A Bitch" + }, + { + "artist": "Olivia Rodrigo", + "position": 93, + "title": "Happier" + }, + { + "artist": "Lil Baby, Lil Durk & Travis Scott", + "position": 94, + "title": "Hats Off" + }, + { + "artist": "Capella Grey", + "position": 95, + "title": "Gyalis" + }, + { + "artist": "Scotty McCreery", + "position": 96, + "title": "You Time" + }, + { + "artist": "Los Legendarios, Wisin & Jhay Cortez", + "position": 97, + "title": "Fiel" + }, + { + "artist": "MO3 X OG Bobby Billions", + "position": 98, + "title": "Outside" + }, + { + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "position": 99, + "title": "From The Garden" + }, + { + "artist": "Tate McRae X Khalid", + "position": 100, + "title": "Working" + } + ], + "title": "2021 - Hot 100" + }, + { + "songs": [ + { + "artist": "Walker Hayes", + "position": 1, + "title": "Fancy Like" + }, + { + "artist": "Luke Combs", + "position": 2, + "title": "Forever After All" + }, + { + "artist": "Chase Rice Featuring Florida Georgia Line", + "position": 3, + "title": "Drinkin' Beer. Talkin' God. Amen." + }, + { + "artist": "Dan + Shay", + "position": 4, + "title": "Glad You Exist" + }, + { + "artist": "Nelly & Florida Georgia Line", + "position": 5, + "title": "Lil Bit" + }, + { + "artist": "Luke Bryan", + "position": 6, + "title": "Waves" + }, + { + "artist": "Chris Young + Kane Brown", + "position": 7, + "title": "Famous Friends" + }, + { + "artist": "Cole Swindell", + "position": 8, + "title": "Single Saturday Night" + }, + { + "artist": "Lainey Wilson", + "position": 9, + "title": "Things A Man Oughta Know" + }, + { + "artist": "Ryan Hurd With Maren Morris", + "position": 10, + "title": "Chasing After You" + }, + { + "artist": "Thomas Rhett", + "position": 11, + "title": "Country Again" + }, + { + "artist": "Jason Aldean & Carrie Underwood", + "position": 12, + "title": "If I Didn't Love You" + }, + { + "artist": "Keith Urban Duet With P!nk", + "position": 13, + "title": "One Too Many" + }, + { + "artist": "Elle King & Miranda Lambert", + "position": 14, + "title": "Drunk (And I Don't Wanna Go Home)" + }, + { + "artist": "Justin Moore", + "position": 15, + "title": "We Didn't Have Much" + }, + { + "artist": "Old Dominion", + "position": 16, + "title": "I Was On A Boat That Day" + }, + { + "artist": "Kane Brown X blackbear", + "position": 17, + "title": "Memory" + }, + { + "artist": "Jameson Rodgers Featuring Luke Combs", + "position": 18, + "title": "Cold Beer Calling My Name" + }, + { + "artist": "Elvie Shane", + "position": 19, + "title": "My Boy" + }, + { + "artist": "Lee Brice", + "position": 20, + "title": "Memory I Don't Mess With" + }, + { + "artist": "Chris Stapleton", + "position": 21, + "title": "You Should Probably Leave" + }, + { + "artist": "Scotty McCreery", + "position": 22, + "title": "You Time" + }, + { + "artist": "Luke Combs", + "position": 23, + "title": "Cold As You" + }, + { + "artist": "Carly Pearce", + "position": 24, + "title": "Next Girl" + }, + { + "artist": "Kenny Chesney", + "position": 25, + "title": "Knowing You" + }, + { + "artist": "Jordan Davis Featuring Luke Bryan", + "position": 26, + "title": "Buy Dirt" + }, + { + "artist": "Dustin Lynch Featuring Lauren Alaina Or MacKenzie Porter", + "position": 27, + "title": "Thinking 'Bout You" + }, + { + "artist": "Parker McCollum", + "position": 28, + "title": "To Be Loved By You" + }, + { + "artist": "Morgan Wallen", + "position": 29, + "title": "Sand In My Boots" + }, + { + "artist": "Lady A", + "position": 30, + "title": "Like A Lady" + }, + { + "artist": "Jimmie Allen & Brad Paisley", + "position": 31, + "title": "Freedom Was A Highway" + }, + { + "artist": "Michael Ray", + "position": 32, + "title": "Whiskey And Rain" + }, + { + "artist": "Zac Brown Band", + "position": 33, + "title": "Same Boat" + }, + { + "artist": "Jon Pardi", + "position": 34, + "title": "Tequila Little Time" + }, + { + "artist": "Priscilla Block", + "position": 35, + "title": "Just About Over You" + }, + { + "artist": "Dierks Bentley, Breland & HARDY", + "position": 36, + "title": "Beers On Me" + }, + { + "artist": "Kelsea Ballerini Featuring Kenny Chesney", + "position": 37, + "title": "Half Of My Hometown" + }, + { + "artist": "Russell Dickerson", + "position": 38, + "title": "Home Sweet" + }, + { + "artist": "HARDY", + "position": 39, + "title": "Give Heaven Some Hell" + }, + { + "artist": "Chase Matthew", + "position": 40, + "title": "County Line" + }, + { + "artist": "Aaron Lewis", + "position": 41, + "title": "Am I The Only One" + }, + { + "artist": "Dan + Shay", + "position": 42, + "title": "Good Things" + }, + { + "artist": "Breland Featuring Keith Urban", + "position": 43, + "title": "Throw It Back" + }, + { + "artist": "Brett Young", + "position": 44, + "title": "Not Yet" + }, + { + "artist": "Kelsea Ballerini & LANY", + "position": 45, + "title": "I Quit Drinking" + }, + { + "artist": "Callista Clark", + "position": 46, + "title": "It's 'Cause I Am" + }, + { + "artist": "Garth Brooks", + "position": 47, + "title": "That's What Cowboys Do" + }, + { + "artist": "Mitchell Tenpenny", + "position": 48, + "title": "Truth About You" + }, + { + "artist": "Riley Green", + "position": 49, + "title": "If It Wasn't For Trucks" + }, + { + "artist": "Ingrid Andress", + "position": 50, + "title": "Lady Like" + } + ], + "title": "2021 - Country-Songs" + }, + { + "songs": [ + { + "artist": "24kGoldn Featuring iann dior", + "position": 1, + "title": "Mood" + }, + { + "artist": "Billie Eilish", + "position": 2, + "title": "Therefore I Am" + }, + { + "artist": "AJR", + "position": 3, + "title": "Bang!" + }, + { + "artist": "Juice WRLD x Marshmello", + "position": 4, + "title": "Come & Go" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 5, + "title": "My Ex's Best Friend" + }, + { + "artist": "Taylor Swift Featuring Bon Iver", + "position": 6, + "title": "Exile" + }, + { + "artist": "Clairo", + "position": 7, + "title": "Sofia" + }, + { + "artist": "Miley Cyrus", + "position": 8, + "title": "Plastic Hearts" + }, + { + "artist": "Machine Gun Kelly", + "position": 9, + "title": "Bloody Valentine" + }, + { + "artist": "Taylor Swift", + "position": 10, + "title": "Cardigan" + }, + { + "artist": "Wallows Featuring Clairo", + "position": 11, + "title": "Are You Bored Yet?" + }, + { + "artist": "Miley Cyrus Featuring Billy Idol", + "position": 12, + "title": "Night Crawling" + }, + { + "artist": "Miley Cyrus", + "position": 13, + "title": "WTF Do I Know" + }, + { + "artist": "Machine Gun Kelly & Halsey", + "position": 14, + "title": "Forget Me Too" + }, + { + "artist": "Glass Animals", + "position": 15, + "title": "Heat Waves" + }, + { + "artist": "Miley Cyrus", + "position": 16, + "title": "Gimme What I Want" + }, + { + "artist": "All Time Low Featuring blackbear", + "position": 17, + "title": "Monsters" + }, + { + "artist": "Miley Cyrus", + "position": 18, + "title": "High" + }, + { + "artist": "Miley Cyrus Featuring Joan Jett", + "position": 19, + "title": "Bad Karma" + }, + { + "artist": "BANNERS", + "position": 20, + "title": "Someone To You" + }, + { + "artist": "347aidan", + "position": 21, + "title": "Dancing In My Room" + }, + { + "artist": "Foo Fighters", + "position": 22, + "title": "Shame Shame" + }, + { + "artist": "Billie Eilish", + "position": 23, + "title": "My Future" + }, + { + "artist": "Royal & The Serpent", + "position": 24, + "title": "Overwhelmed" + }, + { + "artist": "Peach Tree Rascals", + "position": 25, + "title": "Mariposa" + }, + { + "artist": "Miley Cyrus", + "position": 26, + "title": "Zombie" + }, + { + "artist": "Taylor Swift", + "position": 27, + "title": "My Tears Ricochet" + }, + { + "artist": "Taylor Swift", + "position": 28, + "title": "August" + }, + { + "artist": "NEEDTOBREATHE", + "position": 29, + "title": "Who Am I" + }, + { + "artist": "AC/DC", + "position": 30, + "title": "Shot In The Dark" + }, + { + "artist": "Cannons", + "position": 31, + "title": "Fire For You" + }, + { + "artist": "Sista_Prod Featuring Subvrbs", + "position": 32, + "title": "Eyes Blue Like The Atlantic" + }, + { + "artist": "Taylor Swift", + "position": 33, + "title": "This Is Me Trying" + }, + { + "artist": "Taylor Swift", + "position": 34, + "title": "Mirrorball" + }, + { + "artist": "Penelope Scott", + "position": 35, + "title": "Rat" + }, + { + "artist": "Tai Verdes", + "position": 36, + "title": "Drugs" + }, + { + "artist": "Taylor Swift", + "position": 37, + "title": "Seven" + }, + { + "artist": "Machine Gun Kelly", + "position": 38, + "title": "Drunk Face" + }, + { + "artist": "Frances Forever", + "position": 39, + "title": "Space Girl" + }, + { + "artist": "Royal Blood", + "position": 40, + "title": "Trouble's Coming" + }, + { + "artist": "Tame Impala", + "position": 41, + "title": "Is It True" + }, + { + "artist": "Stellar", + "position": 42, + "title": "Ashes" + }, + { + "artist": "Bastille", + "position": 43, + "title": "Survivin'" + }, + { + "artist": "Tones And I", + "position": 44, + "title": "Fly Away" + }, + { + "artist": "Coldplay", + "position": 45, + "title": "Christmas Lights" + }, + { + "artist": "CORPSE", + "position": 46, + "title": "Miss You!" + }, + { + "artist": "Zach Bryan", + "position": 47, + "title": "Heading South" + }, + { + "artist": "ILLENIUM", + "position": 48, + "title": "Nightlight" + }, + { + "artist": "Taylor Swift", + "position": 49, + "title": "Mad Woman" + }, + { + "artist": "I Prevail Featuring Delaney Jane", + "position": 50, + "title": "Every Time You Leave" + } + ], + "title": "2020 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Drake Featuring Lil Durk", + "position": 1, + "title": "Laugh Now Cry Later" + }, + { + "artist": "The Weeknd", + "position": 2, + "title": "Blinding Lights" + }, + { + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "position": 3, + "title": "Lemonade" + }, + { + "artist": "Megan Thee Stallion", + "position": 4, + "title": "Body" + }, + { + "artist": "Chris Brown & Young Thug", + "position": 5, + "title": "Go Crazy" + }, + { + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "position": 6, + "title": "For The Night" + }, + { + "artist": "Cardi B Featuring Megan Thee Stallion", + "position": 7, + "title": "WAP" + }, + { + "artist": "DaBaby Featuring Roddy Ricch", + "position": 8, + "title": "Rockstar" + }, + { + "artist": "Moneybagg Yo", + "position": 9, + "title": "Said Sum" + }, + { + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "position": 10, + "title": "Whats Poppin" + }, + { + "artist": "Lil Nas X", + "position": 11, + "title": "Holiday" + }, + { + "artist": "Pop Smoke", + "position": 12, + "title": "What You Know Bout Love" + }, + { + "artist": "CJ", + "position": 13, + "title": "Whoopty" + }, + { + "artist": "Rod Wave Featuring ATR Son Son", + "position": 14, + "title": "Rags2Riches" + }, + { + "artist": "21 Savage & Metro Boomin Featuring Drake", + "position": 15, + "title": "Mr. Right Now" + }, + { + "artist": "Pop Smoke Featuring 50 Cent & Roddy Ricch", + "position": 16, + "title": "The Woo" + }, + { + "artist": "Jhene Aiko Featuring H.E.R.", + "position": 17, + "title": "B.S." + }, + { + "artist": "Pop Smoke Featuring Lil Tjay", + "position": 18, + "title": "Mood Swings" + }, + { + "artist": "BRS Kash", + "position": 19, + "title": "Throat Baby (Go Baby)" + }, + { + "artist": "King Von", + "position": 20, + "title": "Took Her To The O" + }, + { + "artist": "Megan Thee Stallion Featuring Young Thug", + "position": 21, + "title": "Don't Stop" + }, + { + "artist": "SZA Featuring Ty Dolla $ign", + "position": 22, + "title": "Hit Different" + }, + { + "artist": "Jack Harlow", + "position": 23, + "title": "Tyler Herro" + }, + { + "artist": "Saweetie Featuring Jhene Aiko", + "position": 24, + "title": "Back To The Streets" + }, + { + "artist": "Polo G", + "position": 25, + "title": "Martin & Gina" + }, + { + "artist": "Travis Scott Featuring Young Thug & M.I.A.", + "position": 26, + "title": "Franchise" + }, + { + "artist": "DaBaby", + "position": 27, + "title": "Practice" + }, + { + "artist": "Ne-Yo & Jeremih", + "position": 28, + "title": "U 2 Luv" + }, + { + "artist": "DJ Khaled Featuring Drake", + "position": 29, + "title": "Popstar" + }, + { + "artist": "Future & Lil Uzi Vert", + "position": 30, + "title": "Drankin N Smokin" + }, + { + "artist": "Money Man Featuring Lil Baby", + "position": 31, + "title": "24" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 32, + "title": "Kacey Talk" + }, + { + "artist": "DDG", + "position": 33, + "title": "Moonwalking In Calabasas" + }, + { + "artist": "H.E.R.", + "position": 34, + "title": "Damage" + }, + { + "artist": "21 Savage & Metro Boomin", + "position": 35, + "title": "Runnin" + }, + { + "artist": "DaBaby Featuring Young Thug", + "position": 36, + "title": "Blind" + }, + { + "artist": "Lil Yachty, Future & Playboi Carti", + "position": 37, + "title": "Flex Up" + }, + { + "artist": "Meek Mill Featuring Lil Durk", + "position": 38, + "title": "Pain Away" + }, + { + "artist": "Megan Thee Stallion Featuring DaBaby", + "position": 39, + "title": "Cry Baby" + }, + { + "artist": "DJ Chose Featuring BeatKing", + "position": 40, + "title": "Thick" + }, + { + "artist": "Pop Smoke Featuring A Boogie Wit da Hoodie", + "position": 41, + "title": "Hello" + }, + { + "artist": "K Camp Featuring Jacquees", + "position": 42, + "title": "What's On Your Mind" + }, + { + "artist": "Ty Dolla $ign Featuring Post Malone", + "position": 43, + "title": "Spicy" + }, + { + "artist": "Future & Lil Uzi Vert", + "position": 44, + "title": "That's It" + }, + { + "artist": "Yung Bleu Featuring Drake", + "position": 45, + "title": "You're Mines Still" + }, + { + "artist": "Juice WRLD & The Weeknd", + "position": 46, + "title": "Smile" + }, + { + "artist": "King Von Featuring Lil Durk", + "position": 47, + "title": "Crazy Story 2.0" + }, + { + "artist": "Kid LAROI & Juice WRLD", + "position": 48, + "title": "Go!" + }, + { + "artist": "Usher", + "position": 49, + "title": "Bad Habits" + }, + { + "artist": "Big Sean Featuring Post Malone", + "position": 50, + "title": "Wolves" + } + ], + "title": "2020 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "24kGoldn Featuring iann dior", + "position": 1, + "title": "Mood" + }, + { + "artist": "Ava Max", + "position": 2, + "title": "Kings & Queens" + }, + { + "artist": "Ariana Grande", + "position": 3, + "title": "Positions" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 4, + "title": "Holy" + }, + { + "artist": "Gabby Barrett Featuring Charlie Puth", + "position": 5, + "title": "I Hope" + }, + { + "artist": "BTS", + "position": 6, + "title": "Dynamite" + }, + { + "artist": "surf mesa Featuring Emilee", + "position": 7, + "title": "ily" + }, + { + "artist": "Kane Brown With Swae Lee & Khalid", + "position": 8, + "title": "Be Like That" + }, + { + "artist": "Dua Lipa Featuring DaBaby", + "position": 9, + "title": "Levitating" + }, + { + "artist": "AJR", + "position": 10, + "title": "Bang!" + }, + { + "artist": "Drake Featuring Lil Durk", + "position": 11, + "title": "Laugh Now Cry Later" + }, + { + "artist": "The Weeknd", + "position": 12, + "title": "Blinding Lights" + }, + { + "artist": "Jawsh 685 x Jason Derulo", + "position": 13, + "title": "Savage Love (Laxed - Siren Beat)" + }, + { + "artist": "Chris Brown & Young Thug", + "position": 14, + "title": "Go Crazy" + }, + { + "artist": "Sam Smith", + "position": 15, + "title": "Diamonds" + }, + { + "artist": "Billie Eilish", + "position": 16, + "title": "Therefore I Am" + }, + { + "artist": "Justin Bieber & benny blanco", + "position": 17, + "title": "Lonely" + }, + { + "artist": "Harry Styles", + "position": 18, + "title": "Golden" + }, + { + "artist": "Shawn Mendes & Justin Bieber", + "position": 19, + "title": "Monster" + }, + { + "artist": "Ariana Grande", + "position": 20, + "title": "34+35" + }, + { + "artist": "Zoe Wees", + "position": 21, + "title": "Control" + }, + { + "artist": "Bebe Rexha Featuring Doja Cat", + "position": 22, + "title": "Baby, I'm Jealous" + }, + { + "artist": "Jason Derulo", + "position": 23, + "title": "Take You Dancing" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 24, + "title": "My Ex's Best Friend" + }, + { + "artist": "Tate McRae", + "position": 25, + "title": "You Broke Me First." + }, + { + "artist": "Why Don't We", + "position": 26, + "title": "Fallin'" + }, + { + "artist": "Lil Nas X", + "position": 27, + "title": "Holiday" + }, + { + "artist": "Ritt Momney", + "position": 28, + "title": "Put Your Records On" + }, + { + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "position": 29, + "title": "Lemonade" + }, + { + "artist": "Miley Cyrus Featuring Dua Lipa", + "position": 30, + "title": "Prisoner" + }, + { + "artist": "Conan Gray", + "position": 31, + "title": "Heather" + }, + { + "artist": "Pop Smoke", + "position": 32, + "title": "What You Know Bout Love" + }, + { + "artist": "Zara Larsson", + "position": 33, + "title": "Wow" + }, + { + "artist": "The Weeknd", + "position": 34, + "title": "Save Your Tears" + }, + { + "artist": "Joel Corry X MNEK", + "position": 35, + "title": "Head & Heart" + }, + { + "artist": "Juice WRLD x Marshmello", + "position": 36, + "title": "Come & Go" + }, + { + "artist": "Shawn Mendes", + "position": 37, + "title": "Wonder" + }, + { + "artist": "G-Eazy Featuring blackbear", + "position": 38, + "title": "Hate The Way" + }, + { + "artist": "Maluma & The Weeknd", + "position": 39, + "title": "Hawai" + }, + { + "artist": "The Kid LAROI", + "position": 40, + "title": "So Done" + } + ], + "title": "2020 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "24kGoldn Featuring iann dior", + "position": 1, + "title": "Mood" + }, + { + "artist": "Mariah Carey", + "position": 2, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Ariana Grande", + "position": 3, + "title": "Positions" + }, + { + "artist": "Brenda Lee", + "position": 4, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Bad Bunny & Jhay Cortez", + "position": 5, + "title": "Dakiti" + }, + { + "artist": "Drake Featuring Lil Durk", + "position": 6, + "title": "Laugh Now Cry Later" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 7, + "title": "Holy" + }, + { + "artist": "Gabby Barrett Featuring Charlie Puth", + "position": 8, + "title": "I Hope" + }, + { + "artist": "Bobby Helms", + "position": 9, + "title": "Jingle Bell Rock" + }, + { + "artist": "BTS", + "position": 10, + "title": "Dynamite" + }, + { + "artist": "The Weeknd", + "position": 11, + "title": "Blinding Lights" + }, + { + "artist": "Andy Williams", + "position": 12, + "title": "It's The Most Wonderful Time Of The Year" + }, + { + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "position": 13, + "title": "Lemonade" + }, + { + "artist": "Megan Thee Stallion", + "position": 14, + "title": "Body" + }, + { + "artist": "Chris Brown & Young Thug", + "position": 15, + "title": "Go Crazy" + }, + { + "artist": "Jose Feliciano", + "position": 16, + "title": "Feliz Navidad" + }, + { + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "position": 17, + "title": "For The Night" + }, + { + "artist": "Nat King Cole", + "position": 18, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Ava Max", + "position": 19, + "title": "Kings & Queens" + }, + { + "artist": "Billie Eilish", + "position": 20, + "title": "Therefore I Am" + }, + { + "artist": "Wham!", + "position": 21, + "title": "Last Christmas" + }, + { + "artist": "Dean Martin", + "position": 22, + "title": "Let It Snow, Let It Snow, Let It Snow" + }, + { + "artist": "The Ronettes", + "position": 23, + "title": "Sleigh Ride" + }, + { + "artist": "Burl Ives", + "position": 24, + "title": "A Holly Jolly Christmas" + }, + { + "artist": "Ariana Grande", + "position": 25, + "title": "34+35" + }, + { + "artist": "Dua Lipa Featuring DaBaby", + "position": 26, + "title": "Levitating" + }, + { + "artist": "AJR", + "position": 27, + "title": "Bang!" + }, + { + "artist": "BTS", + "position": 28, + "title": "Life Goes On" + }, + { + "artist": "Jawsh 685 x Jason Derulo", + "position": 29, + "title": "Savage Love (Laxed - Siren Beat)" + }, + { + "artist": "Kelly Clarkson", + "position": 30, + "title": "Underneath The Tree" + }, + { + "artist": "Kane Brown With Swae Lee & Khalid", + "position": 31, + "title": "Be Like That" + }, + { + "artist": "Morgan Wallen", + "position": 32, + "title": "More Than My Hometown" + }, + { + "artist": "Cardi B Featuring Megan Thee Stallion", + "position": 33, + "title": "WAP" + }, + { + "artist": "Andy Williams", + "position": 34, + "title": "Happy Holiday / The Holiday Season" + }, + { + "artist": "DaBaby Featuring Roddy Ricch", + "position": 35, + "title": "Rockstar" + }, + { + "artist": "Gene Autry", + "position": 36, + "title": "Here Comes Santa Claus (Right Down Santa Claus Lane)" + }, + { + "artist": "Bing Crosby", + "position": 37, + "title": "White Christmas" + }, + { + "artist": "Shawn Mendes & Justin Bieber", + "position": 38, + "title": "Monster" + }, + { + "artist": "Michael Buble", + "position": 39, + "title": "It's Beginning To Look A Lot Like Christmas" + }, + { + "artist": "Gene Autry", + "position": 40, + "title": "Rudolph The Red-Nosed Reindeer" + }, + { + "artist": "Darlene Love", + "position": 41, + "title": "Christmas (Baby Please Come Home)" + }, + { + "artist": "Lewis Capaldi", + "position": 42, + "title": "Before You Go" + }, + { + "artist": "surf mesa Featuring Emilee", + "position": 43, + "title": "ily" + }, + { + "artist": "Moneybagg Yo", + "position": 44, + "title": "Said Sum" + }, + { + "artist": "Perry Como And The Fontane Sisters With Mitchell Ayres And His Orchestra", + "position": 45, + "title": "It's Beginning To Look A Lot Like Christmas" + }, + { + "artist": "Justin Bieber & benny blanco", + "position": 46, + "title": "Lonely" + }, + { + "artist": "Perry Como", + "position": 47, + "title": "(There's No Place Like) Home For The Holidays" + }, + { + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "position": 48, + "title": "Whats Poppin" + }, + { + "artist": "Blake Shelton Featuring Gwen Stefani", + "position": 49, + "title": "Happy Anywhere" + }, + { + "artist": "Harry Styles", + "position": 50, + "title": "Watermelon Sugar" + }, + { + "artist": "Lil Nas X", + "position": 51, + "title": "Holiday" + }, + { + "artist": "Pop Smoke", + "position": 52, + "title": "What You Know Bout Love" + }, + { + "artist": "Bad Bunny & ROSALIA", + "position": 53, + "title": "La Noche de Anoche" + }, + { + "artist": "Maluma & The Weeknd", + "position": 54, + "title": "Hawai" + }, + { + "artist": "Luke Combs", + "position": 55, + "title": "Better Together" + }, + { + "artist": "Chris Lane", + "position": 56, + "title": "Big, Big Plans" + }, + { + "artist": "Miley Cyrus", + "position": 57, + "title": "Midnight Sky" + }, + { + "artist": "Sam Smith", + "position": 58, + "title": "Diamonds" + }, + { + "artist": "Miley Cyrus Featuring Dua Lipa", + "position": 59, + "title": "Prisoner" + }, + { + "artist": "Bad Bunny", + "position": 60, + "title": "Te Mudaste" + }, + { + "artist": "Russell Dickerson", + "position": 61, + "title": "Love You Like I Used To" + }, + { + "artist": "Chris Stapleton", + "position": 62, + "title": "Starting Over" + }, + { + "artist": "Jon Pardi", + "position": 63, + "title": "Ain't Always The Cowboy" + }, + { + "artist": "Bad Bunny", + "position": 64, + "title": "Yo Visto Asi" + }, + { + "artist": "Trey Lewis", + "position": 65, + "title": "Dicked Down In Dallas" + }, + { + "artist": "Dan + Shay", + "position": 66, + "title": "I Should Probably Go To Bed" + }, + { + "artist": "Tate McRae", + "position": 67, + "title": "You Broke Me First." + }, + { + "artist": "Luke Combs", + "position": 68, + "title": "Forever After All" + }, + { + "artist": "CJ", + "position": 69, + "title": "Whoopty" + }, + { + "artist": "21 Savage & Metro Boomin Featuring Drake", + "position": 70, + "title": "Mr. Right Now" + }, + { + "artist": "Jhene Aiko Featuring H.E.R.", + "position": 71, + "title": "B.S." + }, + { + "artist": "Bad Bunny", + "position": 72, + "title": "Haciendo Que Me Amas" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 73, + "title": "My Ex's Best Friend" + }, + { + "artist": "Bad Bunny", + "position": 74, + "title": "Te Deseo Lo Mejor" + }, + { + "artist": "Kelly Clarkson & Brett Eldredge", + "position": 75, + "title": "Under The Mistletoe" + }, + { + "artist": "Morgan Wallen", + "position": 76, + "title": "7 Summers" + }, + { + "artist": "Shawn Mendes", + "position": 77, + "title": "Wonder" + }, + { + "artist": "Bad Bunny", + "position": 78, + "title": "Booker T" + }, + { + "artist": "Bad Bunny", + "position": 79, + "title": "El Mundo Es Mio" + }, + { + "artist": "Ariana Grande", + "position": 80, + "title": "pov" + }, + { + "artist": "Bad Bunny", + "position": 81, + "title": "Hoy Cobre" + }, + { + "artist": "Lady A", + "position": 82, + "title": "Champagne Night" + }, + { + "artist": "Justin Bieber", + "position": 83, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Morgan Wallen", + "position": 84, + "title": "Somebody's Problem" + }, + { + "artist": "BRS Kash", + "position": 85, + "title": "Throat Baby (Go Baby)" + }, + { + "artist": "Morgan Wallen", + "position": 86, + "title": "Still Goin Down" + }, + { + "artist": "Bad Bunny", + "position": 87, + "title": "Maldita Pobreza" + }, + { + "artist": "King Von", + "position": 88, + "title": "Took Her To The O" + }, + { + "artist": "Megan Thee Stallion Featuring Young Thug", + "position": 89, + "title": "Don't Stop" + }, + { + "artist": "SZA Featuring Ty Dolla $ign", + "position": 90, + "title": "Hit Different" + }, + { + "artist": "Jack Harlow", + "position": 91, + "title": "Tyler Herro" + }, + { + "artist": "Harry Styles", + "position": 92, + "title": "Golden" + }, + { + "artist": "Niko Moon", + "position": 93, + "title": "Good Time" + }, + { + "artist": "Bad Bunny", + "position": 94, + "title": "La Droga" + }, + { + "artist": "Carrie Underwood", + "position": 95, + "title": "Favorite Time Of Year" + }, + { + "artist": "Saweetie Featuring Jhene Aiko", + "position": 96, + "title": "Back To The Streets" + }, + { + "artist": "Polo G", + "position": 97, + "title": "Martin & Gina" + }, + { + "artist": "Kelsea Ballerini", + "position": 98, + "title": "Hole In The Bottle" + }, + { + "artist": "The Kid LAROI", + "position": 99, + "title": "So Done" + }, + { + "artist": "Karol G", + "position": 100, + "title": "Bichota" + } + ], + "title": "2020 - Hot 100" + }, + { + "songs": [ + { + "artist": "Gabby Barrett", + "position": 1, + "title": "I Hope" + }, + { + "artist": "Morgan Wallen", + "position": 2, + "title": "More Than My Hometown" + }, + { + "artist": "Blake Shelton Featuring Gwen Stefani", + "position": 3, + "title": "Happy Anywhere" + }, + { + "artist": "Parker McCollum", + "position": 4, + "title": "Pretty Heart" + }, + { + "artist": "Luke Combs", + "position": 5, + "title": "Better Together" + }, + { + "artist": "Chris Lane", + "position": 6, + "title": "Big, Big Plans" + }, + { + "artist": "Lee Brice", + "position": 7, + "title": "One Of Them Girls" + }, + { + "artist": "HARDY Featuring Lauren Alaina & Devin Dawson", + "position": 8, + "title": "One Beer" + }, + { + "artist": "Russell Dickerson", + "position": 9, + "title": "Love You Like I Used To" + }, + { + "artist": "Chris Stapleton", + "position": 10, + "title": "Starting Over" + }, + { + "artist": "Jon Pardi", + "position": 11, + "title": "Ain't Always The Cowboy" + }, + { + "artist": "Trey Lewis", + "position": 12, + "title": "Dicked Down In Dallas" + }, + { + "artist": "Dan + Shay", + "position": 13, + "title": "I Should Probably Go To Bed" + }, + { + "artist": "Luke Combs", + "position": 14, + "title": "Forever After All" + }, + { + "artist": "Kelly Clarkson & Brett Eldredge", + "position": 15, + "title": "Under The Mistletoe" + }, + { + "artist": "Morgan Wallen", + "position": 16, + "title": "7 Summers" + }, + { + "artist": "Lady A", + "position": 17, + "title": "Champagne Night" + }, + { + "artist": "Morgan Wallen", + "position": 18, + "title": "Somebody's Problem" + }, + { + "artist": "Morgan Wallen", + "position": 19, + "title": "Still Goin Down" + }, + { + "artist": "Niko Moon", + "position": 20, + "title": "Good Time" + }, + { + "artist": "Carrie Underwood", + "position": 21, + "title": "Favorite Time Of Year" + }, + { + "artist": "Kelsea Ballerini", + "position": 22, + "title": "Hole In The Bottle" + }, + { + "artist": "Kenny Chesney", + "position": 23, + "title": "Happy Does" + }, + { + "artist": "Thomas Rhett", + "position": 24, + "title": "What's Your Country Song" + }, + { + "artist": "Darius Rucker", + "position": 25, + "title": "Beers And Sunshine" + }, + { + "artist": "Carrie Underwood", + "position": 26, + "title": "Silent Night" + }, + { + "artist": "Florida Georgia Line", + "position": 27, + "title": "Long Live" + }, + { + "artist": "Gabby Barrett", + "position": 28, + "title": "The Good Ones" + }, + { + "artist": "Luke Bryan", + "position": 29, + "title": "Down To One" + }, + { + "artist": "Carrie Underwood & John Legend", + "position": 30, + "title": "Hallelujah" + }, + { + "artist": "Keith Urban Duet With P!nk", + "position": 31, + "title": "One Too Many" + }, + { + "artist": "Dustin Lynch", + "position": 32, + "title": "Momma's House" + }, + { + "artist": "Jordan Davis", + "position": 33, + "title": "Almost Maybes" + }, + { + "artist": "Dan + Shay", + "position": 34, + "title": "Take Me Home For Christmas" + }, + { + "artist": "Parmalee x Blanco Brown", + "position": 35, + "title": "Just The Way" + }, + { + "artist": "Morgan Wallen", + "position": 36, + "title": "Livin' The Dream" + }, + { + "artist": "Rascal Flatts", + "position": 37, + "title": "How They Remember You" + }, + { + "artist": "Eric Church", + "position": 38, + "title": "Hell Of A View" + }, + { + "artist": "Brett Young", + "position": 39, + "title": "Lady" + }, + { + "artist": "Sam Hunt", + "position": 40, + "title": "Breaking Up Was Easy In The 90's" + }, + { + "artist": "Dierks Bentley", + "position": 41, + "title": "Gone" + }, + { + "artist": "Little Big Town", + "position": 42, + "title": "Wine, Beer, Whiskey" + }, + { + "artist": "Miranda Lambert", + "position": 43, + "title": "Settling Down" + }, + { + "artist": "Tenille Arts", + "position": 44, + "title": "Somebody Like That" + }, + { + "artist": "Brothers Osborne", + "position": 45, + "title": "All Night" + }, + { + "artist": "Garth Brooks & Trisha Yearwood", + "position": 46, + "title": "Shallow" + }, + { + "artist": "Maren Morris", + "position": 47, + "title": "To Hell & Back" + }, + { + "artist": "Taylor Swift", + "position": 48, + "title": "Betty" + }, + { + "artist": "Nelly & Florida Georgia Line", + "position": 49, + "title": "Lil Bit" + }, + { + "artist": "Dylan Scott", + "position": 50, + "title": "Nobody" + } + ], + "title": "2020 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Panic! At The Disco", + "position": 1, + "title": "High Hopes" + }, + { + "artist": "Panic! At The Disco", + "position": 2, + "title": "Hey Look Ma, I Made It" + }, + { + "artist": "Marshmello, YUNGBLUD & blackbear", + "position": 3, + "title": "Tongue Tied" + }, + { + "artist": "Coldplay", + "position": 4, + "title": "Orphans" + }, + { + "artist": "twenty one pilots", + "position": 5, + "title": "The Hype" + }, + { + "artist": "Highly Suspect", + "position": 6, + "title": "16" + }, + { + "artist": "Machine Gun Kelly X YUNGBLUD X Travis Barker", + "position": 7, + "title": "I Think I'm OKAY" + }, + { + "artist": "Meg Myers", + "position": 8, + "title": "Running Up That Hill" + }, + { + "artist": "Weezer", + "position": 9, + "title": "The End Of The Game" + }, + { + "artist": "Ozzy Osbourne", + "position": 10, + "title": "Under The Graveyard" + }, + { + "artist": "Green Day", + "position": 11, + "title": "Father Of All..." + }, + { + "artist": "Cage The Elephant", + "position": 12, + "title": "Social Cues" + }, + { + "artist": "Rex Orange County", + "position": 13, + "title": "10/10" + }, + { + "artist": "Cory Marks Featuring Travis Tritt, Ivan Moody & Mick Mars", + "position": 14, + "title": "Outlaws & Outsiders" + }, + { + "artist": "Dermot Kennedy", + "position": 15, + "title": "Outnumbered" + }, + { + "artist": "Tool", + "position": 16, + "title": "Fear Inoculum" + }, + { + "artist": "White Reaper", + "position": 17, + "title": "Might Be Right" + }, + { + "artist": "girl in red", + "position": 18, + "title": "we fell in love in october" + }, + { + "artist": "Fall Out Boy Featuring Wyclef Jean", + "position": 19, + "title": "Dear Future Self (Hands Up)" + }, + { + "artist": "Local Natives", + "position": 20, + "title": "When Am I Gonna Lose You" + }, + { + "artist": "Bad Wolves", + "position": 21, + "title": "Killing Me Slowly" + }, + { + "artist": "AJR", + "position": 22, + "title": "Dear Winter" + }, + { + "artist": "The Black Keys", + "position": 23, + "title": "Go" + }, + { + "artist": "Neon Trees", + "position": 24, + "title": "Used To Like" + }, + { + "artist": "Blink-182", + "position": 25, + "title": "I Really Wish I Hated You" + }, + { + "artist": "Badflower", + "position": 26, + "title": "The Jester" + }, + { + "artist": "YUNGBLUD Featuring Dan Reynolds", + "position": 27, + "title": "Original Me" + }, + { + "artist": "Mumford & Sons", + "position": 28, + "title": "Blind Leading The Blind" + }, + { + "artist": "Tame Impala", + "position": 29, + "title": "It Might Be Time" + }, + { + "artist": "Papa Roach", + "position": 30, + "title": "Come Around" + }, + { + "artist": "Bring Me The Horizon", + "position": 31, + "title": "Ludens" + }, + { + "artist": "Dayglow", + "position": 32, + "title": "Can I Call You Tonight?" + }, + { + "artist": "Skillet", + "position": 33, + "title": "Legendary" + }, + { + "artist": "The Lumineers", + "position": 34, + "title": "Life In The City" + }, + { + "artist": "Dinosaur Pile-Up", + "position": 35, + "title": "Back Foot" + }, + { + "artist": "AWOLNATION", + "position": 36, + "title": "The Best" + }, + { + "artist": "ONE OK ROCK", + "position": 37, + "title": "Stand Out Fit In" + }, + { + "artist": "Rex Orange County", + "position": 38, + "title": "Pluto Projector" + }, + { + "artist": "I Prevail", + "position": 39, + "title": "Hurricane" + }, + { + "artist": "Coldplay", + "position": 40, + "title": "Everyday Life" + }, + { + "artist": "guardin", + "position": 41, + "title": "i think you're really cool" + }, + { + "artist": "The Unlikely Candidates", + "position": 42, + "title": "Novocaine" + }, + { + "artist": "Beach Bunny", + "position": 43, + "title": "Prom Queen" + }, + { + "artist": "YUNGBLUD", + "position": 44, + "title": "Parents" + }, + { + "artist": "Falling In Reverse", + "position": 45, + "title": "Popular Monster" + }, + { + "artist": "Cold War Kids", + "position": 46, + "title": "Complainer" + }, + { + "artist": "Beck", + "position": 47, + "title": "Uneventful Days" + }, + { + "artist": "HAIM", + "position": 48, + "title": "Now I'm In It" + }, + { + "artist": "X Ambassadors", + "position": 49, + "title": "Hold You Down" + }, + { + "artist": "Of Monsters And Men", + "position": 50, + "title": "Wars" + } + ], + "title": "2019 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Lizzo", + "position": 1, + "title": "Good As Hell" + }, + { + "artist": "Chris Brown Featuring Drake", + "position": 2, + "title": "No Guidance" + }, + { + "artist": "Lizzo", + "position": 3, + "title": "Truth Hurts" + }, + { + "artist": "Lil Nas X", + "position": 4, + "title": "Panini" + }, + { + "artist": "Arizona Zervas", + "position": 5, + "title": "Roxanne" + }, + { + "artist": "Travis Scott", + "position": 6, + "title": "HIGHEST IN THE ROOM" + }, + { + "artist": "Lil Baby", + "position": 7, + "title": "Woah" + }, + { + "artist": "DaBaby", + "position": 8, + "title": "BOP" + }, + { + "artist": "Mustard Featuring Roddy Ricch", + "position": 9, + "title": "Ballin'" + }, + { + "artist": "Young Thug Featuring Gunna", + "position": 10, + "title": "Hot" + }, + { + "artist": "Lil Tecca", + "position": 11, + "title": "Ran$om" + }, + { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "position": 12, + "title": "Bandit" + }, + { + "artist": "Wale Featuring Jeremih", + "position": 13, + "title": "On Chill" + }, + { + "artist": "Post Malone Featuring Young Thug", + "position": 14, + "title": "Goodbyes" + }, + { + "artist": "Lil Baby & DaBaby", + "position": 15, + "title": "Baby" + }, + { + "artist": "Summer Walker", + "position": 16, + "title": "Playing Games" + }, + { + "artist": "Chris Brown Featuring Gunna", + "position": 17, + "title": "Heat" + }, + { + "artist": "blackbear", + "position": 18, + "title": "Hot Girl Bummer" + }, + { + "artist": "NF", + "position": 19, + "title": "Time" + }, + { + "artist": "Tory Lanez & T-Pain", + "position": 20, + "title": "Jerry Sprunger" + }, + { + "artist": "Drake Featuring Rick Ross", + "position": 21, + "title": "Money In The Grave" + }, + { + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "position": 22, + "title": "Reply" + }, + { + "artist": "Doja Cat & Tyga", + "position": 23, + "title": "Juicy" + }, + { + "artist": "Kanye West", + "position": 24, + "title": "Follow God" + }, + { + "artist": "Rod Wave", + "position": 25, + "title": "Heart On Ice" + }, + { + "artist": "Jhene Aiko Featuring Big Sean", + "position": 26, + "title": "None Of Your Concern" + }, + { + "artist": "YNW Melly & 9lokknine", + "position": 27, + "title": "223's" + }, + { + "artist": "NLE Choppa", + "position": 28, + "title": "Camelot" + }, + { + "artist": "DaBaby", + "position": 29, + "title": "VIBEZ" + }, + { + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "position": 30, + "title": "Leave Em Alone" + }, + { + "artist": "DaBaby Featuring Offset", + "position": 31, + "title": "Baby Sitter" + }, + { + "artist": "Tory Lanez Featuring Chris Brown", + "position": 32, + "title": "The Take" + }, + { + "artist": "Post Malone Featuring DaBaby", + "position": 33, + "title": "Enemies" + }, + { + "artist": "Trevor Daniel", + "position": 34, + "title": "Falling" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 35, + "title": "Make No Sense" + }, + { + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "position": 36, + "title": "Hot Girl Summer" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 37, + "title": "Lonely Child" + }, + { + "artist": "Lil Mosey x Gunna", + "position": 38, + "title": "Stuck In A Dream" + }, + { + "artist": "Joji", + "position": 39, + "title": "Slow Dancing In The Dark" + }, + { + "artist": "Tory Lanez Featuring Snoop Dogg", + "position": 40, + "title": "Beauty In The Benz" + }, + { + "artist": "DaniLeigh Featuring Chris Brown", + "position": 41, + "title": "Easy" + }, + { + "artist": "Khalid", + "position": 42, + "title": "Up All Night" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 43, + "title": "Self Control" + }, + { + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "position": 44, + "title": "Hot Shower" + }, + { + "artist": "Trippie Redd Featuring DaBaby", + "position": 45, + "title": "Death" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 46, + "title": "Hot Now" + }, + { + "artist": "Summer Walker & Usher", + "position": 47, + "title": "Come Thru" + }, + { + "artist": "Tory Lanez Featuring Jagged Edge & Jermaine Dupri", + "position": 48, + "title": "The Trade" + }, + { + "artist": "Russ & BIA", + "position": 49, + "title": "BEST ON EARTH" + }, + { + "artist": "Alicia Keys Featuring Miguel", + "position": 50, + "title": "Show Me Love" + } + ], + "title": "2019 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Lizzo", + "position": 1, + "title": "Good As Hell" + }, + { + "artist": "Post Malone", + "position": 2, + "title": "Circles" + }, + { + "artist": "Lewis Capaldi", + "position": 3, + "title": "Someone You Loved" + }, + { + "artist": "Jonas Brothers", + "position": 4, + "title": "Only Human" + }, + { + "artist": "SHAED", + "position": 5, + "title": "Trampoline" + }, + { + "artist": "Ed Sheeran Featuring Khalid", + "position": 6, + "title": "Beautiful People" + }, + { + "artist": "Lizzo", + "position": 7, + "title": "Truth Hurts" + }, + { + "artist": "Maroon 5", + "position": 8, + "title": "Memories" + }, + { + "artist": "Selena Gomez", + "position": 9, + "title": "Lose You To Love Me" + }, + { + "artist": "Sam Smith", + "position": 10, + "title": "How Do You Sleep?" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 11, + "title": "Senorita" + }, + { + "artist": "NF", + "position": 12, + "title": "Time" + }, + { + "artist": "Lil Nas X", + "position": 13, + "title": "Panini" + }, + { + "artist": "Halsey", + "position": 14, + "title": "Graveyard" + }, + { + "artist": "Dan + Shay & Justin Bieber", + "position": 15, + "title": "10,000 Hours" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "Lover" + }, + { + "artist": "Marshmello & Kane Brown", + "position": 17, + "title": "One Thing Right" + }, + { + "artist": "Dua Lipa", + "position": 18, + "title": "Don't Start Now" + }, + { + "artist": "Tones And I", + "position": 19, + "title": "Dance Monkey" + }, + { + "artist": "Billie Eilish", + "position": 20, + "title": "All The Good Girls Go To Hell" + }, + { + "artist": "Niall Horan", + "position": 21, + "title": "Nice To Meet Ya" + }, + { + "artist": "Camila Cabello", + "position": 22, + "title": "Liar" + }, + { + "artist": "Why Don't We", + "position": 23, + "title": "What Am I" + }, + { + "artist": "blackbear", + "position": 24, + "title": "Hot Girl Bummer" + }, + { + "artist": "Saweetie", + "position": 25, + "title": "My Type" + }, + { + "artist": "Kesha Featuring Big Freedia", + "position": 26, + "title": "Raising Hell" + }, + { + "artist": "Diplo Presents Thomas Wesley With Jonas Brothers", + "position": 27, + "title": "Lonely" + }, + { + "artist": "5 Seconds Of Summer", + "position": 28, + "title": "Teeth" + }, + { + "artist": "French Montana Featuring Post Malone, Cardi B & Rvssian", + "position": 29, + "title": "Writing On The Wall" + }, + { + "artist": "Arizona Zervas", + "position": 30, + "title": "Roxanne" + }, + { + "artist": "AJ Mitchell & Ava Max", + "position": 31, + "title": "Slow Dance" + }, + { + "artist": "Travis Scott", + "position": 32, + "title": "HIGHEST IN THE ROOM" + }, + { + "artist": "Lauv Featuring Anne-Marie", + "position": 33, + "title": "fuck, i'm lonely" + }, + { + "artist": "Chris Brown Featuring Drake", + "position": 34, + "title": "No Guidance" + }, + { + "artist": "BTS Featuring Lauv", + "position": 35, + "title": "Make It Right" + }, + { + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "position": 36, + "title": "Take What You Want" + }, + { + "artist": "Loud Luxury And Bryce Vine", + "position": 37, + "title": "I'm Not Alright" + }, + { + "artist": "Charlie Puth", + "position": 38, + "title": "Mother" + }, + { + "artist": "Public", + "position": 39, + "title": "Make You Mine" + }, + { + "artist": "Zedd & Kehlani", + "position": 40, + "title": "Good Thing" + } + ], + "title": "2019 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Post Malone", + "position": 1, + "title": "Circles" + }, + { + "artist": "Lewis Capaldi", + "position": 2, + "title": "Someone You Loved" + }, + { + "artist": "Lizzo", + "position": 3, + "title": "Good As Hell" + }, + { + "artist": "Maroon 5", + "position": 4, + "title": "Memories" + }, + { + "artist": "Selena Gomez", + "position": 5, + "title": "Lose You To Love Me" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 6, + "title": "Senorita" + }, + { + "artist": "Chris Brown Featuring Drake", + "position": 7, + "title": "No Guidance" + }, + { + "artist": "Billie Eilish", + "position": 8, + "title": "everything i wanted" + }, + { + "artist": "Dan + Shay & Justin Bieber", + "position": 9, + "title": "10,000 Hours" + }, + { + "artist": "Lizzo", + "position": 10, + "title": "Truth Hurts" + }, + { + "artist": "Lil Nas X", + "position": 11, + "title": "Panini" + }, + { + "artist": "Arizona Zervas", + "position": 12, + "title": "Roxanne" + }, + { + "artist": "SHAED", + "position": 13, + "title": "Trampoline" + }, + { + "artist": "Travis Scott", + "position": 14, + "title": "HIGHEST IN THE ROOM" + }, + { + "artist": "Taylor Swift", + "position": 15, + "title": "Lover" + }, + { + "artist": "Lil Baby", + "position": 16, + "title": "Woah" + }, + { + "artist": "Billie Eilish", + "position": 17, + "title": "Bad Guy" + }, + { + "artist": "DaBaby", + "position": 18, + "title": "BOP" + }, + { + "artist": "Tones And I", + "position": 19, + "title": "Dance Monkey" + }, + { + "artist": "Mustard Featuring Roddy Ricch", + "position": 20, + "title": "Ballin'" + }, + { + "artist": "Young Thug Featuring Gunna", + "position": 21, + "title": "Hot" + }, + { + "artist": "Old Dominion", + "position": 22, + "title": "One Man Band" + }, + { + "artist": "Ed Sheeran Featuring Khalid", + "position": 23, + "title": "Beautiful People" + }, + { + "artist": "Jonas Brothers", + "position": 24, + "title": "Only Human" + }, + { + "artist": "Luke Combs", + "position": 25, + "title": "Even Though I'm Leaving" + }, + { + "artist": "Lil Tecca", + "position": 26, + "title": "Ran$om" + }, + { + "artist": "Lil Nas X Featuring Billy Ray Cyrus", + "position": 27, + "title": "Old Town Road" + }, + { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "position": 28, + "title": "Bandit" + }, + { + "artist": "Wale Featuring Jeremih", + "position": 29, + "title": "On Chill" + }, + { + "artist": "Ed Sheeran & Justin Bieber", + "position": 30, + "title": "I Don't Care" + }, + { + "artist": "Mariah Carey", + "position": 31, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Khalid", + "position": 32, + "title": "Talk" + }, + { + "artist": "Post Malone Featuring Young Thug", + "position": 33, + "title": "Goodbyes" + }, + { + "artist": "Lil Baby & DaBaby", + "position": 34, + "title": "Baby" + }, + { + "artist": "Sam Smith", + "position": 35, + "title": "How Do You Sleep?" + }, + { + "artist": "Summer Walker", + "position": 36, + "title": "Playing Games" + }, + { + "artist": "Chris Brown Featuring Gunna", + "position": 37, + "title": "Heat" + }, + { + "artist": "Jonas Brothers", + "position": 38, + "title": "Sucker" + }, + { + "artist": "Halsey", + "position": 39, + "title": "Graveyard" + }, + { + "artist": "DaBaby", + "position": 40, + "title": "Suge" + }, + { + "artist": "blackbear", + "position": 41, + "title": "Hot Girl Bummer" + }, + { + "artist": "Dua Lipa", + "position": 42, + "title": "Don't Start Now" + }, + { + "artist": "NF", + "position": 43, + "title": "Time" + }, + { + "artist": "Tory Lanez & T-Pain", + "position": 44, + "title": "Jerry Sprunger" + }, + { + "artist": "Marshmello & Kane Brown", + "position": 45, + "title": "One Thing Right" + }, + { + "artist": "Drake Featuring Rick Ross", + "position": 46, + "title": "Money In The Grave" + }, + { + "artist": "Lady Antebellum", + "position": 47, + "title": "What If I Never Get Over You" + }, + { + "artist": "Sam Smith & Normani", + "position": 48, + "title": "Dancing With A Stranger" + }, + { + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "position": 49, + "title": "Reply" + }, + { + "artist": "Maren Morris", + "position": 50, + "title": "The Bones" + }, + { + "artist": "Doja Cat & Tyga", + "position": 51, + "title": "Juicy" + }, + { + "artist": "Kanye West", + "position": 52, + "title": "Follow God" + }, + { + "artist": "Thomas Rhett", + "position": 53, + "title": "Remember You Young" + }, + { + "artist": "Rod Wave", + "position": 54, + "title": "Heart On Ice" + }, + { + "artist": "Jhene Aiko Featuring Big Sean", + "position": 55, + "title": "None Of Your Concern" + }, + { + "artist": "YNW Melly & 9lokknine", + "position": 56, + "title": "223's" + }, + { + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "position": 57, + "title": "Take What You Want" + }, + { + "artist": "NLE Choppa", + "position": 58, + "title": "Camelot" + }, + { + "artist": "DaBaby", + "position": 59, + "title": "VIBEZ" + }, + { + "artist": "Harry Styles", + "position": 60, + "title": "Watermelon Sugar" + }, + { + "artist": "Matt Stell", + "position": 61, + "title": "Prayed For You" + }, + { + "artist": "Sam Hunt", + "position": 62, + "title": "Kinfolks" + }, + { + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "position": 63, + "title": "Leave Em Alone" + }, + { + "artist": "DaBaby Featuring Offset", + "position": 64, + "title": "Baby Sitter" + }, + { + "artist": "Keith Urban", + "position": 65, + "title": "We Were" + }, + { + "artist": "Tory Lanez Featuring Chris Brown", + "position": 66, + "title": "The Take" + }, + { + "artist": "Jon Pardi", + "position": 67, + "title": "Heartache Medication" + }, + { + "artist": "Post Malone Featuring DaBaby", + "position": 68, + "title": "Enemies" + }, + { + "artist": "Ellie Goulding & Juice WRLD", + "position": 69, + "title": "Hate Me" + }, + { + "artist": "Dustin Lynch", + "position": 70, + "title": "Ridin' Roads" + }, + { + "artist": "Niall Horan", + "position": 71, + "title": "Nice To Meet Ya" + }, + { + "artist": "Camila Cabello", + "position": 72, + "title": "Liar" + }, + { + "artist": "Russell Dickerson", + "position": 73, + "title": "Every Little Thing" + }, + { + "artist": "Kenny Chesney", + "position": 74, + "title": "Tip Of My Tongue" + }, + { + "artist": "Trevor Daniel", + "position": 75, + "title": "Falling" + }, + { + "artist": "Billie Eilish", + "position": 76, + "title": "All The Good Girls Go To Hell" + }, + { + "artist": "Harry Styles", + "position": 77, + "title": "Lights Up" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 78, + "title": "Make No Sense" + }, + { + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "position": 79, + "title": "Hot Girl Summer" + }, + { + "artist": "Chris Lane", + "position": 80, + "title": "I Don't Know About You" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 81, + "title": "Lonely Child" + }, + { + "artist": "Lil Mosey x Gunna", + "position": 82, + "title": "Stuck In A Dream" + }, + { + "artist": "Kelsea Ballerini", + "position": 83, + "title": "homecoming queen?" + }, + { + "artist": "Chris Janson", + "position": 84, + "title": "Good Vibes" + }, + { + "artist": "Joji", + "position": 85, + "title": "Slow Dancing In The Dark" + }, + { + "artist": "J Balvin & Bad Bunny", + "position": 86, + "title": "La Cancion" + }, + { + "artist": "Tory Lanez Featuring Snoop Dogg", + "position": 87, + "title": "Beauty In The Benz" + }, + { + "artist": "DaniLeigh Featuring Chris Brown", + "position": 88, + "title": "Easy" + }, + { + "artist": "Khalid", + "position": 89, + "title": "Up All Night" + }, + { + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "position": 90, + "title": "Heartless" + }, + { + "artist": "Y2K & bbno$", + "position": 91, + "title": "Lalala" + }, + { + "artist": "Karol G & Nicki Minaj", + "position": 92, + "title": "Tusa" + }, + { + "artist": "Jason Aldean", + "position": 93, + "title": "We Back " + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 94, + "title": "Self Control" + }, + { + "artist": "Kane Brown", + "position": 95, + "title": "Homesick" + }, + { + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "position": 96, + "title": "Hot Shower" + }, + { + "artist": "Trippie Redd Featuring DaBaby", + "position": 97, + "title": "Death" + }, + { + "artist": "Ant Saunders", + "position": 98, + "title": "Yellow Hearts" + }, + { + "artist": "Blake Shelton Featuring Trace Adkins", + "position": 99, + "title": "Hell Right" + }, + { + "artist": "The Black Eyed Peas X J Balvin", + "position": 100, + "title": "RITMO (Bad Boys For Life)" + } + ], + "title": "2019 - Hot 100" + }, + { + "songs": [ + { + "artist": "Dan + Shay & Justin Bieber", + "position": 1, + "title": "10,000 Hours" + }, + { + "artist": "Old Dominion", + "position": 2, + "title": "One Man Band" + }, + { + "artist": "Luke Combs", + "position": 3, + "title": "Even Though I'm Leaving" + }, + { + "artist": "Marshmello & Kane Brown", + "position": 4, + "title": "One Thing Right" + }, + { + "artist": "Lady Antebellum", + "position": 5, + "title": "What If I Never Get Over You" + }, + { + "artist": "Maren Morris", + "position": 6, + "title": "The Bones" + }, + { + "artist": "Thomas Rhett", + "position": 7, + "title": "Remember You Young" + }, + { + "artist": "Matt Stell", + "position": 8, + "title": "Prayed For You" + }, + { + "artist": "Sam Hunt", + "position": 9, + "title": "Kinfolks" + }, + { + "artist": "Keith Urban", + "position": 10, + "title": "We Were" + }, + { + "artist": "Jon Pardi", + "position": 11, + "title": "Heartache Medication" + }, + { + "artist": "Dustin Lynch", + "position": 12, + "title": "Ridin' Roads" + }, + { + "artist": "Kenny Chesney", + "position": 13, + "title": "Tip Of My Tongue" + }, + { + "artist": "Kelsea Ballerini", + "position": 14, + "title": "homecoming queen?" + }, + { + "artist": "Blanco Brown", + "position": 15, + "title": "The Git Up" + }, + { + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "position": 16, + "title": "Heartless" + }, + { + "artist": "Jason Aldean", + "position": 17, + "title": "We Back " + }, + { + "artist": "Kane Brown", + "position": 18, + "title": "Homesick" + }, + { + "artist": "Blake Shelton Featuring Trace Adkins", + "position": 19, + "title": "Hell Right" + }, + { + "artist": "Luke Bryan", + "position": 20, + "title": "What She Wants Tonight" + }, + { + "artist": "Gabby Barrett", + "position": 21, + "title": "I Hope" + }, + { + "artist": "Miranda Lambert", + "position": 22, + "title": "It All Comes Out In The Wash" + }, + { + "artist": "Jimmie Allen", + "position": 23, + "title": "Make Me Want To" + }, + { + "artist": "Ingrid Andress", + "position": 24, + "title": "More Hearts Than Mine" + }, + { + "artist": "Garth Brooks & Blake Shelton", + "position": 25, + "title": "Dive Bar" + }, + { + "artist": "Jordan Davis", + "position": 26, + "title": "Slow Dance In A Parking Lot" + }, + { + "artist": "Luke Combs", + "position": 27, + "title": "Better Together" + }, + { + "artist": "Riley Green", + "position": 28, + "title": "I Wish Grandpas Never Died" + }, + { + "artist": "Ryan Hurd", + "position": 29, + "title": "To A T" + }, + { + "artist": "Brett Young", + "position": 30, + "title": "Catch" + }, + { + "artist": "Jake Owen", + "position": 31, + "title": "Homemade" + }, + { + "artist": "Morgan Wallen", + "position": 32, + "title": "Chasin' You" + }, + { + "artist": "Luke Combs & Brooks & Dunn", + "position": 33, + "title": "1, 2 Many" + }, + { + "artist": "Carly Pearce & Lee Brice", + "position": 34, + "title": "I Hope You're Happy Now" + }, + { + "artist": "Luke Combs", + "position": 35, + "title": "What You See Is What You Get" + }, + { + "artist": "Carrie Underwood", + "position": 36, + "title": "Drinking Alone" + }, + { + "artist": "Luke Combs", + "position": 37, + "title": "Refrigerator Door" + }, + { + "artist": "Luke Combs", + "position": 38, + "title": "Reasons" + }, + { + "artist": "Luke Combs", + "position": 39, + "title": "All Over Again" + }, + { + "artist": "Travis Denning", + "position": 40, + "title": "After A Few" + }, + { + "artist": "Luke Combs Featuring Eric Church", + "position": 41, + "title": "Does To Me" + }, + { + "artist": "Maddie & Tae", + "position": 42, + "title": "Die From A Broken Heart" + }, + { + "artist": "Michael Ray", + "position": 43, + "title": "Her World Or Mine" + }, + { + "artist": "Chris Young", + "position": 44, + "title": "Drowning" + }, + { + "artist": "Kane Brown", + "position": 45, + "title": "For My Daughter" + }, + { + "artist": "Luke Combs", + "position": 46, + "title": "Moon Over Mexico" + }, + { + "artist": "Luke Combs", + "position": 47, + "title": "Nothing Like You" + }, + { + "artist": "Luke Combs", + "position": 48, + "title": "Lovin' On You" + }, + { + "artist": "Caylee Hammack", + "position": 49, + "title": "Family Tree" + }, + { + "artist": "Eric Church", + "position": 50, + "title": "Monsters" + } + ], + "title": "2019 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Panic! At The Disco", + "position": 1, + "title": "High Hopes" + }, + { + "artist": "Imagine Dragons", + "position": 2, + "title": "Natural" + }, + { + "artist": "lovelytheband", + "position": 3, + "title": "Broken" + }, + { + "artist": "Queen", + "position": 4, + "title": "Bohemian Rhapsody" + }, + { + "artist": "Queen", + "position": 5, + "title": "Somebody To Love" + }, + { + "artist": "Queen", + "position": 6, + "title": "Another One Bites The Dust" + }, + { + "artist": "Queen", + "position": 7, + "title": "We Will Rock You" + }, + { + "artist": "Queen", + "position": 8, + "title": "Don't Stop Me Now" + }, + { + "artist": "twenty one pilots", + "position": 9, + "title": "My Blood" + }, + { + "artist": "Queen & David Bowie", + "position": 10, + "title": "Under Pressure" + }, + { + "artist": "Weezer", + "position": 11, + "title": "Africa" + }, + { + "artist": "Queen", + "position": 12, + "title": "Killer Queen" + }, + { + "artist": "Queen", + "position": 13, + "title": "We Are The Champions" + }, + { + "artist": "Imagine Dragons", + "position": 14, + "title": "Bad Liar" + }, + { + "artist": "Mumford & Sons", + "position": 15, + "title": "Guiding Light" + }, + { + "artist": "Imagine Dragons", + "position": 16, + "title": "Zero" + }, + { + "artist": "Queen", + "position": 17, + "title": "I Want To Break Free" + }, + { + "artist": "flora cash", + "position": 18, + "title": "You're Somebody Else" + }, + { + "artist": "Queen", + "position": 19, + "title": "Radio Ga Ga" + }, + { + "artist": "Queen", + "position": 20, + "title": "Crazy Little Thing Called Love" + }, + { + "artist": "Queen", + "position": 21, + "title": "Fat Bottomed Girls" + }, + { + "artist": "Panic! At The Disco", + "position": 22, + "title": "The Greatest Show" + }, + { + "artist": "Queen", + "position": 23, + "title": "Love Of My Life" + }, + { + "artist": "George Ezra", + "position": 24, + "title": "Shotgun" + }, + { + "artist": "Shinedown", + "position": 25, + "title": "Get Up" + }, + { + "artist": "The Revivalists", + "position": 26, + "title": "All My Friends" + }, + { + "artist": "The Interrupters", + "position": 27, + "title": "She's Kerosene" + }, + { + "artist": "Bad Wolves Featuring DIAMANTE", + "position": 28, + "title": "Hear Me Now" + }, + { + "artist": "Disturbed", + "position": 29, + "title": "Are You Ready" + }, + { + "artist": "Hozier", + "position": 30, + "title": "Movement" + }, + { + "artist": "The Struts", + "position": 31, + "title": "Body Talks" + }, + { + "artist": "The Glorious Sons", + "position": 32, + "title": "S.O.S. (Sawed Off Shotgun)" + }, + { + "artist": "Muse", + "position": 33, + "title": "Pressure" + }, + { + "artist": "Godsmack", + "position": 34, + "title": "When Legends Rise" + }, + { + "artist": "Queen", + "position": 35, + "title": "Hammer To Fall (Live Aid)" + }, + { + "artist": "Imagine Dragons", + "position": 36, + "title": "Machine" + }, + { + "artist": "The 1975", + "position": 37, + "title": "Love It If We Made It" + }, + { + "artist": "Queen", + "position": 38, + "title": "Radio Ga Ga (Live Aid)" + }, + { + "artist": "Slipknot", + "position": 39, + "title": "All Out Life" + }, + { + "artist": "Young The Giant", + "position": 40, + "title": "Superposition" + }, + { + "artist": "twenty one pilots", + "position": 41, + "title": "Chlorine" + }, + { + "artist": "Mumford & Sons", + "position": 42, + "title": "42" + }, + { + "artist": "Foster The People", + "position": 43, + "title": "Worst Nites" + }, + { + "artist": "lovelytheband", + "position": 44, + "title": "These Are My Friends" + }, + { + "artist": "Greta Van Fleet", + "position": 45, + "title": "When The Curtain Falls" + }, + { + "artist": "Ghost", + "position": 46, + "title": "Dance Macabre" + }, + { + "artist": "Queen", + "position": 47, + "title": "Ay-Oh (Live Aid)" + }, + { + "artist": "Bring Me The Horizon", + "position": 48, + "title": "Mantra" + }, + { + "artist": "Portugal. The Man", + "position": 49, + "title": "Tidal Wave" + }, + { + "artist": "Elle King", + "position": 50, + "title": "Shame" + } + ], + "title": "2018 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Travis Scott", + "position": 1, + "title": "Sicko Mode" + }, + { + "artist": "Sheck Wes", + "position": 2, + "title": "Mo Bamba" + }, + { + "artist": "Kodak Black Featuring Travis Scott & Offset", + "position": 3, + "title": "ZEZE" + }, + { + "artist": "Lil Baby & Gunna", + "position": 4, + "title": "Drip Too Hard" + }, + { + "artist": "Juice WRLD", + "position": 5, + "title": "Lucid Dreams" + }, + { + "artist": "Post Malone", + "position": 6, + "title": "Better Now" + }, + { + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "position": 7, + "title": "Wake Up In The Sky" + }, + { + "artist": "Ella Mai", + "position": 8, + "title": "Trip" + }, + { + "artist": "Post Malone & Swae Lee", + "position": 9, + "title": "Sunflower (Spider-Man: Into The Spider-Verse)" + }, + { + "artist": "Cardi B", + "position": 10, + "title": "Money" + }, + { + "artist": "Flipp Dinero", + "position": 11, + "title": "Leave Me Alone" + }, + { + "artist": "Khalid", + "position": 12, + "title": "Better" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "position": 13, + "title": "FEFE" + }, + { + "artist": "Drake", + "position": 14, + "title": "In My Feelings" + }, + { + "artist": "Lil Wayne", + "position": 15, + "title": "Uproar" + }, + { + "artist": "Drake", + "position": 16, + "title": "Nonstop" + }, + { + "artist": "Cardi B Featuring Kehlani", + "position": 17, + "title": "Ring" + }, + { + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "position": 18, + "title": "Dangerous" + }, + { + "artist": "NF", + "position": 19, + "title": "Lie" + }, + { + "artist": "XXXTENTACION", + "position": 20, + "title": "BAD!" + }, + { + "artist": "Juice WRLD", + "position": 21, + "title": "Armed And Dangerous" + }, + { + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "position": 22, + "title": "Arms Around You" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "position": 23, + "title": "MAMA" + }, + { + "artist": "6ix9ine Featuring Tory Lanez", + "position": 24, + "title": "KIKA" + }, + { + "artist": "YG Featuring 2 Chainz, Big Sean & Nicki Minaj", + "position": 25, + "title": "Big Bank" + }, + { + "artist": "6ix9ine Featuring Bobby Shmurda", + "position": 26, + "title": "STOOPID" + }, + { + "artist": "6ix9ine Featuring Lil Baby", + "position": 27, + "title": "TIC TOC" + }, + { + "artist": "Lil Baby", + "position": 28, + "title": "Close Friends" + }, + { + "artist": "Future & Juice WRLD", + "position": 29, + "title": "Fine China" + }, + { + "artist": "Trippie Redd", + "position": 30, + "title": "Topanga" + }, + { + "artist": "Yella Beezy", + "position": 31, + "title": "That's On Me" + }, + { + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "position": 32, + "title": "Smile (Living My Best Life)" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 33, + "title": "10 Freaky Girls" + }, + { + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "position": 34, + "title": "WAKA" + }, + { + "artist": "Trippie Redd Featuring Juice WRLD", + "position": 35, + "title": "1400 / 999 Freestyle" + }, + { + "artist": "French Montana Featuring Drake", + "position": 36, + "title": "No Stylist" + }, + { + "artist": "Tory Lanez & Rich The Kid", + "position": 37, + "title": "Talk To Me" + }, + { + "artist": "Pardison Fontaine Featuring Cardi B", + "position": 38, + "title": "Backin' It Up" + }, + { + "artist": "Tyga & Nicki Minaj", + "position": 39, + "title": "Dip" + }, + { + "artist": "Lil Baby & Gunna Featuring Drake", + "position": 40, + "title": "Never Recover" + }, + { + "artist": "Jacquees", + "position": 41, + "title": "You" + }, + { + "artist": "Metro Boomin Featuring Gunna", + "position": 42, + "title": "Space Cadet" + }, + { + "artist": "Daniel Caesar Featuring H.E.R.", + "position": 43, + "title": "Best Part" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 44, + "title": "Don't Come Out The House" + }, + { + "artist": "Kanye West & Lil Pump", + "position": 45, + "title": "I Love It" + }, + { + "artist": "Lil Mosey", + "position": 46, + "title": "Noticed" + }, + { + "artist": "Quavo", + "position": 47, + "title": "W O R K I N M E" + }, + { + "artist": "Eminem Featuring Joyner Lucas", + "position": 48, + "title": "Lucky You" + }, + { + "artist": "Amine", + "position": 49, + "title": "Reel It In" + }, + { + "artist": "6ix9ine Featuring DJ SPINKING", + "position": 50, + "title": "TATI" + } + ], + "title": "2018 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Marshmello & Bastille", + "position": 1, + "title": "Happier" + }, + { + "artist": "Panic! At The Disco", + "position": 2, + "title": "High Hopes" + }, + { + "artist": "Ariana Grande", + "position": 3, + "title": "Breathin" + }, + { + "artist": "5 Seconds Of Summer", + "position": 4, + "title": "Youngblood" + }, + { + "artist": "Khalid & Normani", + "position": 5, + "title": "Love Lies" + }, + { + "artist": "Halsey", + "position": 6, + "title": "Without Me" + }, + { + "artist": "Benny Blanco, Halsey & Khalid", + "position": 7, + "title": "Eastside" + }, + { + "artist": "NF", + "position": 8, + "title": "Lie" + }, + { + "artist": "Post Malone", + "position": 9, + "title": "Better Now" + }, + { + "artist": "Maroon 5 Featuring Cardi B", + "position": 10, + "title": "Girls Like You" + }, + { + "artist": "Ariana Grande", + "position": 11, + "title": "God Is A Woman" + }, + { + "artist": "Bazzi Featuring Camila Cabello", + "position": 12, + "title": "Beautiful" + }, + { + "artist": "Juice WRLD", + "position": 13, + "title": "Lucid Dreams" + }, + { + "artist": "Ariana Grande", + "position": 14, + "title": "Thank U, Next" + }, + { + "artist": "Post Malone & Swae Lee", + "position": 15, + "title": "Sunflower (Spider-Man: Into The Spider-Verse)" + }, + { + "artist": "lovelytheband", + "position": 16, + "title": "Broken" + }, + { + "artist": "Shawn Mendes X Zedd", + "position": 17, + "title": "Lost In Japan" + }, + { + "artist": "Camila Cabello", + "position": 18, + "title": "Consequences" + }, + { + "artist": "Silk City x Dua Lipa", + "position": 19, + "title": "Electricity" + }, + { + "artist": "Travis Scott", + "position": 20, + "title": "Sicko Mode" + }, + { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "position": 21, + "title": "Close To Me" + }, + { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "position": 22, + "title": "This Feeling" + }, + { + "artist": "Imagine Dragons", + "position": 23, + "title": "Natural" + }, + { + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "position": 24, + "title": "Taki Taki" + }, + { + "artist": "Labrinth, Sia & Diplo Present... LSD", + "position": 25, + "title": "Thunderclouds" + }, + { + "artist": "Khalid", + "position": 26, + "title": "Better" + }, + { + "artist": "Lady Gaga & Bradley Cooper", + "position": 27, + "title": "Shallow" + }, + { + "artist": "Alessia Cara", + "position": 28, + "title": "Trust My Lonely" + }, + { + "artist": "Dean Lewis", + "position": 29, + "title": "Be Alright" + }, + { + "artist": "Drake Featuring Michael Jackson", + "position": 30, + "title": "Don't Matter To Me" + }, + { + "artist": "Dan + Shay", + "position": 31, + "title": "Tequila" + }, + { + "artist": "Why Don't We", + "position": 32, + "title": "8 Letters" + }, + { + "artist": "Zara Larsson", + "position": 33, + "title": "Ruin My Life" + }, + { + "artist": "Loud Luxury Featuring Brando", + "position": 34, + "title": "Body" + }, + { + "artist": "twenty one pilots", + "position": 35, + "title": "My Blood" + }, + { + "artist": "DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo", + "position": 36, + "title": "No Brainer" + }, + { + "artist": "Bad Bunny Featuring Drake", + "position": 37, + "title": "MIA" + }, + { + "artist": "Steve Aoki Featuring BTS", + "position": 38, + "title": "Waste It On Me" + }, + { + "artist": "Lauv Featuring Julia Michaels", + "position": 39, + "title": "There's No Way" + }, + { + "artist": "Lukas Graham", + "position": 40, + "title": "Love Someone" + } + ], + "title": "2018 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Travis Scott", + "position": 1, + "title": "Sicko Mode" + }, + { + "artist": "Ariana Grande", + "position": 2, + "title": "Thank U, Next" + }, + { + "artist": "Marshmello & Bastille", + "position": 3, + "title": "Happier" + }, + { + "artist": "Halsey", + "position": 4, + "title": "Without Me" + }, + { + "artist": "Panic! At The Disco", + "position": 5, + "title": "High Hopes" + }, + { + "artist": "Sheck Wes", + "position": 6, + "title": "Mo Bamba" + }, + { + "artist": "Kodak Black Featuring Travis Scott & Offset", + "position": 7, + "title": "ZEZE" + }, + { + "artist": "Lil Baby & Gunna", + "position": 8, + "title": "Drip Too Hard" + }, + { + "artist": "Maroon 5 Featuring Cardi B", + "position": 9, + "title": "Girls Like You" + }, + { + "artist": "Juice WRLD", + "position": 10, + "title": "Lucid Dreams" + }, + { + "artist": "Post Malone", + "position": 11, + "title": "Better Now" + }, + { + "artist": "5 Seconds Of Summer", + "position": 12, + "title": "Youngblood" + }, + { + "artist": "Ariana Grande", + "position": 13, + "title": "Breathin" + }, + { + "artist": "Mariah Carey", + "position": 14, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "position": 15, + "title": "Wake Up In The Sky" + }, + { + "artist": "Ella Mai", + "position": 16, + "title": "Trip" + }, + { + "artist": "Post Malone & Swae Lee", + "position": 17, + "title": "Sunflower (Spider-Man: Into The Spider-Verse)" + }, + { + "artist": "Benny Blanco, Halsey & Khalid", + "position": 18, + "title": "Eastside" + }, + { + "artist": "Bad Bunny Featuring Drake", + "position": 19, + "title": "MIA" + }, + { + "artist": "Khalid & Normani", + "position": 20, + "title": "Love Lies" + }, + { + "artist": "Andy Williams", + "position": 21, + "title": "It's The Most Wonderful Time Of The Year" + }, + { + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "position": 22, + "title": "Taki Taki" + }, + { + "artist": "Brenda Lee", + "position": 23, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Cardi B", + "position": 24, + "title": "Money" + }, + { + "artist": "Imagine Dragons", + "position": 25, + "title": "Natural" + }, + { + "artist": "Burl Ives", + "position": 26, + "title": "A Holly Jolly Christmas" + }, + { + "artist": "Flipp Dinero", + "position": 27, + "title": "Leave Me Alone" + }, + { + "artist": "Lady Gaga & Bradley Cooper", + "position": 28, + "title": "Shallow" + }, + { + "artist": "Khalid", + "position": 29, + "title": "Better" + }, + { + "artist": "Bazzi Featuring Camila Cabello", + "position": 30, + "title": "Beautiful" + }, + { + "artist": "Cardi B, Bad Bunny & J Balvin", + "position": 31, + "title": "I Like It" + }, + { + "artist": "lovelytheband", + "position": 32, + "title": "Broken" + }, + { + "artist": "Bobby Helms", + "position": 33, + "title": "Jingle Bell Rock" + }, + { + "artist": "Ariana Grande", + "position": 34, + "title": "God Is A Woman" + }, + { + "artist": "Tyga Featuring Offset", + "position": 35, + "title": "Taste" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "position": 36, + "title": "FEFE" + }, + { + "artist": "Drake", + "position": 37, + "title": "In My Feelings" + }, + { + "artist": "Dan + Shay", + "position": 38, + "title": "Speechless" + }, + { + "artist": "Nat King Cole", + "position": 39, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Lil Wayne", + "position": 40, + "title": "Uproar" + }, + { + "artist": "Kane Brown", + "position": 41, + "title": "Lose It" + }, + { + "artist": "Luke Combs", + "position": 42, + "title": "She Got The Best Of Me " + }, + { + "artist": "Wham!", + "position": 43, + "title": "Last Christmas" + }, + { + "artist": "Lil Baby & Drake", + "position": 44, + "title": "Yes Indeed" + }, + { + "artist": "Dan + Shay", + "position": 45, + "title": "Tequila" + }, + { + "artist": "Drake", + "position": 46, + "title": "Nonstop" + }, + { + "artist": "Cardi B Featuring Kehlani", + "position": 47, + "title": "Ring" + }, + { + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "position": 48, + "title": "Dangerous" + }, + { + "artist": "Jimmie Allen", + "position": 49, + "title": "Best Shot" + }, + { + "artist": "Ella Mai", + "position": 50, + "title": "Boo'd Up" + }, + { + "artist": "NF", + "position": 51, + "title": "Lie" + }, + { + "artist": "Billie Eilish", + "position": 52, + "title": "When The Party's Over" + }, + { + "artist": "Mitchell Tenpenny", + "position": 53, + "title": "Drunk Me" + }, + { + "artist": "XXXTENTACION", + "position": 54, + "title": "BAD!" + }, + { + "artist": "Juice WRLD", + "position": 55, + "title": "Armed And Dangerous" + }, + { + "artist": "Shawn Mendes X Zedd", + "position": 56, + "title": "Lost In Japan" + }, + { + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "position": 57, + "title": "Arms Around You" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "position": 58, + "title": "MAMA" + }, + { + "artist": "6ix9ine Featuring Tory Lanez", + "position": 59, + "title": "KIKA" + }, + { + "artist": "Lauren Daigle", + "position": 60, + "title": "You Say" + }, + { + "artist": "6ix9ine Featuring Bobby Shmurda", + "position": 61, + "title": "STOOPID" + }, + { + "artist": "6ix9ine Featuring Lil Baby", + "position": 62, + "title": "TIC TOC" + }, + { + "artist": "Lil Baby", + "position": 63, + "title": "Close Friends" + }, + { + "artist": "Future & Juice WRLD", + "position": 64, + "title": "Fine China" + }, + { + "artist": "Dean Lewis", + "position": 65, + "title": "Be Alright" + }, + { + "artist": "Trippie Redd", + "position": 66, + "title": "Topanga" + }, + { + "artist": "Yella Beezy", + "position": 67, + "title": "That's On Me" + }, + { + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "position": 68, + "title": "Smile (Living My Best Life)" + }, + { + "artist": "Billie Eilish", + "position": 69, + "title": "Come Out And Play" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 70, + "title": "10 Freaky Girls" + }, + { + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "position": 71, + "title": "WAKA" + }, + { + "artist": "Trippie Redd Featuring Juice WRLD", + "position": 72, + "title": "1400 / 999 Freestyle" + }, + { + "artist": "French Montana Featuring Drake", + "position": 73, + "title": "No Stylist" + }, + { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "position": 74, + "title": "Burning Man" + }, + { + "artist": "Tory Lanez & Rich The Kid", + "position": 75, + "title": "Talk To Me" + }, + { + "artist": "Pardison Fontaine Featuring Cardi B", + "position": 76, + "title": "Backin' It Up" + }, + { + "artist": "Camila Cabello", + "position": 77, + "title": "Consequences" + }, + { + "artist": "Bebe Rexha", + "position": 78, + "title": "I'm A Mess" + }, + { + "artist": "Chris Young", + "position": 79, + "title": "Hangin' On" + }, + { + "artist": "Tyga & Nicki Minaj", + "position": 80, + "title": "Dip" + }, + { + "artist": "Dustin Lynch", + "position": 81, + "title": "Good Girl" + }, + { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "position": 82, + "title": "This Feeling" + }, + { + "artist": "Billie Eilish & Khalid", + "position": 83, + "title": "Lovely" + }, + { + "artist": "Anuel AA & Romeo Santos", + "position": 84, + "title": "Ella Quiere Beber" + }, + { + "artist": "Lil Baby & Gunna Featuring Drake", + "position": 85, + "title": "Never Recover" + }, + { + "artist": "6ix9ine Featuring Anuel AA", + "position": 86, + "title": "BEBE" + }, + { + "artist": "Maren Morris", + "position": 87, + "title": "Rich" + }, + { + "artist": "Thomas Rhett", + "position": 88, + "title": "Sixteen" + }, + { + "artist": "Russell Dickerson", + "position": 89, + "title": "Blue Tacoma" + }, + { + "artist": "Jacquees", + "position": 90, + "title": "You" + }, + { + "artist": "Metro Boomin Featuring Gunna", + "position": 91, + "title": "Space Cadet" + }, + { + "artist": "Kip Moore", + "position": 92, + "title": "Last Shot" + }, + { + "artist": "Daniel Caesar Featuring H.E.R.", + "position": 93, + "title": "Best Part" + }, + { + "artist": "Jason Aldean", + "position": 94, + "title": "Girl Like You" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 95, + "title": "Don't Come Out The House" + }, + { + "artist": "Billie Eilish", + "position": 96, + "title": "Ocean Eyes" + }, + { + "artist": "Kanye West & Lil Pump", + "position": 97, + "title": "I Love It" + }, + { + "artist": "Lil Peep & XXXTENTACION", + "position": 98, + "title": "Falling Down" + }, + { + "artist": "Lil Mosey", + "position": 99, + "title": "Noticed" + }, + { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "position": 100, + "title": "Close To Me" + } + ], + "title": "2018 - Hot 100" + }, + { + "songs": [ + { + "artist": "Dan + Shay", + "position": 1, + "title": "Speechless" + }, + { + "artist": "Kane Brown", + "position": 2, + "title": "Lose It" + }, + { + "artist": "Luke Combs", + "position": 3, + "title": "She Got The Best Of Me " + }, + { + "artist": "Dan + Shay", + "position": 4, + "title": "Tequila" + }, + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 5, + "title": "Meant To Be" + }, + { + "artist": "Jimmie Allen", + "position": 6, + "title": "Best Shot" + }, + { + "artist": "Mitchell Tenpenny", + "position": 7, + "title": "Drunk Me" + }, + { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "position": 8, + "title": "Burning Man" + }, + { + "artist": "Chris Young", + "position": 9, + "title": "Hangin' On" + }, + { + "artist": "Dustin Lynch", + "position": 10, + "title": "Good Girl" + }, + { + "artist": "Thomas Rhett", + "position": 11, + "title": "Sixteen" + }, + { + "artist": "Kip Moore", + "position": 12, + "title": "Last Shot" + }, + { + "artist": "Jason Aldean", + "position": 13, + "title": "Girl Like You" + }, + { + "artist": "Scotty McCreery", + "position": 14, + "title": "This Is It" + }, + { + "artist": "Chris Stapleton", + "position": 15, + "title": "Millionaire" + }, + { + "artist": "Blake Shelton", + "position": 16, + "title": "Turnin' Me On" + }, + { + "artist": "Eric Church", + "position": 17, + "title": "Desperate Man" + }, + { + "artist": "Jordan Davis", + "position": 18, + "title": "Take It From Me" + }, + { + "artist": "Luke Combs", + "position": 19, + "title": "Beautiful Crazy" + }, + { + "artist": "Jake Owen", + "position": 20, + "title": "Down To The Honkytonk" + }, + { + "artist": "Midland", + "position": 21, + "title": "Burn Out" + }, + { + "artist": "Luke Bryan", + "position": 22, + "title": "What Makes You Country" + }, + { + "artist": "Riley Green", + "position": 23, + "title": "There Was This Girl" + }, + { + "artist": "Tim McGraw", + "position": 24, + "title": "Neon Church" + }, + { + "artist": "Kelsea Ballerini", + "position": 25, + "title": "Miss Me More" + }, + { + "artist": "Jon Pardi", + "position": 26, + "title": "Night Shift" + }, + { + "artist": "Old Dominion", + "position": 27, + "title": "Make It Sweet" + }, + { + "artist": "Carrie Underwood", + "position": 28, + "title": "Love Wins" + }, + { + "artist": "Brett Young", + "position": 29, + "title": "Here Tonight" + }, + { + "artist": "Cody Johnson", + "position": 30, + "title": "On My Way To You" + }, + { + "artist": "Keith Urban", + "position": 31, + "title": "Never Comin Down" + }, + { + "artist": "Morgan Wallen", + "position": 32, + "title": "Whiskey Glasses" + }, + { + "artist": "Michael Ray", + "position": 33, + "title": "One That Got Away" + }, + { + "artist": "Lee Brice", + "position": 34, + "title": "Rumor" + }, + { + "artist": "Kenny Chesney Featuring Mindy Smith", + "position": 35, + "title": "Better Boat" + }, + { + "artist": "Tyler Rich", + "position": 36, + "title": "The Difference" + }, + { + "artist": "Florida Georgia Line", + "position": 37, + "title": "Talk You Out Of It" + }, + { + "artist": "Chris Lane", + "position": 38, + "title": "I Don't Know About You" + }, + { + "artist": "Eli Young Band", + "position": 39, + "title": "Love Ain't" + }, + { + "artist": "Rodney Atkins Featuring The Fisk Jubilee Singers", + "position": 40, + "title": "Caught Up In The Country" + }, + { + "artist": "Granger Smith", + "position": 41, + "title": "You're In It" + }, + { + "artist": "Chase Rice", + "position": 42, + "title": "Eyes On You" + }, + { + "artist": "Kane Brown", + "position": 43, + "title": "Homesick" + }, + { + "artist": "Brett Eldredge", + "position": 44, + "title": "Love Someone" + }, + { + "artist": "Kane Brown", + "position": 45, + "title": "Good As You" + }, + { + "artist": "Travis Denning", + "position": 46, + "title": "David Ashley Parker From Powder Springs" + }, + { + "artist": "Billy Currington", + "position": 47, + "title": "Bring It On Over" + }, + { + "artist": "Maddie & Tae", + "position": 48, + "title": "Die From A Broken Heart" + }, + { + "artist": "Rascal Flatts", + "position": 49, + "title": "Back To Life" + }, + { + "artist": "Maddie & Tae", + "position": 50, + "title": "Friends Don't" + } + ], + "title": "2018 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Imagine Dragons", + "position": 1, + "title": "Thunder" + }, + { + "artist": "Portugal. The Man", + "position": 2, + "title": "Feel It Still" + }, + { + "artist": "Imagine Dragons", + "position": 3, + "title": "Believer" + }, + { + "artist": "WALK THE MOON", + "position": 4, + "title": "One Foot" + }, + { + "artist": "The Revivalists", + "position": 5, + "title": "Wish I Knew You" + }, + { + "artist": "Theory Of A Deadman", + "position": 6, + "title": "Rx (Medicate)" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 7, + "title": "Walk On Water" + }, + { + "artist": "Imagine Dragons", + "position": 8, + "title": "Whatever It Takes" + }, + { + "artist": "AC/DC", + "position": 9, + "title": "Thunderstruck" + }, + { + "artist": "U2", + "position": 10, + "title": "You're The Best Thing About Me" + }, + { + "artist": "Five Finger Death Punch", + "position": 11, + "title": "Gone Away" + }, + { + "artist": "The Lumineers", + "position": 12, + "title": "Angela" + }, + { + "artist": "Alice Merton", + "position": 13, + "title": "No Roots" + }, + { + "artist": "Chloe Kohanski", + "position": 14, + "title": "Call Me" + }, + { + "artist": "Beck", + "position": 15, + "title": "Up All Night" + }, + { + "artist": "Foo Fighters", + "position": 16, + "title": "The Sky Is A Neighborhood" + }, + { + "artist": "AC/DC", + "position": 17, + "title": "Back In Black" + }, + { + "artist": "Led Zeppelin", + "position": 18, + "title": "Immigrant Song" + }, + { + "artist": "Vance Joy", + "position": 19, + "title": "Lay It On Me" + }, + { + "artist": "AC/DC", + "position": 20, + "title": "You Shook Me All Night Long" + }, + { + "artist": "Linkin Park", + "position": 21, + "title": "One More Light" + }, + { + "artist": "Gary Clark Jr.", + "position": 22, + "title": "Come Together" + }, + { + "artist": "AC/DC", + "position": 23, + "title": "Highway To Hell" + }, + { + "artist": "Foster The People", + "position": 24, + "title": "Sit Next To Me" + }, + { + "artist": "Portugal. The Man", + "position": 25, + "title": "Live In The Moment" + }, + { + "artist": "Fall Out Boy", + "position": 26, + "title": "Hold Me Tight Or Don't" + }, + { + "artist": "Nothing More", + "position": 27, + "title": "Go To War" + }, + { + "artist": "Five Finger Death Punch", + "position": 28, + "title": "Trouble" + }, + { + "artist": "Bastille", + "position": 29, + "title": "World Gone Mad" + }, + { + "artist": "Greta Van Fleet", + "position": 30, + "title": "Highway Tune" + }, + { + "artist": "Royal Blood", + "position": 31, + "title": "I Only Lie When I Love You" + }, + { + "artist": "Cold War Kids Featuring Bishop Briggs", + "position": 32, + "title": "So Tied Up" + }, + { + "artist": "U2", + "position": 33, + "title": "Get Out Of Your Own Way" + }, + { + "artist": "Skillet", + "position": 34, + "title": "The Resistance" + }, + { + "artist": "Noah Mac", + "position": 35, + "title": "Ordinary World" + }, + { + "artist": "Weezer", + "position": 36, + "title": "Happy Hour" + }, + { + "artist": "All That Remains", + "position": 37, + "title": "The Thunder Rolls" + }, + { + "artist": "Papa Roach", + "position": 38, + "title": "Born For Greatness" + }, + { + "artist": "Manchester Orchestra", + "position": 39, + "title": "The Gold" + }, + { + "artist": "The Dirty Heads", + "position": 40, + "title": "Vacation" + }, + { + "artist": "Welshly Arms", + "position": 41, + "title": "Legendary" + }, + { + "artist": "X Ambassadors", + "position": 42, + "title": "Ahead Of Myself" + }, + { + "artist": "Fall Out Boy", + "position": 43, + "title": "The Last Of The Real Ones" + }, + { + "artist": "The Score", + "position": 44, + "title": "Legend" + }, + { + "artist": "Marilyn Manson", + "position": 45, + "title": "Kill4me" + }, + { + "artist": "Seether", + "position": 46, + "title": "Betray And Degrade" + }, + { + "artist": "Bishop Briggs", + "position": 47, + "title": "Dream" + }, + { + "artist": "Two Feet", + "position": 48, + "title": "Go Fuck Yourself" + }, + { + "artist": "U2", + "position": 49, + "title": "American Soul" + }, + { + "artist": "Fozzy", + "position": 50, + "title": "Judas" + } + ], + "title": "2017 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Post Malone Featuring 21 Savage", + "position": 1, + "title": "Rockstar" + }, + { + "artist": "Lil Pump", + "position": 2, + "title": "Gucci Gang" + }, + { + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "position": 3, + "title": "No Limit" + }, + { + "artist": "Cardi B", + "position": 4, + "title": "Bodak Yellow (Money Moves)" + }, + { + "artist": "6ix9ine", + "position": 5, + "title": "Gummo" + }, + { + "artist": "Gucci Mane Featuring Migos", + "position": 6, + "title": "I Get The Bag" + }, + { + "artist": "Migos, Nicki Minaj & Cardi B", + "position": 7, + "title": "MotorSport" + }, + { + "artist": "Logic Featuring Alessia Cara & Khalid", + "position": 8, + "title": "1-800-273-8255" + }, + { + "artist": "G-Eazy & Halsey", + "position": 9, + "title": "Him & I" + }, + { + "artist": "NF", + "position": 10, + "title": "Let You Down" + }, + { + "artist": "Post Malone", + "position": 11, + "title": "I Fall Apart" + }, + { + "artist": "21 Savage", + "position": 12, + "title": "Bank Account" + }, + { + "artist": "Kendrick Lamar Featuring Zacari", + "position": 13, + "title": "Love." + }, + { + "artist": "Khalid", + "position": 14, + "title": "Young Dumb & Broke" + }, + { + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "position": 15, + "title": "The Way Life Goes" + }, + { + "artist": "Miguel Featuring Travis Scott", + "position": 16, + "title": "Sky Walker" + }, + { + "artist": "SZA", + "position": 17, + "title": "The Weekend" + }, + { + "artist": "A$AP Ferg", + "position": 18, + "title": "Plain Jane" + }, + { + "artist": "Offset & Metro Boomin", + "position": 19, + "title": "Ric Flair Drip" + }, + { + "artist": "YBN Nahmir", + "position": 20, + "title": "Rubbin Off The Paint" + }, + { + "artist": "Yo Gotti Featuring Nicki Minaj", + "position": 21, + "title": "Rake It Up" + }, + { + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "position": 22, + "title": "Pills And Automobiles" + }, + { + "artist": "Kodak Black Featuring XXXTENTACION", + "position": 23, + "title": "Roll In Peace" + }, + { + "artist": "GoldLink Featuring Brent Faiyaz & Shy Glizzy", + "position": 24, + "title": "Crew" + }, + { + "artist": "Kodak Black Featuring Lil Wayne", + "position": 25, + "title": "Codeine Dreaming" + }, + { + "artist": "Post Malone", + "position": 26, + "title": "Candy Paint" + }, + { + "artist": "N*E*R*D & Rihanna", + "position": 27, + "title": "Lemon" + }, + { + "artist": "6ix9ine", + "position": 28, + "title": "Kooda" + }, + { + "artist": "Lil Xan", + "position": 29, + "title": "Betrayed" + }, + { + "artist": "Famous Dex Featuring A$AP Rocky", + "position": 30, + "title": "Pick It Up" + }, + { + "artist": "Tay-K", + "position": 31, + "title": "The Race" + }, + { + "artist": "NAV Featuring Lil Uzi Vert", + "position": 32, + "title": "Wanted You" + }, + { + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "position": 33, + "title": "Ghostface Killers" + }, + { + "artist": "XXXTentacion Featuring Trippie Redd", + "position": 34, + "title": "F**k Love" + }, + { + "artist": "Tank", + "position": 35, + "title": "When We" + }, + { + "artist": "XXXTentacion", + "position": 36, + "title": "Jocelyn Flores" + }, + { + "artist": "Kodak Black", + "position": 37, + "title": "Transportin'" + }, + { + "artist": "Yo Gotti", + "position": 38, + "title": "Juice" + }, + { + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "position": 39, + "title": "Faking It" + }, + { + "artist": "Lil Uzi Vert", + "position": 40, + "title": "Sauce It Up" + }, + { + "artist": "Post Malone", + "position": 41, + "title": "Go Flex" + }, + { + "artist": "Eminem Featuring Beyonce", + "position": 42, + "title": "Walk On Water" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 43, + "title": "No Smoke" + }, + { + "artist": "Miguel Featuring J. Cole & Salaam Remi", + "position": 44, + "title": "Come Through And Chill" + }, + { + "artist": "Rich The Kid Featuring Kendrick Lamar", + "position": 45, + "title": "New Freezer" + }, + { + "artist": "Jaden Smith", + "position": 46, + "title": "Icon" + }, + { + "artist": "Wiz Khalifa Featuring Ty Dolla $ign", + "position": 47, + "title": "Something New" + }, + { + "artist": "Lil Baby", + "position": 48, + "title": "My Dawg" + }, + { + "artist": "The Weeknd", + "position": 49, + "title": "Die For You" + }, + { + "artist": "Machine Gun Kelly, X Ambassadors & Bebe Rexha", + "position": 50, + "title": "Home" + } + ], + "title": "2017 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Camila Cabello Featuring Young Thug", + "position": 1, + "title": "Havana" + }, + { + "artist": "Imagine Dragons", + "position": 2, + "title": "Thunder" + }, + { + "artist": "Halsey", + "position": 3, + "title": "Bad At Love" + }, + { + "artist": "Ed Sheeran Duet With Beyonce", + "position": 4, + "title": "Perfect" + }, + { + "artist": "Maroon 5 Featuring SZA", + "position": 5, + "title": "What Lovers Do" + }, + { + "artist": "Sam Smith", + "position": 6, + "title": "Too Good At Goodbyes" + }, + { + "artist": "Demi Lovato", + "position": 7, + "title": "Sorry Not Sorry" + }, + { + "artist": "Post Malone Featuring 21 Savage", + "position": 8, + "title": "Rockstar" + }, + { + "artist": "Dua Lipa", + "position": 9, + "title": "New Rules" + }, + { + "artist": "Portugal. The Man", + "position": 10, + "title": "Feel It Still" + }, + { + "artist": "Logic Featuring Alessia Cara & Khalid", + "position": 11, + "title": "1-800-273-8255" + }, + { + "artist": "Charlie Puth", + "position": 12, + "title": "How Long" + }, + { + "artist": "Liam Payne Featuring Quavo", + "position": 13, + "title": "Strip That Down" + }, + { + "artist": "Selena Gomez X Marshmello", + "position": 14, + "title": "Wolves" + }, + { + "artist": "Taylor Swift", + "position": 15, + "title": "...Ready For It?" + }, + { + "artist": "MAX Featuring gnash", + "position": 16, + "title": "Lights Down Low" + }, + { + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "position": 17, + "title": "End Game" + }, + { + "artist": "NF", + "position": 18, + "title": "Let You Down" + }, + { + "artist": "Macklemore Featuring Kesha", + "position": 19, + "title": "Good Old Days" + }, + { + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "position": 20, + "title": "Let Me Go" + }, + { + "artist": "Niall Horan", + "position": 21, + "title": "Too Much To Ask" + }, + { + "artist": "J Balvin & Willy William Featuring Beyonce", + "position": 22, + "title": "Mi Gente" + }, + { + "artist": "Khalid", + "position": 23, + "title": "Young Dumb & Broke" + }, + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 24, + "title": "Meant To Be" + }, + { + "artist": "P!nk", + "position": 25, + "title": "What About Us" + }, + { + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "position": 26, + "title": "Faking It" + }, + { + "artist": "WALK THE MOON", + "position": 27, + "title": "One Foot" + }, + { + "artist": "Sofi Tukker Featuring NERVO, The Knocks & Alisa Ueno", + "position": 28, + "title": "Best Friend" + }, + { + "artist": "G-Eazy & Halsey", + "position": 29, + "title": "Him & I" + }, + { + "artist": "Blackbear", + "position": 30, + "title": "Do Re Mi" + }, + { + "artist": "Lauv", + "position": 31, + "title": "I Like Me Better" + }, + { + "artist": "Zayn Featuring Sia", + "position": 32, + "title": "Dusk Till Dawn" + }, + { + "artist": "Marshmello Featuring Khalid", + "position": 33, + "title": "Silence" + }, + { + "artist": "Cheat Codes Featuring Fetty Wap & CVBZ", + "position": 34, + "title": "Feels Great" + }, + { + "artist": "Liam Payne", + "position": 35, + "title": "Bedroom Floor" + }, + { + "artist": "Kendrick Lamar Featuring Zacari", + "position": 36, + "title": "Love." + }, + { + "artist": "BTS Featuring Desiigner", + "position": 37, + "title": "MIC Drop" + }, + { + "artist": "Daya", + "position": 38, + "title": "New" + }, + { + "artist": "Taylor Swift", + "position": 39, + "title": "Look What You Made Me Do" + }, + { + "artist": "CNCO & Little Mix", + "position": 40, + "title": "Reggaeton Lento (Bailemos)" + } + ], + "title": "2017 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Ed Sheeran Duet With Beyonce", + "position": 1, + "title": "Perfect" + }, + { + "artist": "Post Malone Featuring 21 Savage", + "position": 2, + "title": "Rockstar" + }, + { + "artist": "Camila Cabello Featuring Young Thug", + "position": 3, + "title": "Havana" + }, + { + "artist": "Lil Pump", + "position": 4, + "title": "Gucci Gang" + }, + { + "artist": "Imagine Dragons", + "position": 5, + "title": "Thunder" + }, + { + "artist": "Sam Smith", + "position": 6, + "title": "Too Good At Goodbyes" + }, + { + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "position": 7, + "title": "No Limit" + }, + { + "artist": "Halsey", + "position": 8, + "title": "Bad At Love" + }, + { + "artist": "Cardi B", + "position": 9, + "title": "Bodak Yellow (Money Moves)" + }, + { + "artist": "Maroon 5 Featuring SZA", + "position": 10, + "title": "What Lovers Do" + }, + { + "artist": "Mariah Carey", + "position": 11, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Portugal. The Man", + "position": 12, + "title": "Feel It Still" + }, + { + "artist": "6ix9ine", + "position": 13, + "title": "Gummo" + }, + { + "artist": "Gucci Mane Featuring Migos", + "position": 14, + "title": "I Get The Bag" + }, + { + "artist": "Migos, Nicki Minaj & Cardi B", + "position": 15, + "title": "MotorSport" + }, + { + "artist": "Demi Lovato", + "position": 16, + "title": "Sorry Not Sorry" + }, + { + "artist": "Dua Lipa", + "position": 17, + "title": "New Rules" + }, + { + "artist": "J Balvin & Willy William Featuring Beyonce", + "position": 18, + "title": "Mi Gente" + }, + { + "artist": "Logic Featuring Alessia Cara & Khalid", + "position": 19, + "title": "1-800-273-8255" + }, + { + "artist": "Selena Gomez X Marshmello", + "position": 20, + "title": "Wolves" + }, + { + "artist": "G-Eazy & Halsey", + "position": 21, + "title": "Him & I" + }, + { + "artist": "NF", + "position": 22, + "title": "Let You Down" + }, + { + "artist": "Post Malone", + "position": 23, + "title": "I Fall Apart" + }, + { + "artist": "21 Savage", + "position": 24, + "title": "Bank Account" + }, + { + "artist": "Ed Sheeran", + "position": 25, + "title": "Shape Of You" + }, + { + "artist": "Charlie Puth", + "position": 26, + "title": "How Long" + }, + { + "artist": "Kendrick Lamar Featuring Zacari", + "position": 27, + "title": "Love." + }, + { + "artist": "Khalid", + "position": 28, + "title": "Young Dumb & Broke" + }, + { + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "position": 29, + "title": "The Way Life Goes" + }, + { + "artist": "Imagine Dragons", + "position": 30, + "title": "Believer" + }, + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 31, + "title": "Meant To Be" + }, + { + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "position": 32, + "title": "Despacito" + }, + { + "artist": "Marshmello Featuring Khalid", + "position": 33, + "title": "Silence" + }, + { + "artist": "French Montana Featuring Swae Lee", + "position": 34, + "title": "Unforgettable" + }, + { + "artist": "Miguel Featuring Travis Scott", + "position": 35, + "title": "Sky Walker" + }, + { + "artist": "Charlie Puth", + "position": 36, + "title": "Attention" + }, + { + "artist": "Brenda Lee", + "position": 37, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "SZA", + "position": 38, + "title": "The Weekend" + }, + { + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "position": 39, + "title": "End Game" + }, + { + "artist": "Bruno Mars", + "position": 40, + "title": "That's What I Like" + }, + { + "artist": "A$AP Ferg", + "position": 41, + "title": "Plain Jane" + }, + { + "artist": "Nat King Cole", + "position": 42, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Taylor Swift", + "position": 43, + "title": "...Ready For It?" + }, + { + "artist": "Offset & Metro Boomin", + "position": 44, + "title": "Ric Flair Drip" + }, + { + "artist": "Andy Williams", + "position": 45, + "title": "It's The Most Wonderful Time Of The Year" + }, + { + "artist": "Shawn Mendes", + "position": 46, + "title": "There's Nothing Holdin' Me Back" + }, + { + "artist": "Burl Ives", + "position": 47, + "title": "A Holly Jolly Christmas" + }, + { + "artist": "YBN Nahmir", + "position": 48, + "title": "Rubbin Off The Paint" + }, + { + "artist": "Post Malone Featuring Quavo", + "position": 49, + "title": "Congratulations" + }, + { + "artist": "Kendrick Lamar", + "position": 50, + "title": "Humble." + }, + { + "artist": "P!nk", + "position": 51, + "title": "What About Us" + }, + { + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "position": 52, + "title": "Pills And Automobiles" + }, + { + "artist": "Demi Lovato", + "position": 53, + "title": "Tell Me You Love Me" + }, + { + "artist": "LANCO", + "position": 54, + "title": "Greatest Love Story" + }, + { + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "position": 55, + "title": "Let Me Go" + }, + { + "artist": "Kodak Black Featuring XXXTENTACION", + "position": 56, + "title": "Roll In Peace" + }, + { + "artist": "Luke Bryan", + "position": 57, + "title": "Light It Up" + }, + { + "artist": "Kodak Black Featuring Lil Wayne", + "position": 58, + "title": "Codeine Dreaming" + }, + { + "artist": "Post Malone", + "position": 59, + "title": "Candy Paint" + }, + { + "artist": "N*E*R*D & Rihanna", + "position": 60, + "title": "Lemon" + }, + { + "artist": "6ix9ine", + "position": 61, + "title": "Kooda" + }, + { + "artist": "Brett Young", + "position": 62, + "title": "Like I Loved You" + }, + { + "artist": "Blake Shelton", + "position": 63, + "title": "I'll Name The Dogs" + }, + { + "artist": "Macklemore Featuring Kesha", + "position": 64, + "title": "Good Old Days" + }, + { + "artist": "Luke Combs", + "position": 65, + "title": "When It Rains It Pours" + }, + { + "artist": "MAX Featuring gnash", + "position": 66, + "title": "Lights Down Low" + }, + { + "artist": "Russell Dickerson", + "position": 67, + "title": "Yours" + }, + { + "artist": "Lil Xan", + "position": 68, + "title": "Betrayed" + }, + { + "artist": "Thomas Rhett", + "position": 69, + "title": "Unforgettable" + }, + { + "artist": "Eric Church", + "position": 70, + "title": "Round Here Buzz" + }, + { + "artist": "BTS Featuring Desiigner", + "position": 71, + "title": "MIC Drop" + }, + { + "artist": "Taylor Swift", + "position": 72, + "title": "Look What You Made Me Do" + }, + { + "artist": "Famous Dex Featuring A$AP Rocky", + "position": 73, + "title": "Pick It Up" + }, + { + "artist": "Tay-K", + "position": 74, + "title": "The Race" + }, + { + "artist": "Luis Fonsi & Demi Lovato", + "position": 75, + "title": "Echame La Culpa" + }, + { + "artist": "NAV Featuring Lil Uzi Vert", + "position": 76, + "title": "Wanted You" + }, + { + "artist": "Chris Young", + "position": 77, + "title": "Losing Sleep" + }, + { + "artist": "Zayn Featuring Sia", + "position": 78, + "title": "Dusk Till Dawn" + }, + { + "artist": "Kelly Clarkson", + "position": 79, + "title": "Love So Soft" + }, + { + "artist": "Maren Morris", + "position": 80, + "title": "I Could Use A Love Song" + }, + { + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "position": 81, + "title": "Ghostface Killers" + }, + { + "artist": "XXXTentacion Featuring Trippie Redd", + "position": 82, + "title": "F**k Love" + }, + { + "artist": "Becky G Featuring Bad Bunny", + "position": 83, + "title": "Mayores" + }, + { + "artist": "Walker Hayes", + "position": 84, + "title": "You Broke Up With Me" + }, + { + "artist": "Farruko, Nicki Minaj, Bad Bunny, 21 Savage & Rvssian", + "position": 85, + "title": "Krippy Kush" + }, + { + "artist": "Tank", + "position": 86, + "title": "When We" + }, + { + "artist": "XXXTentacion", + "position": 87, + "title": "Jocelyn Flores" + }, + { + "artist": "Old Dominion", + "position": 88, + "title": "Written In The Sand" + }, + { + "artist": "Niall Horan", + "position": 89, + "title": "Too Much To Ask" + }, + { + "artist": "Chris Stapleton", + "position": 90, + "title": "Broken Halos" + }, + { + "artist": "Devin Dawson", + "position": 91, + "title": "All On Me" + }, + { + "artist": "Kodak Black", + "position": 92, + "title": "Transportin'" + }, + { + "artist": "Yo Gotti", + "position": 93, + "title": "Juice" + }, + { + "artist": "Garth Brooks", + "position": 94, + "title": "Ask Me How I Know" + }, + { + "artist": "Romeo Santos Featuring Nicky Jam & Daddy Yankee", + "position": 95, + "title": "Bella y Sensual" + }, + { + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "position": 96, + "title": "Faking It" + }, + { + "artist": "Thomas Rhett", + "position": 97, + "title": "Marry Me" + }, + { + "artist": "Scotty McCreery", + "position": 98, + "title": "Five More Minutes" + }, + { + "artist": "Natti Natasha x Ozuna", + "position": 99, + "title": "Criminal" + }, + { + "artist": "Lil Uzi Vert", + "position": 100, + "title": "Sauce It Up" + } + ], + "title": "2017 - Hot 100" + }, + { + "songs": [ + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 1, + "title": "Meant To Be" + }, + { + "artist": "LANCO", + "position": 2, + "title": "Greatest Love Story" + }, + { + "artist": "Kane Brown Featuring Lauren Alaina", + "position": 3, + "title": "What Ifs" + }, + { + "artist": "Luke Combs", + "position": 4, + "title": "When It Rains It Pours" + }, + { + "artist": "Sam Hunt", + "position": 5, + "title": "Body Like A Back Road" + }, + { + "artist": "Luke Bryan", + "position": 6, + "title": "Light It Up" + }, + { + "artist": "Thomas Rhett", + "position": 7, + "title": "Unforgettable" + }, + { + "artist": "Blake Shelton", + "position": 8, + "title": "I'll Name The Dogs" + }, + { + "artist": "Brett Young", + "position": 9, + "title": "Like I Loved You" + }, + { + "artist": "Dustin Lynch", + "position": 10, + "title": "Small Town Boy" + }, + { + "artist": "Eric Church", + "position": 11, + "title": "Round Here Buzz" + }, + { + "artist": "Russell Dickerson", + "position": 12, + "title": "Yours" + }, + { + "artist": "Garth Brooks", + "position": 13, + "title": "Ask Me How I Know" + }, + { + "artist": "Chris Young", + "position": 14, + "title": "Losing Sleep" + }, + { + "artist": "Maren Morris", + "position": 15, + "title": "I Could Use A Love Song" + }, + { + "artist": "Walker Hayes", + "position": 16, + "title": "You Broke Up With Me" + }, + { + "artist": "Chris Janson", + "position": 17, + "title": "Fix A Drink" + }, + { + "artist": "Old Dominion", + "position": 18, + "title": "Written In The Sand" + }, + { + "artist": "Devin Dawson", + "position": 19, + "title": "All On Me" + }, + { + "artist": "Kelsea Ballerini", + "position": 20, + "title": "Legends" + }, + { + "artist": "Scotty McCreery", + "position": 21, + "title": "Five More Minutes" + }, + { + "artist": "Chris Stapleton", + "position": 22, + "title": "Broken Halos" + }, + { + "artist": "Keith Urban", + "position": 23, + "title": "Female" + }, + { + "artist": "Easton Corbin", + "position": 24, + "title": "A Girl Like You" + }, + { + "artist": "Miranda Lambert", + "position": 25, + "title": "Tin Man" + }, + { + "artist": "Thomas Rhett", + "position": 26, + "title": "Marry Me" + }, + { + "artist": "Aaron Watson", + "position": 27, + "title": "Outta Style" + }, + { + "artist": "Kane Brown", + "position": 28, + "title": "Heaven" + }, + { + "artist": "Brett Eldredge", + "position": 29, + "title": "The Long Way" + }, + { + "artist": "Granger Smith", + "position": 30, + "title": "Happens Like That" + }, + { + "artist": "Tim McGraw & Faith Hill", + "position": 31, + "title": "The Rest Of Our Life" + }, + { + "artist": "Jordan Davis", + "position": 32, + "title": "Singles You Up" + }, + { + "artist": "Lee Brice", + "position": 33, + "title": "Boy" + }, + { + "artist": "Midland", + "position": 34, + "title": "Make A Little" + }, + { + "artist": "Florida Georgia Line", + "position": 35, + "title": "Smooth" + }, + { + "artist": "High Valley", + "position": 36, + "title": "She's With Me" + }, + { + "artist": "Big & Rich", + "position": 37, + "title": "California" + }, + { + "artist": "Kane Brown", + "position": 38, + "title": "Found You" + }, + { + "artist": "Chris Lane Featuring Tori Kelly", + "position": 39, + "title": "Take Back Home Girl" + }, + { + "artist": "Morgan Wallen Featuring Florida Georgia Line", + "position": 40, + "title": "Up Down" + }, + { + "artist": "Cole Swindell", + "position": 41, + "title": "Stay Downtown" + }, + { + "artist": "Brantley Gilbert", + "position": 42, + "title": "Ones That Like Me" + }, + { + "artist": "Michael Ray", + "position": 43, + "title": "Get To You" + }, + { + "artist": "Darius Rucker", + "position": 44, + "title": "For The First Time" + }, + { + "artist": "Chase Rice", + "position": 45, + "title": "Three Chords & The Truth" + }, + { + "artist": "Little Big Town", + "position": 46, + "title": "When Someone Stops Loving You" + }, + { + "artist": "David Lee Murphy & Kenny Chesney", + "position": 47, + "title": "Everything's Gonna Be Alright" + }, + { + "artist": "Dylan Scott", + "position": 48, + "title": "Hooked" + }, + { + "artist": "Red Marlow", + "position": 49, + "title": "The Dance" + }, + { + "artist": "Taylor Swift", + "position": 50, + "title": "New Year's Day" + } + ], + "title": "2017 - Country-Songs" + }, + { + "songs": [ + { + "artist": "twenty one pilots", + "position": 1, + "title": "Heathens" + }, + { + "artist": "twenty one pilots", + "position": 2, + "title": "Ride" + }, + { + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "position": 3, + "title": "Sucker For Pain" + }, + { + "artist": "Coldplay", + "position": 4, + "title": "Hymn For The Weekend" + }, + { + "artist": "X Ambassadors", + "position": 5, + "title": "Unsteady" + }, + { + "artist": "Disturbed", + "position": 6, + "title": "The Sound Of Silence" + }, + { + "artist": "Kings Of Leon", + "position": 7, + "title": "Waste A Moment" + }, + { + "artist": "The Lumineers", + "position": 8, + "title": "Ophelia" + }, + { + "artist": "Fitz And The Tantrums", + "position": 9, + "title": "HandClap" + }, + { + "artist": "twenty one pilots", + "position": 10, + "title": "Cancer" + }, + { + "artist": "Bastille", + "position": 11, + "title": "Good Grief" + }, + { + "artist": "Kaleo", + "position": 12, + "title": "Way Down We Go" + }, + { + "artist": "Bishop Briggs", + "position": 13, + "title": "River" + }, + { + "artist": "Blink-182", + "position": 14, + "title": "Bored To Death" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 15, + "title": "Dark Necessities" + }, + { + "artist": "Green Day", + "position": 16, + "title": "Bang Bang" + }, + { + "artist": "The Head And The Heart", + "position": 17, + "title": "All We Ever Knew" + }, + { + "artist": "Cage The Elephant", + "position": 18, + "title": "Trouble" + }, + { + "artist": "Panic! At The Disco", + "position": 19, + "title": "Bohemian Rhapsody" + }, + { + "artist": "Metallica", + "position": 20, + "title": "Hardwired" + }, + { + "artist": "Beck", + "position": 21, + "title": "Wow" + }, + { + "artist": "Green Day", + "position": 22, + "title": "Revolution Radio" + }, + { + "artist": "Skillet", + "position": 23, + "title": "Feel Invincible" + }, + { + "artist": "The Fray", + "position": 24, + "title": "Singing Low" + }, + { + "artist": "Phantogram", + "position": 25, + "title": "You Don't Get Me High Anymore" + } + ], + "title": "2016 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Rihanna", + "position": 1, + "title": "Needed Me" + }, + { + "artist": "D.R.A.M. Featuring Lil Yachty", + "position": 2, + "title": "Broccoli" + }, + { + "artist": "Drake Featuring WizKid & Kyla", + "position": 3, + "title": "One Dance" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 4, + "title": "Too Good" + }, + { + "artist": "Tory Lanez", + "position": 5, + "title": "Luv" + }, + { + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "position": 6, + "title": "Sucker For Pain" + }, + { + "artist": "Desiigner", + "position": 7, + "title": "Panda" + }, + { + "artist": "DJ Khaled Featuring Drake", + "position": 8, + "title": "For Free" + }, + { + "artist": "Drake", + "position": 9, + "title": "Controlla" + }, + { + "artist": "Desiigner", + "position": 10, + "title": "Tiimmy Turner" + }, + { + "artist": "Usher Featuring Young Thug", + "position": 11, + "title": "No Limit" + }, + { + "artist": "Kanye West", + "position": 12, + "title": "Fade" + }, + { + "artist": "Young Thug And Travis Scott Featuring Quavo", + "position": 13, + "title": "Pick Up The Phone" + }, + { + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "position": 14, + "title": "Chill Bill" + }, + { + "artist": "Lil Uzi Vert", + "position": 15, + "title": "Money Longer" + }, + { + "artist": "Kanye West", + "position": 16, + "title": "Father Stretch My Hands Pt. 1" + }, + { + "artist": "Kent Jones", + "position": 17, + "title": "Don't Mind" + }, + { + "artist": "DJ Khaled Featuring Jay Z & Future", + "position": 18, + "title": "I Got The Keys" + }, + { + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "position": 19, + "title": "No Problem" + }, + { + "artist": "ScHoolboy Q Featuring Kanye West", + "position": 20, + "title": "THat Part" + }, + { + "artist": "Young M.A", + "position": 21, + "title": "OOOUUU" + }, + { + "artist": "Dae Dae", + "position": 22, + "title": "Wat U Mean (Aye, Aye, Aye)" + }, + { + "artist": "Aminé", + "position": 23, + "title": "Caroline" + }, + { + "artist": "Kehlani", + "position": 24, + "title": "Gangsta" + }, + { + "artist": "Post Malone Featuring Justin Bieber", + "position": 25, + "title": "Deja Vu" + } + ], + "title": "2016 - Hot R & B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Major Lazer Featuring Justin Bieber & MO", + "position": 1, + "title": "Cold Water" + }, + { + "artist": "The Chainsmokers Featuring Halsey", + "position": 2, + "title": "Closer" + }, + { + "artist": "Adele", + "position": 3, + "title": "Send My Love (To Your New Lover)" + }, + { + "artist": "Shawn Mendes", + "position": 4, + "title": "Treat You Better" + }, + { + "artist": "Sia Featuring Sean Paul", + "position": 5, + "title": "Cheap Thrills" + }, + { + "artist": "twenty one pilots", + "position": 6, + "title": "Ride" + }, + { + "artist": "Ariana Grande", + "position": 7, + "title": "Into You" + }, + { + "artist": "Calvin Harris Featuring Rihanna", + "position": 8, + "title": "This Is What You Came For" + }, + { + "artist": "twenty one pilots", + "position": 9, + "title": "Heathens" + }, + { + "artist": "Kiiara", + "position": 10, + "title": "Gold" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 11, + "title": "Too Good" + }, + { + "artist": "Charlie Puth Featuring Selena Gomez", + "position": 12, + "title": "We Don't Talk Anymore" + }, + { + "artist": "Daya", + "position": 13, + "title": "Sit Still, Look Pretty" + }, + { + "artist": "DJ Snake Featuring Justin Bieber", + "position": 14, + "title": "Let Me Love You" + }, + { + "artist": "Drake Featuring WizKid & Kyla", + "position": 15, + "title": "One Dance" + }, + { + "artist": "Kungs vs Cookin' On 3 Burners", + "position": 16, + "title": "This Girl" + }, + { + "artist": "Justin Timberlake", + "position": 17, + "title": "Can't Stop The Feeling!" + }, + { + "artist": "Rihanna", + "position": 18, + "title": "Needed Me" + }, + { + "artist": "gnash Featuring Olivia O'Brien", + "position": 19, + "title": "I Hate U I Love U" + }, + { + "artist": "Lukas Graham", + "position": 20, + "title": "Mama Said" + } + ], + "title": "2016 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Kelsea Ballerini", + "position": 1, + "title": "Peter Pan" + }, + { + "artist": "Kenny Chesney Featuring P!nk", + "position": 2, + "title": "Setting The World On Fire" + }, + { + "artist": "Dierks Bentley Featuring Elle King", + "position": 3, + "title": "Different For Girls" + }, + { + "artist": "Florida Georgia Line", + "position": 4, + "title": "H.O.L.Y." + }, + { + "artist": "Billy Currington", + "position": 5, + "title": "It Don't Hurt Like It Used To" + }, + { + "artist": "Sam Hunt", + "position": 6, + "title": "Make You Miss Me" + }, + { + "artist": "Miranda Lambert", + "position": 7, + "title": "Vice" + }, + { + "artist": "Cole Swindell", + "position": 8, + "title": "Middle Of A Memory" + }, + { + "artist": "Tucker Beathard", + "position": 9, + "title": "Rock On" + }, + { + "artist": "Jason Aldean", + "position": 10, + "title": "A Little More Summertime" + }, + { + "artist": "William Michael Morgan", + "position": 11, + "title": "I Met A Girl" + }, + { + "artist": "Keith Urban", + "position": 12, + "title": "Blue Ain't Your Color" + }, + { + "artist": "Blake Shelton", + "position": 13, + "title": "She's Got A Way With Words" + }, + { + "artist": "Luke Bryan", + "position": 14, + "title": "Move" + }, + { + "artist": "LoCash", + "position": 15, + "title": "I Know Somebody" + }, + { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "position": 16, + "title": "May We All" + }, + { + "artist": "Brett Young", + "position": 17, + "title": "Sleep Without You" + }, + { + "artist": "Justin Moore", + "position": 18, + "title": "You Look Like I Need A Drink" + }, + { + "artist": "Jason Aldean", + "position": 19, + "title": "Lights Come On" + }, + { + "artist": "Carrie Underwood", + "position": 20, + "title": "Church Bells" + }, + { + "artist": "Old Dominion", + "position": 21, + "title": "Song For Another Time" + }, + { + "artist": "Maren Morris", + "position": 22, + "title": "80s Mercedes" + }, + { + "artist": "Brett Eldredge", + "position": 23, + "title": "Wanna Be That Song" + }, + { + "artist": "Zac Brown Band", + "position": 24, + "title": "Castaway" + }, + { + "artist": "Tim McGraw", + "position": 25, + "title": "How I'll Always Be" + } + ], + "title": "2016 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "The Chainsmokers Featuring Halsey", + "position": 1, + "title": "Closer" + }, + { + "artist": "twenty one pilots", + "position": 2, + "title": "Heathens" + }, + { + "artist": "Major Lazer Featuring Justin Bieber & MO", + "position": 3, + "title": "Cold Water" + }, + { + "artist": "Sia Featuring Sean Paul", + "position": 4, + "title": "Cheap Thrills" + }, + { + "artist": "The Chainsmokers Featuring Daya", + "position": 5, + "title": "Don't Let Me Down" + }, + { + "artist": "DJ Snake Featuring Justin Bieber", + "position": 6, + "title": "Let Me Love You" + }, + { + "artist": "Calvin Harris Featuring Rihanna", + "position": 7, + "title": "This Is What You Came For" + }, + { + "artist": "Shawn Mendes", + "position": 8, + "title": "Treat You Better" + }, + { + "artist": "twenty one pilots", + "position": 9, + "title": "Ride" + }, + { + "artist": "Adele", + "position": 10, + "title": "Send My Love (To Your New Lover)" + }, + { + "artist": "Rihanna", + "position": 11, + "title": "Needed Me" + }, + { + "artist": "D.R.A.M. Featuring Lil Yachty", + "position": 12, + "title": "Broccoli" + }, + { + "artist": "Charlie Puth Featuring Selena Gomez", + "position": 13, + "title": "We Don't Talk Anymore" + }, + { + "artist": "Drake Featuring WizKid & Kyla", + "position": 14, + "title": "One Dance" + }, + { + "artist": "Lady Gaga", + "position": 15, + "title": "Perfect Illusion" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 16, + "title": "Too Good" + }, + { + "artist": "Ariana Grande", + "position": 17, + "title": "Into You" + }, + { + "artist": "Justin Timberlake", + "position": 18, + "title": "Can't Stop The Feeling!" + }, + { + "artist": "Ariana Grande Featuring Nicki Minaj", + "position": 19, + "title": "Side To Side" + }, + { + "artist": "Kiiara", + "position": 20, + "title": "Gold" + }, + { + "artist": "Tory Lanez", + "position": 21, + "title": "Luv" + }, + { + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "position": 22, + "title": "Sucker For Pain" + }, + { + "artist": "gnash Featuring Olivia O'Brien", + "position": 23, + "title": "I Hate U I Love U" + }, + { + "artist": "Sia Featuring Kendrick Lamar", + "position": 24, + "title": "The Greatest" + }, + { + "artist": "Desiigner", + "position": 25, + "title": "Panda" + }, + { + "artist": "Coldplay", + "position": 26, + "title": "Hymn For The Weekend" + }, + { + "artist": "DJ Khaled Featuring Drake", + "position": 27, + "title": "For Free" + }, + { + "artist": "Flume Featuring Kai", + "position": 28, + "title": "Never Be Like You" + }, + { + "artist": "X Ambassadors", + "position": 29, + "title": "Unsteady" + }, + { + "artist": "Drake", + "position": 30, + "title": "Controlla" + }, + { + "artist": "Kungs vs Cookin' On 3 Burners", + "position": 31, + "title": "This Girl" + }, + { + "artist": "Daya", + "position": 32, + "title": "Sit Still, Look Pretty" + }, + { + "artist": "Hailee Steinfeld & Grey Featuring Zedd", + "position": 33, + "title": "Starving" + }, + { + "artist": "Desiigner", + "position": 34, + "title": "Tiimmy Turner" + }, + { + "artist": "Fifth Harmony Featuring Ty Dolla $ign", + "position": 35, + "title": "Work From Home" + }, + { + "artist": "P!nk", + "position": 36, + "title": "Just Like Fire" + }, + { + "artist": "Usher Featuring Young Thug", + "position": 37, + "title": "No Limit" + }, + { + "artist": "twenty one pilots", + "position": 38, + "title": "Stressed Out" + }, + { + "artist": "Kelsea Ballerini", + "position": 39, + "title": "Peter Pan" + }, + { + "artist": "Kenny Chesney Featuring P!nk", + "position": 40, + "title": "Setting The World On Fire" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 41, + "title": "Work" + }, + { + "artist": "Dierks Bentley Featuring Elle King", + "position": 42, + "title": "Different For Girls" + }, + { + "artist": "Mike Posner", + "position": 43, + "title": "I Took A Pill In Ibiza" + }, + { + "artist": "Future Featuring The Weeknd", + "position": 44, + "title": "Low Life" + }, + { + "artist": "Lukas Graham", + "position": 45, + "title": "7 Years" + }, + { + "artist": "Lukas Graham", + "position": 46, + "title": "Mama Said" + }, + { + "artist": "Kanye West", + "position": 47, + "title": "Fade" + }, + { + "artist": "Young Thug And Travis Scott Featuring Quavo", + "position": 48, + "title": "Pick Up The Phone" + }, + { + "artist": "Florida Georgia Line", + "position": 49, + "title": "H.O.L.Y." + }, + { + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "position": 50, + "title": "Chill Bill" + }, + { + "artist": "Martin Garrix & Bebe Rexha", + "position": 51, + "title": "In The Name Of Love" + }, + { + "artist": "Fifth Harmony Featuring Fetty Wap", + "position": 52, + "title": "All In My Head (Flex)" + }, + { + "artist": "Meghan Trainor", + "position": 53, + "title": "Me Too" + }, + { + "artist": "Lil Uzi Vert", + "position": 54, + "title": "Money Longer" + }, + { + "artist": "Billy Currington", + "position": 55, + "title": "It Don't Hurt Like It Used To" + }, + { + "artist": "Kanye West", + "position": 56, + "title": "Father Stretch My Hands Pt. 1" + }, + { + "artist": "Sam Hunt", + "position": 57, + "title": "Make You Miss Me" + }, + { + "artist": "Kent Jones", + "position": 58, + "title": "Don't Mind" + }, + { + "artist": "DJ Khaled Featuring Jay Z & Future", + "position": 59, + "title": "I Got The Keys" + }, + { + "artist": "Miranda Lambert", + "position": 60, + "title": "Vice" + }, + { + "artist": "Marc E. Bassy Featuring G-Eazy", + "position": 61, + "title": "You & Me" + }, + { + "artist": "Alessia Cara", + "position": 62, + "title": "Scars To Your Beautiful" + }, + { + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "position": 63, + "title": "No Problem" + }, + { + "artist": "Cole Swindell", + "position": 64, + "title": "Middle Of A Memory" + }, + { + "artist": "Tucker Beathard", + "position": 65, + "title": "Rock On" + }, + { + "artist": "ScHoolboy Q Featuring Kanye West", + "position": 66, + "title": "THat Part" + }, + { + "artist": "Young M.A", + "position": 67, + "title": "OOOUUU" + }, + { + "artist": "Dae Dae", + "position": 68, + "title": "Wat U Mean (Aye, Aye, Aye)" + }, + { + "artist": "Jason Aldean", + "position": 69, + "title": "A Little More Summertime" + }, + { + "artist": "Amin�", + "position": 70, + "title": "Caroline" + }, + { + "artist": "William Michael Morgan", + "position": 71, + "title": "I Met A Girl" + }, + { + "artist": "Katy Perry", + "position": 72, + "title": "Rise" + }, + { + "artist": "Keith Urban", + "position": 73, + "title": "Blue Ain't Your Color" + }, + { + "artist": "Kehlani", + "position": 74, + "title": "Gangsta" + }, + { + "artist": "Post Malone Featuring Justin Bieber", + "position": 75, + "title": "Deja Vu" + }, + { + "artist": "Britney Spears Featuring G-Eazy", + "position": 76, + "title": "Make Me..." + }, + { + "artist": "YG Featuring Drake & Kamaiyah", + "position": 77, + "title": "Why You Always Hatin?" + }, + { + "artist": "Skrillex & Rick Ross", + "position": 78, + "title": "Purple Lamborghini" + }, + { + "artist": "Blake Shelton", + "position": 79, + "title": "She's Got A Way With Words" + }, + { + "artist": "Luke Bryan", + "position": 80, + "title": "Move" + }, + { + "artist": "DJ ESCO Featuring Future & Lil Uzi Vert", + "position": 81, + "title": "Too Much Sauce" + }, + { + "artist": "PARTYNEXTDOOR Featuring Drake", + "position": 82, + "title": "Come And See Me" + }, + { + "artist": "Lil Yachty", + "position": 83, + "title": "1 Night" + }, + { + "artist": "Wale", + "position": 84, + "title": "My PYT" + }, + { + "artist": "LoCash", + "position": 85, + "title": "I Know Somebody" + }, + { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "position": 86, + "title": "May We All" + }, + { + "artist": "Drake", + "position": 87, + "title": "Childs Play" + }, + { + "artist": "Beyonce", + "position": 88, + "title": "Hold Up" + }, + { + "artist": "Brett Young", + "position": 89, + "title": "Sleep Without You" + }, + { + "artist": "Jake Owen", + "position": 90, + "title": "American Country Love Song" + }, + { + "artist": "Justin Moore", + "position": 91, + "title": "You Look Like I Need A Drink" + }, + { + "artist": "Nicky Jam", + "position": 92, + "title": "With You Tonight / Hasta El Amanecer" + }, + { + "artist": "DJ Drama Featuring Chris Brown, Skeme & Lyquin", + "position": 93, + "title": "Wishing" + }, + { + "artist": "Chris Brown", + "position": 94, + "title": "Grass Ain't Greener" + }, + { + "artist": "DJ Khaled Featuring Nicki Minaj, Chris Brown & August Alsina", + "position": 95, + "title": "Do You Mind" + }, + { + "artist": "Rae Sremmurd Featuring Gucci Mane", + "position": 96, + "title": "Black Beatles" + }, + { + "artist": "French Montana Featuring Drake", + "position": 97, + "title": "No Shopping" + }, + { + "artist": "21 Savage & Metro Boomin Featuring Future", + "position": 98, + "title": "X" + }, + { + "artist": "Lil Uzi Vert", + "position": 99, + "title": "You Was Right" + }, + { + "artist": "Grace Featuring G-Eazy", + "position": 100, + "title": "You Don't Own Me" + } + ], + "title": "2016 - Hot 100" + }, + { + "songs": [ + { + "artist": "Drake", + "position": 1, + "title": "Hotline Bling" + }, + { + "artist": "The Weeknd", + "position": 2, + "title": "The Hills" + }, + { + "artist": "Alessia Cara", + "position": 3, + "title": "Here" + }, + { + "artist": "Fetty Wap Featuring Remy Boyz", + "position": 4, + "title": "679" + }, + { + "artist": "Drake & Future", + "position": 5, + "title": "Jumpman" + }, + { + "artist": "The Weeknd", + "position": 6, + "title": "Can't Feel My Face" + }, + { + "artist": "Travi$ Scott", + "position": 7, + "title": "Antidote" + }, + { + "artist": "The Weeknd", + "position": 8, + "title": "In The Night" + }, + { + "artist": "Bryson Tiller", + "position": 9, + "title": "Don't" + }, + { + "artist": "Post Malone", + "position": 10, + "title": "White Iverson" + }, + { + "artist": "Tory Lanez", + "position": 11, + "title": "Say It" + }, + { + "artist": "Future Featuring Drake", + "position": 12, + "title": "Where Ya At" + }, + { + "artist": "G-Eazy x Bebe Rexha", + "position": 13, + "title": "Me, Myself & I" + }, + { + "artist": "Fetty Wap", + "position": 14, + "title": "Again" + }, + { + "artist": "iLoveMemphis", + "position": 15, + "title": "Hit The Quan" + }, + { + "artist": "DeJ Loaf Featuring Big Sean", + "position": 16, + "title": "Back Up" + }, + { + "artist": "Fetty Wap Featuring Monty", + "position": 17, + "title": "My Way" + }, + { + "artist": "Bryson Tiller", + "position": 18, + "title": "Exchange" + }, + { + "artist": "Missy Elliott Featuring Pharrell Williams", + "position": 19, + "title": "WTF (Where They From)" + }, + { + "artist": "DLOW", + "position": 20, + "title": "Bet You Can't Do It Like Me" + }, + { + "artist": "Nelly Featuring Jeremih", + "position": 21, + "title": "The Fix" + }, + { + "artist": "Drake & Future", + "position": 22, + "title": "Big Rings" + }, + { + "artist": "Drake", + "position": 23, + "title": "Back To Back" + }, + { + "artist": "Yo Gotti", + "position": 24, + "title": "Down In The DM" + }, + { + "artist": "Young Thug", + "position": 25, + "title": "Best Friend" + } + ], + "title": "2015 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Elle King", + "position": 1, + "title": "Ex's & Oh's" + }, + { + "artist": "twenty one pilots", + "position": 2, + "title": "Stressed Out" + }, + { + "artist": "Coldplay", + "position": 3, + "title": "Adventure Of A Lifetime" + }, + { + "artist": "X Ambassadors", + "position": 4, + "title": "Renegades" + }, + { + "artist": "WALK THE MOON", + "position": 5, + "title": "Shut Up And Dance" + }, + { + "artist": "Fall Out Boy", + "position": 6, + "title": "Irresistible" + }, + { + "artist": "Stone Temple Pilots", + "position": 7, + "title": "Plush" + }, + { + "artist": "Fall Out Boy", + "position": 8, + "title": "Uma Thurman" + }, + { + "artist": "Stone Temple Pilots", + "position": 9, + "title": "Interstate Love Song" + }, + { + "artist": "James Bay", + "position": 10, + "title": "Let It Go" + }, + { + "artist": "Nathaniel Rateliff & The Night Sweats", + "position": 11, + "title": "S.O.B." + }, + { + "artist": "Stone Temple Pilots", + "position": 12, + "title": "Creep" + }, + { + "artist": "Coldplay", + "position": 13, + "title": "Everglow" + }, + { + "artist": "Panic! At The Disco", + "position": 14, + "title": "Emperor's New Clothes" + }, + { + "artist": "Coleman Hell", + "position": 15, + "title": "2 Heads" + }, + { + "artist": "Panic! At The Disco", + "position": 16, + "title": "Victorious" + }, + { + "artist": "Vance Joy", + "position": 17, + "title": "Fire And The Flood" + }, + { + "artist": "Disturbed", + "position": 18, + "title": "The Sound Of Silence" + }, + { + "artist": "X Ambassadors", + "position": 19, + "title": "Unsteady" + }, + { + "artist": "Coldplay", + "position": 20, + "title": "Hymn For The Weekend" + }, + { + "artist": "Bring Me The Horizon", + "position": 21, + "title": "Throne" + }, + { + "artist": "Cage The Elephant", + "position": 22, + "title": "Mess Around" + }, + { + "artist": "Death Cab For Cutie", + "position": 23, + "title": "The Ghosts Of Beverly Drive" + }, + { + "artist": "Disturbed", + "position": 24, + "title": "The Light" + }, + { + "artist": "Shinedown", + "position": 25, + "title": "Cut The Cord" + } + ], + "title": "2015 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Adele", + "position": 1, + "title": "Hello" + }, + { + "artist": "Justin Bieber", + "position": 2, + "title": "Sorry" + }, + { + "artist": "Selena Gomez", + "position": 3, + "title": "Same Old Love" + }, + { + "artist": "Alessia Cara", + "position": 4, + "title": "Here" + }, + { + "artist": "Ellie Goulding", + "position": 5, + "title": "On My Mind" + }, + { + "artist": "Meghan Trainor Featuring John Legend", + "position": 6, + "title": "Like I'm Gonna Lose You" + }, + { + "artist": "Drake", + "position": 7, + "title": "Hotline Bling" + }, + { + "artist": "Shawn Mendes", + "position": 8, + "title": "Stitches" + }, + { + "artist": "Elle King", + "position": 9, + "title": "Ex's & Oh's" + }, + { + "artist": "The Weeknd", + "position": 10, + "title": "In The Night" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Wildest Dreams" + }, + { + "artist": "Demi Lovato", + "position": 12, + "title": "Confident" + }, + { + "artist": "One Direction", + "position": 13, + "title": "Perfect" + }, + { + "artist": "Justin Bieber", + "position": 14, + "title": "What Do You Mean?" + }, + { + "artist": "Daya", + "position": 15, + "title": "Hide Away" + }, + { + "artist": "The Weeknd", + "position": 16, + "title": "The Hills" + }, + { + "artist": "The Chainsmokers Featuring ROZES", + "position": 17, + "title": "Roses" + }, + { + "artist": "Ariana Grande", + "position": 18, + "title": "Focus" + }, + { + "artist": "twenty one pilots", + "position": 19, + "title": "Stressed Out" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 20, + "title": "I Know What You Did Last Summer" + } + ], + "title": "2015 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Thomas Rhett", + "position": 1, + "title": "Die A Happy Man" + }, + { + "artist": "Sam Hunt", + "position": 2, + "title": "Break Up In A Small Town" + }, + { + "artist": "Cam", + "position": 3, + "title": "Burning House" + }, + { + "artist": "Blake Shelton", + "position": 4, + "title": "Gonna" + }, + { + "artist": "Chris Young", + "position": 5, + "title": "I'm Comin' Over" + }, + { + "artist": "Brothers Osborne", + "position": 6, + "title": "Stay A Little Longer" + }, + { + "artist": "Jason Aldean", + "position": 7, + "title": "Gonna Know We Were Here" + }, + { + "artist": "Luke Bryan Featuring Karen Fairchild", + "position": 8, + "title": "Home Alone Tonight" + }, + { + "artist": "Dan + Shay", + "position": 9, + "title": "Nothin' Like You" + }, + { + "artist": "Jana Kramer", + "position": 10, + "title": "I Got The Boy" + }, + { + "artist": "Tim McGraw", + "position": 11, + "title": "Top Of The World" + }, + { + "artist": "LoCash", + "position": 12, + "title": "I Love This Life" + }, + { + "artist": "Luke Bryan", + "position": 13, + "title": "Strip It Down" + }, + { + "artist": "Carrie Underwood", + "position": 14, + "title": "Smoke Break" + }, + { + "artist": "Kelsea Ballerini", + "position": 15, + "title": "Dibs" + }, + { + "artist": "Parmalee", + "position": 16, + "title": "Already Callin' You Mine" + }, + { + "artist": "Granger Smith", + "position": 17, + "title": "Backroad Song" + }, + { + "artist": "Zac Brown Band", + "position": 18, + "title": "Beautiful Drug" + }, + { + "artist": "Randy Houser", + "position": 19, + "title": "We Went" + }, + { + "artist": "Chris Stapleton", + "position": 20, + "title": "Tennessee Whiskey" + }, + { + "artist": "Eric Church", + "position": 21, + "title": "Mr. Misunderstood" + }, + { + "artist": "Keith Urban", + "position": 22, + "title": "Break On Me." + }, + { + "artist": "Brad Paisley", + "position": 23, + "title": "Country Nation" + }, + { + "artist": "Kenny Chesney", + "position": 24, + "title": "Save It For A Rainy Day" + }, + { + "artist": "Emily Ann Roberts", + "position": 25, + "title": "9 To 5" + } + ], + "title": "2015 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Adele", + "position": 1, + "title": "Hello" + }, + { + "artist": "Justin Bieber", + "position": 2, + "title": "Sorry" + }, + { + "artist": "Drake", + "position": 3, + "title": "Hotline Bling" + }, + { + "artist": "Justin Bieber", + "position": 4, + "title": "What Do You Mean?" + }, + { + "artist": "Justin Bieber", + "position": 5, + "title": "Love Yourself" + }, + { + "artist": "The Weeknd", + "position": 6, + "title": "The Hills" + }, + { + "artist": "Shawn Mendes", + "position": 7, + "title": "Stitches" + }, + { + "artist": "Alessia Cara", + "position": 8, + "title": "Here" + }, + { + "artist": "Selena Gomez", + "position": 9, + "title": "Same Old Love" + }, + { + "artist": "Meghan Trainor Featuring John Legend", + "position": 10, + "title": "Like I'm Gonna Lose You" + }, + { + "artist": "Fetty Wap Featuring Remy Boyz", + "position": 11, + "title": "679" + }, + { + "artist": "Elle King", + "position": 12, + "title": "Ex's & Oh's" + }, + { + "artist": "Ellie Goulding", + "position": 13, + "title": "On My Mind" + }, + { + "artist": "Drake & Future", + "position": 14, + "title": "Jumpman" + }, + { + "artist": "The Weeknd", + "position": 15, + "title": "Can't Feel My Face" + }, + { + "artist": "Travi$ Scott", + "position": 16, + "title": "Antidote" + }, + { + "artist": "Major Lazer & DJ Snake Featuring M0", + "position": 17, + "title": "Lean On" + }, + { + "artist": "Taylor Swift", + "position": 18, + "title": "Wildest Dreams" + }, + { + "artist": "The Weeknd", + "position": 19, + "title": "In The Night" + }, + { + "artist": "Bryson Tiller", + "position": 20, + "title": "Don't" + }, + { + "artist": "Jordan Smith", + "position": 21, + "title": "Somebody To Love" + }, + { + "artist": "Mariah Carey", + "position": 22, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Post Malone", + "position": 23, + "title": "White Iverson" + }, + { + "artist": "Ariana Grande", + "position": 24, + "title": "Focus" + }, + { + "artist": "Thomas Rhett", + "position": 25, + "title": "Die A Happy Man" + }, + { + "artist": "Silento", + "position": 26, + "title": "Watch Me" + }, + { + "artist": "Fetty Wap", + "position": 27, + "title": "Trap Queen" + }, + { + "artist": "twenty one pilots", + "position": 28, + "title": "Stressed Out" + }, + { + "artist": "The Chainsmokers Featuring ROZES", + "position": 29, + "title": "Roses" + }, + { + "artist": "Tory Lanez", + "position": 30, + "title": "Say It" + }, + { + "artist": "Demi Lovato", + "position": 31, + "title": "Confident" + }, + { + "artist": "One Direction", + "position": 32, + "title": "Perfect" + }, + { + "artist": "R. City Featuring Adam Levine", + "position": 33, + "title": "Locked Away" + }, + { + "artist": "Sam Hunt", + "position": 34, + "title": "Break Up In A Small Town" + }, + { + "artist": "Future Featuring Drake", + "position": 35, + "title": "Where Ya At" + }, + { + "artist": "G-Eazy x Bebe Rexha", + "position": 36, + "title": "Me, Myself & I" + }, + { + "artist": "J. Cole", + "position": 37, + "title": "No Role Modelz" + }, + { + "artist": "Skrillex & Diplo With Justin Bieber", + "position": 38, + "title": "Where Are U Now" + }, + { + "artist": "Coldplay", + "position": 39, + "title": "Adventure Of A Lifetime" + }, + { + "artist": "Selena Gomez Featuring A$AP Rocky", + "position": 40, + "title": "Good For You" + }, + { + "artist": "Wiz Khalifa Featuring Charlie Puth", + "position": 41, + "title": "See You Again" + }, + { + "artist": "Fetty Wap", + "position": 42, + "title": "Again" + }, + { + "artist": "OMI", + "position": 43, + "title": "Cheerleader" + }, + { + "artist": "Brenda Lee", + "position": 44, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "iLoveMemphis", + "position": 45, + "title": "Hit The Quan" + }, + { + "artist": "One Direction", + "position": 46, + "title": "Drag Me Down" + }, + { + "artist": "Cam", + "position": 47, + "title": "Burning House" + }, + { + "artist": "Daya", + "position": 48, + "title": "Hide Away" + }, + { + "artist": "DeJ Loaf Featuring Big Sean", + "position": 49, + "title": "Back Up" + }, + { + "artist": "X Ambassadors", + "position": 50, + "title": "Renegades" + }, + { + "artist": "Justin Bieber", + "position": 51, + "title": "I'll Show You" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 52, + "title": "I Know What You Did Last Summer" + }, + { + "artist": "Bryson Tiller", + "position": 53, + "title": "Exchange" + }, + { + "artist": "Blake Shelton", + "position": 54, + "title": "Gonna" + }, + { + "artist": "Flo Rida", + "position": 55, + "title": "My House" + }, + { + "artist": "Gwen Stefani", + "position": 56, + "title": "Used To Love You" + }, + { + "artist": "Missy Elliott Featuring Pharrell Williams", + "position": 57, + "title": "WTF (Where They From)" + }, + { + "artist": "Rudimental Featuring Ed Sheeran", + "position": 58, + "title": "Lay It All On Me" + }, + { + "artist": "Brothers Osborne", + "position": 59, + "title": "Stay A Little Longer" + }, + { + "artist": "DLOW", + "position": 60, + "title": "Bet You Can't Do It Like Me" + }, + { + "artist": "Rachel Platten", + "position": 61, + "title": "Stand By You" + }, + { + "artist": "Nelly Featuring Jeremih", + "position": 62, + "title": "The Fix" + }, + { + "artist": "DNCE", + "position": 63, + "title": "Cake By The Ocean" + }, + { + "artist": "Drake & Future", + "position": 64, + "title": "Big Rings" + }, + { + "artist": "Jason Aldean", + "position": 65, + "title": "Gonna Know We Were Here" + }, + { + "artist": "Drake", + "position": 66, + "title": "Back To Back" + }, + { + "artist": "Luke Bryan Featuring Karen Fairchild", + "position": 67, + "title": "Home Alone Tonight" + }, + { + "artist": "Yo Gotti", + "position": 68, + "title": "Down In The DM" + }, + { + "artist": "Dan + Shay", + "position": 69, + "title": "Nothin' Like You" + }, + { + "artist": "Justin Bieber Featuring Halsey", + "position": 70, + "title": "The Feeling" + }, + { + "artist": "Jana Kramer", + "position": 71, + "title": "I Got The Boy" + }, + { + "artist": "Young Thug", + "position": 72, + "title": "Best Friend" + }, + { + "artist": "Tim McGraw", + "position": 73, + "title": "Top Of The World" + }, + { + "artist": "LoCash", + "position": 74, + "title": "I Love This Life" + }, + { + "artist": "Charlie Puth", + "position": 75, + "title": "One Call Away" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring Eric Nally, Melle Mel, Kool Moe Dee & Grandmaster Caz", + "position": 76, + "title": "Downtown" + }, + { + "artist": "Selena Gomez", + "position": 77, + "title": "Hands To Myself" + }, + { + "artist": "Adele", + "position": 78, + "title": "When We Were Young" + }, + { + "artist": "Rae Sremmurd", + "position": 79, + "title": "Come Get Her" + }, + { + "artist": "Luke Bryan", + "position": 80, + "title": "Strip It Down" + }, + { + "artist": "Ty Dolla $ign Featuring Future & Rae Sremmurd", + "position": 81, + "title": "Blase" + }, + { + "artist": "Halsey", + "position": 82, + "title": "New Americana" + }, + { + "artist": "Carrie Underwood", + "position": 83, + "title": "Smoke Break" + }, + { + "artist": "Fall Out Boy", + "position": 84, + "title": "Irresistible" + }, + { + "artist": "Justin Bieber", + "position": 85, + "title": "Purpose" + }, + { + "artist": "Kelsea Ballerini", + "position": 86, + "title": "Dibs" + }, + { + "artist": "Lil Dicky Featuring Fetty Wap & Rich Homie Quan", + "position": 87, + "title": "$ave Dat Money" + }, + { + "artist": "Drake", + "position": 88, + "title": "Right Hand" + }, + { + "artist": "Dawin", + "position": 89, + "title": "Dessert" + }, + { + "artist": "Justin Bieber", + "position": 90, + "title": "Mark My Words" + }, + { + "artist": "Parmalee", + "position": 91, + "title": "Already Callin' You Mine" + }, + { + "artist": "Big Sean Featuring Chris Brown & Ty Dolla $ign", + "position": 92, + "title": "Play No Games" + }, + { + "artist": "Granger Smith", + "position": 93, + "title": "Backroad Song" + }, + { + "artist": "G-Eazy", + "position": 94, + "title": "Random" + }, + { + "artist": "Justin Bieber", + "position": 95, + "title": "Company" + }, + { + "artist": "Justin Bieber Featuring Big Sean", + "position": 96, + "title": "No Pressure" + }, + { + "artist": "Rick Ross Featuring Chris Brown", + "position": 97, + "title": "Sorry" + }, + { + "artist": "G-Eazy Featuring Chris Brown & Tory Lanez", + "position": 98, + "title": "Drifting" + }, + { + "artist": "Chris Brown", + "position": 99, + "title": "Liquor" + }, + { + "artist": "Zac Brown Band", + "position": 100, + "title": "Beautiful Drug" + } + ], + "title": "2015 - Hot 100" + }, + { + "songs": [ + { + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "position": 1, + "title": "Only" + }, + { + "artist": "Big Sean Featuring E-40", + "position": 2, + "title": "I Don't F**k With You" + }, + { + "artist": "I LOVE MAKONNEN Featuring Drake", + "position": 3, + "title": "Tuesday" + }, + { + "artist": "Beyonce", + "position": 4, + "title": "7/11" + }, + { + "artist": "Rae Sremmurd", + "position": 5, + "title": "No Type" + }, + { + "artist": "Bobby Shmurda", + "position": 6, + "title": "Hot Boy" + }, + { + "artist": "O.T. Genasis", + "position": 7, + "title": "CoCo" + }, + { + "artist": "Iggy Azalea Featuring M0", + "position": 8, + "title": "Beg For It" + }, + { + "artist": "Jeremih Featuring YG", + "position": 9, + "title": "Don't Tell 'Em" + }, + { + "artist": "Iggy Azalea Featuring Rita Ora", + "position": 10, + "title": "Black Widow" + }, + { + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "position": 11, + "title": "Lifestyle" + }, + { + "artist": "Usher Featuring Juicy J", + "position": 12, + "title": "I Don't Mind" + }, + { + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "position": 13, + "title": "Hold You Down" + }, + { + "artist": "DeJ Loaf", + "position": 14, + "title": "Try Me" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 15, + "title": "Touchin, Lovin" + }, + { + "artist": "Chris Brown Featuring Usher & Rick Ross", + "position": 16, + "title": "New Flame" + }, + { + "artist": "Nicki Minaj", + "position": 17, + "title": "Anaconda" + }, + { + "artist": "Drake", + "position": 18, + "title": "0 To 100 / The Catch Up" + }, + { + "artist": "Rae Sremmurd", + "position": 19, + "title": "No Flex Zone" + }, + { + "artist": "J. Cole", + "position": 20, + "title": "Wet Dreamz" + }, + { + "artist": "The Weeknd", + "position": 21, + "title": "Often" + }, + { + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "position": 22, + "title": "***Flawless" + }, + { + "artist": "August Alsina", + "position": 23, + "title": "No Love" + }, + { + "artist": "Ne-Yo Featuring Juicy J", + "position": 24, + "title": "She Knows" + }, + { + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "position": 25, + "title": "G.D.F.R." + } + ], + "title": "2014 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Hozier", + "position": 1, + "title": "Take Me To Church" + }, + { + "artist": "Fall Out Boy", + "position": 2, + "title": "Centuries" + }, + { + "artist": "Vance Joy", + "position": 3, + "title": "Riptide" + }, + { + "artist": "Milky Chance", + "position": 4, + "title": "Stolen Dance" + }, + { + "artist": "Imagine Dragons", + "position": 5, + "title": "I Bet My Life" + }, + { + "artist": "WALK THE MOON", + "position": 6, + "title": "Shut Up And Dance" + }, + { + "artist": "Lorde", + "position": 7, + "title": "Yellow Flicker Beat" + }, + { + "artist": "Coldplay", + "position": 8, + "title": "A Sky Full Of Stars" + }, + { + "artist": "The White Buffalo & The Forest Rangers", + "position": 9, + "title": "Come Join The Murder" + }, + { + "artist": "Foo Fighters", + "position": 10, + "title": "Something From Nothing" + }, + { + "artist": "Matt McAndrew", + "position": 11, + "title": "I Still Haven't Found What I'm Looking For" + }, + { + "artist": "Fall Out Boy", + "position": 12, + "title": "Immortals" + }, + { + "artist": "alt-J", + "position": 13, + "title": "Left Hand Free" + }, + { + "artist": "George Ezra", + "position": 14, + "title": "Budapest" + }, + { + "artist": "Cage The Elephant", + "position": 15, + "title": "Cigarette Daydreams" + }, + { + "artist": "MisterWives", + "position": 16, + "title": "Reflections" + }, + { + "artist": "Hozier", + "position": 17, + "title": "From Eden" + }, + { + "artist": "Royal Blood", + "position": 18, + "title": "Figure It Out" + }, + { + "artist": "Matt McAndrew", + "position": 19, + "title": "The Blower's Daughter" + }, + { + "artist": "Bring Me The Horizon", + "position": 20, + "title": "Drown" + }, + { + "artist": "Matt McAndrew", + "position": 21, + "title": "Take Me To Church" + }, + { + "artist": "Hozier", + "position": 22, + "title": "Work Song" + }, + { + "artist": "Five Finger Death Punch", + "position": 23, + "title": "Wrong Side Of Heaven" + }, + { + "artist": "Bastille", + "position": 24, + "title": "Flaws" + }, + { + "artist": "Vance Joy", + "position": 25, + "title": "Mess Is Mine" + } + ], + "title": "2014 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Taylor Swift", + "position": 1, + "title": "Blank Space" + }, + { + "artist": "Maroon 5", + "position": 2, + "title": "Animals" + }, + { + "artist": "Calvin Harris Featuring John Newman", + "position": 3, + "title": "Blame" + }, + { + "artist": "Ed Sheeran", + "position": 4, + "title": "Don't" + }, + { + "artist": "Nick Jonas", + "position": 5, + "title": "Jealous" + }, + { + "artist": "Mr. Probz", + "position": 6, + "title": "Waves" + }, + { + "artist": "Ariana Grande & The Weeknd", + "position": 7, + "title": "Love Me Harder" + }, + { + "artist": "Sam Smith", + "position": 8, + "title": "I'm Not The Only One" + }, + { + "artist": "Tove Lo", + "position": 9, + "title": "Habits (Stay High)" + }, + { + "artist": "Hozier", + "position": 10, + "title": "Take Me To Church" + }, + { + "artist": "Selena Gomez", + "position": 11, + "title": "The Heart Wants What It Wants" + }, + { + "artist": "Taylor Swift", + "position": 12, + "title": "Shake It Off" + }, + { + "artist": "Iggy Azalea Featuring M0", + "position": 13, + "title": "Beg For It" + }, + { + "artist": "Mark Ronson Featuring Bruno Mars", + "position": 14, + "title": "Uptown Funk!" + }, + { + "artist": "Meghan Trainor", + "position": 15, + "title": "Lips Are Movin" + }, + { + "artist": "Alesso Featuring Tove Lo", + "position": 16, + "title": "Heroes (We Could Be)" + }, + { + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "position": 17, + "title": "Bang Bang" + }, + { + "artist": "Fall Out Boy", + "position": 18, + "title": "Centuries" + }, + { + "artist": "Jeremih Featuring YG", + "position": 19, + "title": "Don't Tell 'Em" + }, + { + "artist": "Jason Derulo", + "position": 20, + "title": "Trumpets" + } + ], + "title": "2014 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Tim McGraw", + "position": 1, + "title": "Shotgun Rider" + }, + { + "artist": "Carrie Underwood", + "position": 2, + "title": "Something In The Water" + }, + { + "artist": "Eric Church", + "position": 3, + "title": "Talladega" + }, + { + "artist": "Brad Paisley", + "position": 4, + "title": "Perfect Storm" + }, + { + "artist": "Blake Shelton Featuring Ashley Monroe", + "position": 5, + "title": "Lonely Tonight" + }, + { + "artist": "Florida Georgia Line", + "position": 6, + "title": "Sun Daze" + }, + { + "artist": "Craig Wayne Boyd", + "position": 7, + "title": "The Old Rugged Cross" + }, + { + "artist": "Luke Bryan", + "position": 8, + "title": "I See You" + }, + { + "artist": "Maddie & Tae", + "position": 9, + "title": "Girl In A Country Song" + }, + { + "artist": "Sam Hunt", + "position": 10, + "title": "Leave The Night On" + }, + { + "artist": "Keith Urban", + "position": 11, + "title": "Somewhere In My Car" + }, + { + "artist": "Kenny Chesney", + "position": 12, + "title": "Til It's Gone" + }, + { + "artist": "Parmalee", + "position": 13, + "title": "Close Your Eyes" + }, + { + "artist": "RaeLynn", + "position": 14, + "title": "God Made Girls" + }, + { + "artist": "Lee Brice", + "position": 15, + "title": "Drinking Class" + }, + { + "artist": "Thomas Rhett", + "position": 16, + "title": "Make Me Wanna" + }, + { + "artist": "Brett Eldredge", + "position": 17, + "title": "Mean To Me" + }, + { + "artist": "Jason Aldean", + "position": 18, + "title": "Just Gettin' Started" + }, + { + "artist": "Randy Houser", + "position": 19, + "title": "Like A Cowboy" + }, + { + "artist": "Jason Aldean", + "position": 20, + "title": "Burnin' It Down" + }, + { + "artist": "Florida Georgia Line", + "position": 21, + "title": "Dirt" + }, + { + "artist": "Darius Rucker", + "position": 22, + "title": "Homegrown Honey" + }, + { + "artist": "Blake Shelton", + "position": 23, + "title": "Neon Light" + }, + { + "artist": "Chris Young", + "position": 24, + "title": "Lonely Eyes" + }, + { + "artist": "Chase Bryant", + "position": 25, + "title": "Take It On Back" + } + ], + "title": "2014 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Taylor Swift", + "position": 1, + "title": "Blank Space" + }, + { + "artist": "Hozier", + "position": 2, + "title": "Take Me To Church" + }, + { + "artist": "Mark Ronson Featuring Bruno Mars", + "position": 3, + "title": "Uptown Funk!" + }, + { + "artist": "Meghan Trainor", + "position": 4, + "title": "Lips Are Movin" + }, + { + "artist": "Sam Smith", + "position": 5, + "title": "I'm Not The Only One" + }, + { + "artist": "Ed Sheeran", + "position": 6, + "title": "Thinking Out Loud" + }, + { + "artist": "Meghan Trainor", + "position": 7, + "title": "All About That Bass" + }, + { + "artist": "Maroon 5", + "position": 8, + "title": "Animals" + }, + { + "artist": "Ariana Grande & The Weeknd", + "position": 9, + "title": "Love Me Harder" + }, + { + "artist": "Taylor Swift", + "position": 10, + "title": "Shake It Off" + }, + { + "artist": "Nick Jonas", + "position": 11, + "title": "Jealous" + }, + { + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "position": 12, + "title": "Only" + }, + { + "artist": "Selena Gomez", + "position": 13, + "title": "The Heart Wants What It Wants" + }, + { + "artist": "Big Sean Featuring E-40", + "position": 14, + "title": "I Don't F**k With You" + }, + { + "artist": "Tove Lo", + "position": 15, + "title": "Habits (Stay High)" + }, + { + "artist": "I LOVE MAKONNEN Featuring Drake", + "position": 16, + "title": "Tuesday" + }, + { + "artist": "Ed Sheeran", + "position": 17, + "title": "Don't" + }, + { + "artist": "Mr. Probz", + "position": 18, + "title": "Waves" + }, + { + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "position": 19, + "title": "Bang Bang" + }, + { + "artist": "Beyonce", + "position": 20, + "title": "7/11" + }, + { + "artist": "Calvin Harris Featuring John Newman", + "position": 21, + "title": "Blame" + }, + { + "artist": "Rae Sremmurd", + "position": 22, + "title": "No Type" + }, + { + "artist": "James Newton Howard Featuring Jennifer Lawrence", + "position": 23, + "title": "The Hanging Tree" + }, + { + "artist": "Bobby Shmurda", + "position": 24, + "title": "Hot Boy" + }, + { + "artist": "Sam Smith", + "position": 25, + "title": "Stay With Me" + }, + { + "artist": "Fall Out Boy", + "position": 26, + "title": "Centuries" + }, + { + "artist": "O.T. Genasis", + "position": 27, + "title": "CoCo" + }, + { + "artist": "Iggy Azalea Featuring M0", + "position": 28, + "title": "Beg For It" + }, + { + "artist": "Jeremih Featuring YG", + "position": 29, + "title": "Don't Tell 'Em" + }, + { + "artist": "Iggy Azalea Featuring Rita Ora", + "position": 30, + "title": "Black Widow" + }, + { + "artist": "Jason Derulo", + "position": 31, + "title": "Trumpets" + }, + { + "artist": "Vance Joy", + "position": 32, + "title": "Riptide" + }, + { + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "position": 33, + "title": "Lifestyle" + }, + { + "artist": "Sia", + "position": 34, + "title": "Chandelier" + }, + { + "artist": "Alesso Featuring Tove Lo", + "position": 35, + "title": "Heroes (We Could Be)" + }, + { + "artist": "Clean Bandit Featuring Jess Glynne", + "position": 36, + "title": "Rather Be" + }, + { + "artist": "Usher Featuring Juicy J", + "position": 37, + "title": "I Don't Mind" + }, + { + "artist": "Carrie Underwood", + "position": 38, + "title": "Something In The Water" + }, + { + "artist": "Tim McGraw", + "position": 39, + "title": "Shotgun Rider" + }, + { + "artist": "Mariah Carey", + "position": 40, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Fergie", + "position": 41, + "title": "L.A.LOVE (la la)" + }, + { + "artist": "Milky Chance", + "position": 42, + "title": "Stolen Dance" + }, + { + "artist": "MAGIC!", + "position": 43, + "title": "Rude" + }, + { + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "position": 44, + "title": "Hold You Down" + }, + { + "artist": "DeJ Loaf", + "position": 45, + "title": "Try Me" + }, + { + "artist": "Echosmith", + "position": 46, + "title": "Cool Kids" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 47, + "title": "Touchin, Lovin" + }, + { + "artist": "Pentatonix", + "position": 48, + "title": "Mary, Did You Know?" + }, + { + "artist": "Chris Brown Featuring Usher & Rick Ross", + "position": 49, + "title": "New Flame" + }, + { + "artist": "T.I. Featuring Young Thug", + "position": 50, + "title": "About The Money" + }, + { + "artist": "Eric Church", + "position": 51, + "title": "Talladega" + }, + { + "artist": "Brad Paisley", + "position": 52, + "title": "Perfect Storm" + }, + { + "artist": "One Direction", + "position": 53, + "title": "Night Changes" + }, + { + "artist": "Blake Shelton Featuring Ashley Monroe", + "position": 54, + "title": "Lonely Tonight" + }, + { + "artist": "Nicki Minaj", + "position": 55, + "title": "Anaconda" + }, + { + "artist": "Ed Sheeran", + "position": 56, + "title": "Make It Rain" + }, + { + "artist": "Ella Henderson", + "position": 57, + "title": "Ghost" + }, + { + "artist": "Florida Georgia Line", + "position": 58, + "title": "Sun Daze" + }, + { + "artist": "Craig Wayne Boyd", + "position": 59, + "title": "The Old Rugged Cross" + }, + { + "artist": "David Guetta Featuring Sam Martin", + "position": 60, + "title": "Dangerous" + }, + { + "artist": "Luke Bryan", + "position": 61, + "title": "I See You" + }, + { + "artist": "Maddie & Tae", + "position": 62, + "title": "Girl In A Country Song" + }, + { + "artist": "Imagine Dragons", + "position": 63, + "title": "I Bet My Life" + }, + { + "artist": "Ariana Grande", + "position": 64, + "title": "Santa Tell Me" + }, + { + "artist": "Keith Urban", + "position": 65, + "title": "Somewhere In My Car" + }, + { + "artist": "Rae Sremmurd", + "position": 66, + "title": "No Flex Zone" + }, + { + "artist": "OneRepublic", + "position": 67, + "title": "I Lived" + }, + { + "artist": "Kenny Chesney", + "position": 68, + "title": "Til It's Gone" + }, + { + "artist": "Parmalee", + "position": 69, + "title": "Close Your Eyes" + }, + { + "artist": "One Direction", + "position": 70, + "title": "Steal My Girl" + }, + { + "artist": "RaeLynn", + "position": 71, + "title": "God Made Girls" + }, + { + "artist": "Lee Brice", + "position": 72, + "title": "Drinking Class" + }, + { + "artist": "J. Cole", + "position": 73, + "title": "Wet Dreamz" + }, + { + "artist": "The Weeknd", + "position": 74, + "title": "Often" + }, + { + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "position": 75, + "title": "***Flawless" + }, + { + "artist": "Taylor Swift", + "position": 76, + "title": "Style" + }, + { + "artist": "Colbie Caillat", + "position": 77, + "title": "Try" + }, + { + "artist": "August Alsina", + "position": 78, + "title": "No Love" + }, + { + "artist": "Lillywood & Robin Schulz", + "position": 79, + "title": "Prayer In C" + }, + { + "artist": "Thomas Rhett", + "position": 80, + "title": "Make Me Wanna" + }, + { + "artist": "Matt McAndrew", + "position": 81, + "title": "Make It Rain" + }, + { + "artist": "Brett Eldredge", + "position": 82, + "title": "Mean To Me" + }, + { + "artist": "WALK THE MOON", + "position": 83, + "title": "Shut Up And Dance" + }, + { + "artist": "Jason Aldean", + "position": 84, + "title": "Just Gettin' Started" + }, + { + "artist": "Ne-Yo Featuring Juicy J", + "position": 85, + "title": "She Knows" + }, + { + "artist": "Lorde", + "position": 86, + "title": "Yellow Flicker Beat" + }, + { + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "position": 87, + "title": "G.D.F.R." + }, + { + "artist": "Pitbull Featuring John Ryan", + "position": 88, + "title": "Fireball" + }, + { + "artist": "Nico & Vinz", + "position": 89, + "title": "In Your Arms" + }, + { + "artist": "Sam Smith", + "position": 90, + "title": "Have Yourself A Merry Little Christmas" + }, + { + "artist": "Randy Houser", + "position": 91, + "title": "Like A Cowboy" + }, + { + "artist": "Kid Ink Featuring Usher & Tinashe", + "position": 92, + "title": "Body Language" + }, + { + "artist": "The White Buffalo & The Forest Rangers", + "position": 93, + "title": "Come Join The Murder" + }, + { + "artist": "Fifth Harmony", + "position": 94, + "title": "Sledgehammer" + }, + { + "artist": "J. Cole", + "position": 95, + "title": "No Role Modelz" + }, + { + "artist": "Jessie J Featuring 2 Chainz", + "position": 96, + "title": "Burnin' Up" + }, + { + "artist": "Darius Rucker", + "position": 97, + "title": "Homegrown Honey" + }, + { + "artist": "Chris Jamison", + "position": 98, + "title": "When I Was Your Man" + }, + { + "artist": "Blake Shelton", + "position": 99, + "title": "Neon Light" + }, + { + "artist": "Charli XCX", + "position": 100, + "title": "Break The Rules" + } + ], + "title": "2014 - Hot 100" + }, + { + "songs": [ + { + "artist": "Eminem Featuring Rihanna", + "position": 1, + "title": "The Monster" + }, + { + "artist": "Drake Featuring Majid Jordan", + "position": 2, + "title": "Hold On, We're Going Home" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "position": 3, + "title": "White Walls" + }, + { + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "position": 4, + "title": "23" + }, + { + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "position": 5, + "title": "My Hitta" + }, + { + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "position": 6, + "title": "Blurred Lines" + }, + { + "artist": "Jay Z Featuring Justin Timberlake", + "position": 7, + "title": "Holy Grail" + }, + { + "artist": "Chris Brown Featuring Nicki Minaj", + "position": 8, + "title": "Love More" + }, + { + "artist": "Sevyn Streeter Featuring Chris Brown", + "position": 9, + "title": "It Won't Stop" + }, + { + "artist": "Eminem", + "position": 10, + "title": "Rap God" + }, + { + "artist": "Kid Ink Featuring Chris Brown", + "position": 11, + "title": "Show Me" + }, + { + "artist": "Drake Featuring 2 Chainz & Big Sean", + "position": 12, + "title": "All Me" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 13, + "title": "Confident" + }, + { + "artist": "Sage The Gemini Featuring IamSu!", + "position": 14, + "title": "Gas Pedal" + }, + { + "artist": "John Legend", + "position": 15, + "title": "All Of Me" + }, + { + "artist": "Jay Z", + "position": 16, + "title": "Tom Ford" + }, + { + "artist": "Justin Timberlake", + "position": 17, + "title": "TKO" + }, + { + "artist": "August Alsina Featuring Trinidad James", + "position": 18, + "title": "I Luv This Sh*t" + }, + { + "artist": "B.o.B Featuring 2 Chainz", + "position": 19, + "title": "HeadBand" + }, + { + "artist": "Drake", + "position": 20, + "title": "The Language" + }, + { + "artist": "Kanye West", + "position": 21, + "title": "Bound 2" + }, + { + "artist": "Sage The Gemini", + "position": 22, + "title": "Red Nose" + }, + { + "artist": "Big Sean Featuring Lil Wayne & Jhene Aiko", + "position": 23, + "title": "Beware" + }, + { + "artist": "Eminem", + "position": 24, + "title": "Berzerk" + }, + { + "artist": "Future", + "position": 25, + "title": "Honest" + } + ], + "title": "2013 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Lorde", + "position": 1, + "title": "Royals" + }, + { + "artist": "Imagine Dragons", + "position": 2, + "title": "Demons" + }, + { + "artist": "Passenger", + "position": 3, + "title": "Let Her Go" + }, + { + "artist": "The Neighbourhood", + "position": 4, + "title": "Sweater Weather" + }, + { + "artist": "Lorde", + "position": 5, + "title": "Team" + }, + { + "artist": "Bastille", + "position": 6, + "title": "Pompeii" + }, + { + "artist": "Imagine Dragons", + "position": 7, + "title": "Radioactive" + }, + { + "artist": "American Authors", + "position": 8, + "title": "Best Day Of My Life" + }, + { + "artist": "AWOLNATION", + "position": 9, + "title": "Sail" + }, + { + "artist": "Capital Cities", + "position": 10, + "title": "Safe And Sound" + }, + { + "artist": "Fall Out Boy", + "position": 11, + "title": "Alone Together" + }, + { + "artist": "Arctic Monkeys", + "position": 12, + "title": "Do I Wanna Know?" + }, + { + "artist": "The Fray", + "position": 13, + "title": "Love Don't Die" + }, + { + "artist": "Fitz And The Tantrums", + "position": 14, + "title": "Out Of My League" + }, + { + "artist": "Lorde", + "position": 15, + "title": "Tennis Court" + }, + { + "artist": "Cage The Elephant", + "position": 16, + "title": "Come A Little Closer" + }, + { + "artist": "Will Champlin", + "position": 17, + "title": "Carry On" + }, + { + "artist": "Ed Sheeran", + "position": 18, + "title": "I See Fire" + }, + { + "artist": "Goo Goo Dolls", + "position": 19, + "title": "Come To Me" + }, + { + "artist": "Zach Sobiech", + "position": 20, + "title": "Clouds" + }, + { + "artist": "John Mayer Featuring Katy Perry", + "position": 21, + "title": "Who You Love" + }, + { + "artist": "Pearl Jam", + "position": 22, + "title": "Sirens" + }, + { + "artist": "James Wolpert", + "position": 23, + "title": "With Or Without You" + }, + { + "artist": "Panic! At The Disco Featuring Lolo", + "position": 24, + "title": "Miss Jackson" + }, + { + "artist": "The Neighbourhood", + "position": 25, + "title": "Afraid" + } + ], + "title": "2013 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Eminem Featuring Rihanna", + "position": 1, + "title": "The Monster" + }, + { + "artist": "OneRepublic", + "position": 2, + "title": "Counting Stars" + }, + { + "artist": "Imagine Dragons", + "position": 3, + "title": "Demons" + }, + { + "artist": "Pitbull Featuring Ke$ha", + "position": 4, + "title": "Timber" + }, + { + "artist": "Avicii", + "position": 5, + "title": "Wake Me Up!" + }, + { + "artist": "Miley Cyrus", + "position": 6, + "title": "Wrecking Ball" + }, + { + "artist": "Zedd Featuring Hayley Williams", + "position": 7, + "title": "Stay The Night" + }, + { + "artist": "Lorde", + "position": 8, + "title": "Royals" + }, + { + "artist": "Katy Perry", + "position": 9, + "title": "Unconditionally" + }, + { + "artist": "Lady Gaga Featuring R. Kelly", + "position": 10, + "title": "Do What U Want" + }, + { + "artist": "The Neighbourhood", + "position": 11, + "title": "Sweater Weather" + }, + { + "artist": "Drake Featuring Majid Jordan", + "position": 12, + "title": "Hold On, We're Going Home" + }, + { + "artist": "Passenger", + "position": 13, + "title": "Let Her Go" + }, + { + "artist": "Ellie Goulding", + "position": 14, + "title": "Burn" + }, + { + "artist": "One Direction", + "position": 15, + "title": "Story Of My Life" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "position": 16, + "title": "White Walls" + }, + { + "artist": "Lady Gaga", + "position": 17, + "title": "Applause" + }, + { + "artist": "Jason Derulo", + "position": 18, + "title": "Marry Me" + }, + { + "artist": "Katy Perry", + "position": 19, + "title": "Roar" + }, + { + "artist": "Selena Gomez", + "position": 20, + "title": "Slow Down" + } + ], + "title": "2013 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Florida Georgia Line", + "position": 1, + "title": "Stay" + }, + { + "artist": "Parmalee", + "position": 2, + "title": "Carolina" + }, + { + "artist": "Luke Bryan", + "position": 3, + "title": "Drink A Beer" + }, + { + "artist": "Eli Young Band", + "position": 4, + "title": "Drunk Last Night" + }, + { + "artist": "David Nail", + "position": 5, + "title": "Whatever She's Got" + }, + { + "artist": "Cassadee Pope", + "position": 6, + "title": "Wasting All These Tears" + }, + { + "artist": "Zac Brown Band", + "position": 7, + "title": "Sweet Annie" + }, + { + "artist": "Cole Swindell", + "position": 8, + "title": "Chillin' It" + }, + { + "artist": "Luke Bryan", + "position": 9, + "title": "That's My Kind Of Night" + }, + { + "artist": "Keith Urban And Miranda Lambert", + "position": 10, + "title": "We Were Us" + }, + { + "artist": "The Band Perry", + "position": 11, + "title": "Don't Let Me Be Lonely" + }, + { + "artist": "Jason Aldean", + "position": 12, + "title": "When She Says Baby" + }, + { + "artist": "Eric Paslay", + "position": 13, + "title": "Friday Night" + }, + { + "artist": "Darius Rucker", + "position": 14, + "title": "Radio" + }, + { + "artist": "Jon Pardi", + "position": 15, + "title": "Up All Night" + }, + { + "artist": "Lady Antebellum", + "position": 16, + "title": "Compass" + }, + { + "artist": "Blake Shelton", + "position": 17, + "title": "Mine Would Be You" + }, + { + "artist": "Hunter Hayes Featuring Jason Mraz", + "position": 18, + "title": "Everybody's Got Somebody But Me" + }, + { + "artist": "Scotty McCreery", + "position": 19, + "title": "See You Tonight" + }, + { + "artist": "Frankie Ballard", + "position": 20, + "title": "Helluva Life" + }, + { + "artist": "Danielle Bradbery", + "position": 21, + "title": "The Heart Of Dixie" + }, + { + "artist": "Tim McGraw", + "position": 22, + "title": "Southern Girl" + }, + { + "artist": "Eric Church", + "position": 23, + "title": "The Outsiders" + }, + { + "artist": "Dierks Bentley", + "position": 24, + "title": "I Hold On" + }, + { + "artist": "Dan + Shay", + "position": 25, + "title": "19 You + Me" + } + ], + "title": "2013 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Eminem Featuring Rihanna", + "position": 1, + "title": "The Monster" + }, + { + "artist": "Pitbull Featuring Ke$ha", + "position": 2, + "title": "Timber" + }, + { + "artist": "OneRepublic", + "position": 3, + "title": "Counting Stars" + }, + { + "artist": "A Great Big World & Christina Aguilera", + "position": 4, + "title": "Say Something" + }, + { + "artist": "Lorde", + "position": 5, + "title": "Royals" + }, + { + "artist": "Imagine Dragons", + "position": 6, + "title": "Demons" + }, + { + "artist": "Avicii", + "position": 7, + "title": "Wake Me Up!" + }, + { + "artist": "Miley Cyrus", + "position": 8, + "title": "Wrecking Ball" + }, + { + "artist": "Passenger", + "position": 9, + "title": "Let Her Go" + }, + { + "artist": "One Direction", + "position": 10, + "title": "Story Of My Life" + }, + { + "artist": "Drake Featuring Majid Jordan", + "position": 11, + "title": "Hold On, We're Going Home" + }, + { + "artist": "Katy Perry", + "position": 12, + "title": "Roar" + }, + { + "artist": "Ellie Goulding", + "position": 13, + "title": "Burn" + }, + { + "artist": "The Neighbourhood", + "position": 14, + "title": "Sweater Weather" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "position": 15, + "title": "White Walls" + }, + { + "artist": "Lady Gaga Featuring R. Kelly", + "position": 16, + "title": "Do What U Want" + }, + { + "artist": "Katy Perry", + "position": 17, + "title": "Unconditionally" + }, + { + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "position": 18, + "title": "23" + }, + { + "artist": "Zedd Featuring Hayley Williams", + "position": 19, + "title": "Stay The Night" + }, + { + "artist": "Lady Gaga", + "position": 20, + "title": "Applause" + }, + { + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "position": 21, + "title": "My Hitta" + }, + { + "artist": "Katy Perry Featuring Juicy J", + "position": 22, + "title": "Dark Horse" + }, + { + "artist": "Lorde", + "position": 23, + "title": "Team" + }, + { + "artist": "Bastille", + "position": 24, + "title": "Pompeii" + }, + { + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "position": 25, + "title": "Blurred Lines" + }, + { + "artist": "Jason Derulo", + "position": 26, + "title": "Marry Me" + }, + { + "artist": "Mariah Carey", + "position": 27, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Jay Z Featuring Justin Timberlake", + "position": 28, + "title": "Holy Grail" + }, + { + "artist": "Florida Georgia Line", + "position": 29, + "title": "Stay" + }, + { + "artist": "Imagine Dragons", + "position": 30, + "title": "Radioactive" + }, + { + "artist": "Chris Brown Featuring Nicki Minaj", + "position": 31, + "title": "Love More" + }, + { + "artist": "Sevyn Streeter Featuring Chris Brown", + "position": 32, + "title": "It Won't Stop" + }, + { + "artist": "Sara Bareilles", + "position": 33, + "title": "Brave" + }, + { + "artist": "Eminem", + "position": 34, + "title": "Rap God" + }, + { + "artist": "American Authors", + "position": 35, + "title": "Best Day Of My Life" + }, + { + "artist": "Parmalee", + "position": 36, + "title": "Carolina" + }, + { + "artist": "Luke Bryan", + "position": 37, + "title": "Drink A Beer" + }, + { + "artist": "AWOLNATION", + "position": 38, + "title": "Sail" + }, + { + "artist": "Kid Ink Featuring Chris Brown", + "position": 39, + "title": "Show Me" + }, + { + "artist": "Drake Featuring 2 Chainz & Big Sean", + "position": 40, + "title": "All Me" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 41, + "title": "Confident" + }, + { + "artist": "Eli Young Band", + "position": 42, + "title": "Drunk Last Night" + }, + { + "artist": "David Nail", + "position": 43, + "title": "Whatever She's Got" + }, + { + "artist": "Sage The Gemini Featuring IamSu!", + "position": 44, + "title": "Gas Pedal" + }, + { + "artist": "Capital Cities", + "position": 45, + "title": "Safe And Sound" + }, + { + "artist": "Cassadee Pope", + "position": 46, + "title": "Wasting All These Tears" + }, + { + "artist": "Zac Brown Band", + "position": 47, + "title": "Sweet Annie" + }, + { + "artist": "Cole Swindell", + "position": 48, + "title": "Chillin' It" + }, + { + "artist": "Lana Del Rey & Cedric Gervais", + "position": 49, + "title": "Summertime Sadness" + }, + { + "artist": "Selena Gomez", + "position": 50, + "title": "Slow Down" + }, + { + "artist": "Pentatonix", + "position": 51, + "title": "Little Drummer Boy" + }, + { + "artist": "John Legend", + "position": 52, + "title": "All Of Me" + }, + { + "artist": "Luke Bryan", + "position": 53, + "title": "That's My Kind Of Night" + }, + { + "artist": "Idina Menzel", + "position": 54, + "title": "Let It Go" + }, + { + "artist": "Rebecca Black & Dave Days", + "position": 55, + "title": "Saturday" + }, + { + "artist": "Martin Garrix", + "position": 56, + "title": "Animals" + }, + { + "artist": "Keith Urban And Miranda Lambert", + "position": 57, + "title": "We Were Us" + }, + { + "artist": "Demi Lovato", + "position": 58, + "title": "Let It Go" + }, + { + "artist": "The Band Perry", + "position": 59, + "title": "Don't Let Me Be Lonely" + }, + { + "artist": "Jason Aldean", + "position": 60, + "title": "When She Says Baby" + }, + { + "artist": "Justin Timberlake", + "position": 61, + "title": "TKO" + }, + { + "artist": "Eric Paslay", + "position": 62, + "title": "Friday Night" + }, + { + "artist": "August Alsina Featuring Trinidad James", + "position": 63, + "title": "I Luv This Sh*t" + }, + { + "artist": "Tessanne Chin", + "position": 64, + "title": "Bridge Over Troubled Water" + }, + { + "artist": "Darius Rucker", + "position": 65, + "title": "Radio" + }, + { + "artist": "Avicii", + "position": 66, + "title": "Hey Brother" + }, + { + "artist": "Joe Nichols", + "position": 67, + "title": "Sunny And 75" + }, + { + "artist": "B.o.B Featuring 2 Chainz", + "position": 68, + "title": "HeadBand" + }, + { + "artist": "Zendaya", + "position": 69, + "title": "Replay" + }, + { + "artist": "Drake", + "position": 70, + "title": "The Language" + }, + { + "artist": "Jon Pardi", + "position": 71, + "title": "Up All Night" + }, + { + "artist": "John Newman", + "position": 72, + "title": "Love Me Again" + }, + { + "artist": "Lady Antebellum", + "position": 73, + "title": "Compass" + }, + { + "artist": "Blake Shelton", + "position": 74, + "title": "Mine Would Be You" + }, + { + "artist": "Lea Michele", + "position": 75, + "title": "Cannonball" + }, + { + "artist": "Kanye West", + "position": 76, + "title": "Bound 2" + }, + { + "artist": "Britney Spears", + "position": 77, + "title": "Perfume" + }, + { + "artist": "Eminem", + "position": 78, + "title": "Berzerk" + }, + { + "artist": "Hunter Hayes Featuring Jason Mraz", + "position": 79, + "title": "Everybody's Got Somebody But Me" + }, + { + "artist": "Kelly Clarkson", + "position": 80, + "title": "Underneath The Tree" + }, + { + "artist": "Future", + "position": 81, + "title": "Honest" + }, + { + "artist": "T-Pain Featuring B.o.B", + "position": 82, + "title": "Up Down (Do This All Day)" + }, + { + "artist": "Fall Out Boy", + "position": 83, + "title": "Alone Together" + }, + { + "artist": "Justin Bieber", + "position": 84, + "title": "All That Matters" + }, + { + "artist": "Aloe Blacc", + "position": 85, + "title": "The Man" + }, + { + "artist": "Scotty McCreery", + "position": 86, + "title": "See You Tonight" + }, + { + "artist": "Jacquie Lee", + "position": 87, + "title": "Angel" + }, + { + "artist": "Frankie Ballard", + "position": 88, + "title": "Helluva Life" + }, + { + "artist": "R. Kelly Featuring 2 Chainz", + "position": 89, + "title": "My Story" + }, + { + "artist": "Juicy J Featuring Wale & Trey Songz", + "position": 90, + "title": "Bounce It" + }, + { + "artist": "Arctic Monkeys", + "position": 91, + "title": "Do I Wanna Know?" + }, + { + "artist": "Ylvis", + "position": 92, + "title": "The Fox" + }, + { + "artist": "Rihanna", + "position": 93, + "title": "What Now" + }, + { + "artist": "One Direction", + "position": 94, + "title": "Best Song Ever" + }, + { + "artist": "Lupe Fiasco Featuring Ed Sheeran", + "position": 95, + "title": "Old School Love" + }, + { + "artist": "Eminem", + "position": 96, + "title": "Survival" + }, + { + "artist": "Danielle Bradbery", + "position": 97, + "title": "The Heart Of Dixie" + }, + { + "artist": "Drake Featuring Jay Z", + "position": 98, + "title": "Pound Cake / Paris Morton Music 2" + }, + { + "artist": "Childish Gambino", + "position": 99, + "title": "V. 3005" + }, + { + "artist": "Ariana Grande Featuring Big Sean", + "position": 100, + "title": "Right There" + } + ], + "title": "2013 - Hot 100" + }, + { + "songs": [ + { + "artist": "Rihanna", + "position": 1, + "title": "Diamonds" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "position": 2, + "title": "Thrift Shop" + }, + { + "artist": "Alicia Keys Featuring Nicki Minaj", + "position": 3, + "title": "Girl On Fire" + }, + { + "artist": "Kendrick Lamar", + "position": 4, + "title": "Swimming Pools (Drank)" + }, + { + "artist": "Kanye West, Jay-Z, Big Sean", + "position": 5, + "title": "Clique" + }, + { + "artist": "Miguel", + "position": 6, + "title": "Adorn" + }, + { + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "position": 7, + "title": "F**kin Problems" + }, + { + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "position": 8, + "title": "Bandz A Make Her Dance" + }, + { + "artist": "Frank Ocean", + "position": 9, + "title": "Thinkin Bout You" + }, + { + "artist": "Lil Wayne Featuring Detail", + "position": 10, + "title": "No Worries" + }, + { + "artist": "2 Chainz", + "position": 11, + "title": "I'm Different" + }, + { + "artist": "French Montana Featuring Rick Ross, Drake, Lil Wayne", + "position": 12, + "title": "Pop That" + }, + { + "artist": "The Weeknd", + "position": 13, + "title": "Wicked Games" + }, + { + "artist": "2 Chainz Featuring Kanye West", + "position": 14, + "title": "Birthday Song" + }, + { + "artist": "Wiz Khalifa Featuring The Weeknd", + "position": 15, + "title": "Remember You" + }, + { + "artist": "T.I. Featuring Lil Wayne", + "position": 16, + "title": "Ball" + }, + { + "artist": "Kanye West, Big Sean, Pusha T, 2 Chainz", + "position": 17, + "title": "Mercy" + }, + { + "artist": "2 Chainz Featuring Drake", + "position": 18, + "title": "No Lie" + }, + { + "artist": "Chris Brown", + "position": 19, + "title": "Don't Judge Me" + }, + { + "artist": "Rick Ross Featuring Wale & Drake", + "position": 20, + "title": "Diced Pineapples" + }, + { + "artist": "Kendrick Lamar Featuring Drake", + "position": 21, + "title": "Poetic Justice" + }, + { + "artist": "Chief Keef", + "position": 22, + "title": "Love Sosa" + }, + { + "artist": "Future", + "position": 23, + "title": "Turn On The Lights" + }, + { + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "position": 24, + "title": "Celebration" + }, + { + "artist": "Big Sean", + "position": 25, + "title": "Guap" + } + ], + "title": "2012 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "The Lumineers", + "position": 1, + "title": "Ho Hey" + }, + { + "artist": "Phillip Phillips", + "position": 2, + "title": "Home" + }, + { + "artist": "fun.", + "position": 3, + "title": "Some Nights" + }, + { + "artist": "Ed Sheeran", + "position": 4, + "title": "The A Team" + }, + { + "artist": "Imagine Dragons", + "position": 5, + "title": "It's Time" + }, + { + "artist": "Alex Clare", + "position": 6, + "title": "Too Close" + }, + { + "artist": "Of Monsters And Men", + "position": 7, + "title": "Little Talks" + }, + { + "artist": "Mumford & Sons", + "position": 8, + "title": "I Will Wait" + }, + { + "artist": "Imagine Dragons", + "position": 9, + "title": "Radioactive" + }, + { + "artist": "Muse", + "position": 10, + "title": "Madness" + }, + { + "artist": "Terry McDermott", + "position": 11, + "title": "Let It Be" + }, + { + "artist": "The Lumineers", + "position": 12, + "title": "Stubborn Love" + }, + { + "artist": "Passion Pit", + "position": 13, + "title": "Take A Walk" + }, + { + "artist": "fun.", + "position": 14, + "title": "Carry On" + }, + { + "artist": "Of Monsters And Men", + "position": 15, + "title": "Mountain Sound" + }, + { + "artist": "The Black Keys", + "position": 16, + "title": "Little Black Submarines" + }, + { + "artist": "Imagine Dragons", + "position": 17, + "title": "Demons" + }, + { + "artist": "Mumford & Sons", + "position": 18, + "title": "Babel" + }, + { + "artist": "Atlas Genius", + "position": 19, + "title": "Trojans" + }, + { + "artist": "The Lumineers", + "position": 20, + "title": "Flowers In Your Hair" + }, + { + "artist": "Three Days Grace", + "position": 21, + "title": "Chalk Outline" + }, + { + "artist": "Imagine Dragons", + "position": 22, + "title": "On Top Of The World" + }, + { + "artist": "Phillip Phillips", + "position": 23, + "title": "Gone, Gone, Gone" + }, + { + "artist": "The Lumineers", + "position": 24, + "title": "Slow It Down" + }, + { + "artist": "Ed Sheeran", + "position": 25, + "title": "Give Me Love" + } + ], + "title": "2012 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Bruno Mars", + "position": 1, + "title": "Locked Out Of Heaven" + }, + { + "artist": "Ke$ha", + "position": 2, + "title": "Die Young" + }, + { + "artist": "Rihanna", + "position": 3, + "title": "Diamonds" + }, + { + "artist": "Ne-Yo", + "position": 4, + "title": "Let Me Love You (Until You Learn To Love Yourself)" + }, + { + "artist": "Maroon 5", + "position": 5, + "title": "One More Night" + }, + { + "artist": "The Lumineers", + "position": 6, + "title": "Ho Hey" + }, + { + "artist": "Flo Rida", + "position": 7, + "title": "I Cry" + }, + { + "artist": "Phillip Phillips", + "position": 8, + "title": "Home" + }, + { + "artist": "fun.", + "position": 9, + "title": "Some Nights" + }, + { + "artist": "Justin Bieber Featuring Nicki Minaj", + "position": 10, + "title": "Beauty And A Beat" + }, + { + "artist": "P!nk", + "position": 11, + "title": "Try" + }, + { + "artist": "Ed Sheeran", + "position": 12, + "title": "The A Team" + }, + { + "artist": "Taylor Swift", + "position": 13, + "title": "I Knew You Were Trouble." + }, + { + "artist": "Swedish House Mafia Featuring John Martin", + "position": 14, + "title": "Don't You Worry Child" + }, + { + "artist": "Nicki Minaj", + "position": 15, + "title": "Va Va Voom" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "We Are Never Ever Getting Back Together" + }, + { + "artist": "Pitbull Featuring TJR", + "position": 17, + "title": "Don't Stop The Party" + }, + { + "artist": "Kelly Clarkson", + "position": 18, + "title": "Catch My Breath" + }, + { + "artist": "The Script Featuring will.i.am", + "position": 19, + "title": "Hall Of Fame" + }, + { + "artist": "One Direction", + "position": 20, + "title": "Little Things" + } + ], + "title": "2012 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Florida Georgia Line", + "position": 1, + "title": "Cruise" + }, + { + "artist": "Taylor Swift", + "position": 2, + "title": "We Are Never Ever Getting Back Together" + }, + { + "artist": "Hunter Hayes", + "position": 3, + "title": "Wanted" + }, + { + "artist": "Cassadee Pope", + "position": 4, + "title": "Stupid Boy" + }, + { + "artist": "The Band Perry", + "position": 5, + "title": "Better Dig Two" + }, + { + "artist": "Zac Brown Band", + "position": 6, + "title": "Goodbye In Her Eyes" + }, + { + "artist": "Kip Moore", + "position": 7, + "title": "Beer Money" + }, + { + "artist": "Justin Moore", + "position": 8, + "title": "Til My Last Day" + }, + { + "artist": "Gary Allan", + "position": 9, + "title": "Every Storm (Runs Out Of Rain)" + }, + { + "artist": "Eric Church", + "position": 10, + "title": "Creepin'" + }, + { + "artist": "Randy Houser", + "position": 11, + "title": "How Country Feels" + }, + { + "artist": "Carrie Underwood", + "position": 12, + "title": "Blown Away" + }, + { + "artist": "Luke Bryan", + "position": 13, + "title": "Kiss Tomorrow Goodbye" + }, + { + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "position": 14, + "title": "The Only Way I Know" + }, + { + "artist": "Little Big Town", + "position": 15, + "title": "Tornado" + }, + { + "artist": "Greg Bates", + "position": 16, + "title": "Did It For The Girl" + }, + { + "artist": "Brad Paisley", + "position": 17, + "title": "Southern Comfort Zone" + }, + { + "artist": "Jake Owen", + "position": 18, + "title": "The One That Got Away" + }, + { + "artist": "Lee Brice", + "position": 19, + "title": "Hard To Love" + }, + { + "artist": "Hunter Hayes", + "position": 20, + "title": "Somebody's Heartbreak" + }, + { + "artist": "Kenny Chesney", + "position": 21, + "title": "El Cerrito Place" + }, + { + "artist": "Taylor Swift", + "position": 22, + "title": "Begin Again" + }, + { + "artist": "Tim McGraw", + "position": 23, + "title": "One Of Those Nights" + }, + { + "artist": "Dierks Bentley", + "position": 24, + "title": "Tip It On Back" + }, + { + "artist": "Kacey Musgraves", + "position": 25, + "title": "Merry Go 'Round" + } + ], + "title": "2012 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Bruno Mars", + "position": 1, + "title": "Locked Out Of Heaven" + }, + { + "artist": "Rihanna", + "position": 2, + "title": "Diamonds" + }, + { + "artist": "The Lumineers", + "position": 3, + "title": "Ho Hey" + }, + { + "artist": "Ke$ha", + "position": 4, + "title": "Die Young" + }, + { + "artist": "Maroon 5", + "position": 5, + "title": "One More Night" + }, + { + "artist": "Flo Rida", + "position": 6, + "title": "I Cry" + }, + { + "artist": "Justin Bieber Featuring Nicki Minaj", + "position": 7, + "title": "Beauty And A Beat" + }, + { + "artist": "Phillip Phillips", + "position": 8, + "title": "Home" + }, + { + "artist": "fun.", + "position": 9, + "title": "Some Nights" + }, + { + "artist": "Taylor Swift", + "position": 10, + "title": "I Knew You Were Trouble." + }, + { + "artist": "Ne-Yo", + "position": 11, + "title": "Let Me Love You (Until You Learn To Love Yourself)" + }, + { + "artist": "Swedish House Mafia Featuring John Martin", + "position": 12, + "title": "Don't You Worry Child" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "position": 13, + "title": "Thrift Shop" + }, + { + "artist": "P!nk", + "position": 14, + "title": "Try" + }, + { + "artist": "will.i.am Featuring Britney Spears", + "position": 15, + "title": "Scream & Shout" + }, + { + "artist": "Alicia Keys Featuring Nicki Minaj", + "position": 16, + "title": "Girl On Fire" + }, + { + "artist": "Ed Sheeran", + "position": 17, + "title": "The A Team" + }, + { + "artist": "PSY", + "position": 18, + "title": "Gangnam Style" + }, + { + "artist": "Imagine Dragons", + "position": 19, + "title": "It's Time" + }, + { + "artist": "Florida Georgia Line", + "position": 20, + "title": "Cruise" + }, + { + "artist": "Kendrick Lamar", + "position": 21, + "title": "Swimming Pools (Drank)" + }, + { + "artist": "Kanye West, Jay-Z, Big Sean", + "position": 22, + "title": "Clique" + }, + { + "artist": "Miguel", + "position": 23, + "title": "Adorn" + }, + { + "artist": "Alex Clare", + "position": 24, + "title": "Too Close" + }, + { + "artist": "Mariah Carey", + "position": 25, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Nicki Minaj", + "position": 26, + "title": "Va Va Voom" + }, + { + "artist": "Taylor Swift", + "position": 27, + "title": "We Are Never Ever Getting Back Together" + }, + { + "artist": "Justin Bieber Featuring Big Sean", + "position": 28, + "title": "As Long As You Love Me" + }, + { + "artist": "Chris Brown", + "position": 29, + "title": "Don't Wake Me Up" + }, + { + "artist": "Pitbull Featuring TJR", + "position": 30, + "title": "Don't Stop The Party" + }, + { + "artist": "Of Monsters And Men", + "position": 31, + "title": "Little Talks" + }, + { + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "position": 32, + "title": "F**kin Problems" + }, + { + "artist": "Calvin Harris Featuring Florence Welch", + "position": 33, + "title": "Sweet Nothing" + }, + { + "artist": "Mumford & Sons", + "position": 34, + "title": "I Will Wait" + }, + { + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "position": 35, + "title": "Bandz A Make Her Dance" + }, + { + "artist": "Frank Ocean", + "position": 36, + "title": "Thinkin Bout You" + }, + { + "artist": "Hunter Hayes", + "position": 37, + "title": "Wanted" + }, + { + "artist": "The Script Featuring will.i.am", + "position": 38, + "title": "Hall Of Fame" + }, + { + "artist": "Lil Wayne Featuring Detail", + "position": 39, + "title": "No Worries" + }, + { + "artist": "Cassadee Pope", + "position": 40, + "title": "Stupid Boy" + }, + { + "artist": "The Band Perry", + "position": 41, + "title": "Better Dig Two" + }, + { + "artist": "2 Chainz", + "position": 42, + "title": "I'm Different" + }, + { + "artist": "Ellie Goulding", + "position": 43, + "title": "Lights" + }, + { + "artist": "P!nk", + "position": 44, + "title": "Blow Me (One Last Kiss)" + }, + { + "artist": "Carly Rae Jepsen", + "position": 45, + "title": "Call Me Maybe" + }, + { + "artist": "One Direction", + "position": 46, + "title": "Little Things" + }, + { + "artist": "Ellie Goulding", + "position": 47, + "title": "Anything Could Happen" + }, + { + "artist": "Gotye Featuring Kimbra", + "position": 48, + "title": "Somebody That I Used To Know" + }, + { + "artist": "Kelly Clarkson", + "position": 49, + "title": "Catch My Breath" + }, + { + "artist": "Zac Brown Band", + "position": 50, + "title": "Goodbye In Her Eyes" + }, + { + "artist": "Kip Moore", + "position": 51, + "title": "Beer Money" + }, + { + "artist": "OneRepublic", + "position": 52, + "title": "Feel Again" + }, + { + "artist": "Justin Moore", + "position": 53, + "title": "Til My Last Day" + }, + { + "artist": "Gary Allan", + "position": 54, + "title": "Every Storm (Runs Out Of Rain)" + }, + { + "artist": "Imagine Dragons", + "position": 55, + "title": "Radioactive" + }, + { + "artist": "Eric Church", + "position": 56, + "title": "Creepin'" + }, + { + "artist": "Randy Houser", + "position": 57, + "title": "How Country Feels" + }, + { + "artist": "Maroon 5", + "position": 58, + "title": "Daylight" + }, + { + "artist": "Luke Bryan", + "position": 59, + "title": "Kiss Tomorrow Goodbye" + }, + { + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "position": 60, + "title": "The Only Way I Know" + }, + { + "artist": "The Weeknd", + "position": 61, + "title": "Wicked Games" + }, + { + "artist": "2 Chainz Featuring Kanye West", + "position": 62, + "title": "Birthday Song" + }, + { + "artist": "Wiz Khalifa Featuring The Weeknd", + "position": 63, + "title": "Remember You" + }, + { + "artist": "T.I. Featuring Lil Wayne", + "position": 64, + "title": "Ball" + }, + { + "artist": "Muse", + "position": 65, + "title": "Madness" + }, + { + "artist": "Little Big Town", + "position": 66, + "title": "Tornado" + }, + { + "artist": "Greg Bates", + "position": 67, + "title": "Did It For The Girl" + }, + { + "artist": "Chris Brown", + "position": 68, + "title": "Don't Judge Me" + }, + { + "artist": "Brad Paisley", + "position": 69, + "title": "Southern Comfort Zone" + }, + { + "artist": "Terry McDermott", + "position": 70, + "title": "Let It Be" + }, + { + "artist": "Jake Owen", + "position": 71, + "title": "The One That Got Away" + }, + { + "artist": "Adele", + "position": 72, + "title": "Skyfall" + }, + { + "artist": "Hunter Hayes", + "position": 73, + "title": "Somebody's Heartbreak" + }, + { + "artist": "Kenny Chesney", + "position": 74, + "title": "El Cerrito Place" + }, + { + "artist": "Taylor Swift", + "position": 75, + "title": "Begin Again" + }, + { + "artist": "Rick Ross Featuring Wale & Drake", + "position": 76, + "title": "Diced Pineapples" + }, + { + "artist": "Kendrick Lamar Featuring Drake", + "position": 77, + "title": "Poetic Justice" + }, + { + "artist": "One Direction", + "position": 78, + "title": "Live While We're Young" + }, + { + "artist": "Tim McGraw", + "position": 79, + "title": "One Of Those Nights" + }, + { + "artist": "Ludacris Featuring Usher & David Guetta", + "position": 80, + "title": "Rest Of My Life" + }, + { + "artist": "The Lumineers", + "position": 81, + "title": "Stubborn Love" + }, + { + "artist": "Chief Keef", + "position": 82, + "title": "Love Sosa" + }, + { + "artist": "Future", + "position": 83, + "title": "Turn On The Lights" + }, + { + "artist": "Dierks Bentley", + "position": 84, + "title": "Tip It On Back" + }, + { + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "position": 85, + "title": "Celebration" + }, + { + "artist": "Passion Pit", + "position": 86, + "title": "Take A Walk" + }, + { + "artist": "Bridgit Mendler", + "position": 87, + "title": "Ready Or Not" + }, + { + "artist": "Kacey Musgraves", + "position": 88, + "title": "Merry Go 'Round" + }, + { + "artist": "Big Sean", + "position": 89, + "title": "Guap" + }, + { + "artist": "Carrie Underwood", + "position": 90, + "title": "Two Black Cadillacs" + }, + { + "artist": "Future", + "position": 91, + "title": "Neva End" + }, + { + "artist": "Meek Mill Featuring Kirko Bangz", + "position": 92, + "title": "Young & Gettin' It" + }, + { + "artist": "Jonn Hart Featuring iamSU", + "position": 93, + "title": "Who Booty" + }, + { + "artist": "Kelly Rowland Featuring Lil Wayne", + "position": 94, + "title": "Ice" + }, + { + "artist": "Beyonce", + "position": 95, + "title": "Dance For You" + }, + { + "artist": "Trinidad James", + "position": 96, + "title": "All Gold Everything" + }, + { + "artist": "Tamar Braxton", + "position": 97, + "title": "Love And War" + }, + { + "artist": "Ludacris Featuring Kelly Rowland", + "position": 98, + "title": "Representin'" + }, + { + "artist": "50 Cent Featuring Eminem & Adam Levine", + "position": 99, + "title": "My Life" + }, + { + "artist": "Enrique Iglesias Featuring Sammy Adams", + "position": 100, + "title": "Finally Found You" + } + ], + "title": "2012 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Black Keys", + "position": 1, + "title": "Lonely Boy" + }, + { + "artist": "Bush", + "position": 2, + "title": "The Sound Of Winter" + }, + { + "artist": "Chevelle", + "position": 3, + "title": "Face To The Floor" + }, + { + "artist": "Coldplay", + "position": 4, + "title": "Paradise" + }, + { + "artist": "Foo Fighters", + "position": 5, + "title": "Walk" + }, + { + "artist": "Foo Fighters", + "position": 6, + "title": "These Days" + }, + { + "artist": "Seether", + "position": 7, + "title": "Tonight" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 8, + "title": "The Adventures Of Rain Dance Maggie" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 9, + "title": "Monarchy Of Roses" + }, + { + "artist": "Avenged Sevenfold", + "position": 10, + "title": "Buried Alive" + }, + { + "artist": "Nickelback", + "position": 11, + "title": "Bottoms Up" + }, + { + "artist": "Florence + The Machine", + "position": 12, + "title": "Shake It Out" + }, + { + "artist": "Staind", + "position": 13, + "title": "Not Again" + }, + { + "artist": "Young The Giant", + "position": 14, + "title": "Cough Syrup" + }, + { + "artist": "Foster The People", + "position": 15, + "title": "Pumped Up Kicks" + }, + { + "artist": "Evanescence", + "position": 16, + "title": "What You Want" + }, + { + "artist": "Switchfoot", + "position": 17, + "title": "Dark Horses" + }, + { + "artist": "Korn Featuring Skrillex & Kill The Noise", + "position": 18, + "title": "Narcissistic Cannibal" + }, + { + "artist": "Adelitas Way", + "position": 19, + "title": "The Collapse" + }, + { + "artist": "Foo Fighters", + "position": 20, + "title": "Rope" + }, + { + "artist": "Foster The People", + "position": 21, + "title": "Helena Beat" + }, + { + "artist": "Volbeat", + "position": 22, + "title": "A Warrior's Call" + }, + { + "artist": "Blink-182", + "position": 23, + "title": "After Midnight" + }, + { + "artist": "Foster The People", + "position": 24, + "title": "Don't Stop (Color On The Walls)" + }, + { + "artist": "Cage The Elephant", + "position": 25, + "title": "Aberdeen" + } + ], + "title": "2011 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Rihanna Featuring Calvin Harris", + "position": 1, + "title": "We Found Love" + }, + { + "artist": "Bruno Mars", + "position": 2, + "title": "It Will Rain" + }, + { + "artist": "Katy Perry", + "position": 3, + "title": "The One That Got Away" + }, + { + "artist": "LMFAO", + "position": 4, + "title": "Sexy And I Know It" + }, + { + "artist": "David Guetta Featuring Usher", + "position": 5, + "title": "Without You" + }, + { + "artist": "Flo Rida", + "position": 6, + "title": "Good Feeling" + }, + { + "artist": "Gym Class Heroes Featuring Adam Levine", + "position": 7, + "title": "Stereo Hearts" + }, + { + "artist": "Maroon 5 Featuring Christina Aguilera", + "position": 8, + "title": "Moves Like Jagger" + }, + { + "artist": "Selena Gomez & The Scene", + "position": 9, + "title": "Love You Like A Love Song" + }, + { + "artist": "Adele", + "position": 10, + "title": "Someone Like You" + }, + { + "artist": "Kelly Clarkson", + "position": 11, + "title": "Mr. Know It All" + }, + { + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "position": 12, + "title": "5 O'Clock" + }, + { + "artist": "Cobra Starship Featuring Sabi", + "position": 13, + "title": "You Make Me Feel..." + }, + { + "artist": "Lady Gaga", + "position": 14, + "title": "Marry The Night" + }, + { + "artist": "Gavin DeGraw", + "position": 15, + "title": "Not Over You" + }, + { + "artist": "Jessie J", + "position": 16, + "title": "Domino" + }, + { + "artist": "Drake", + "position": 17, + "title": "Headlines" + }, + { + "artist": "Adele", + "position": 18, + "title": "Set Fire To The Rain" + }, + { + "artist": "Dev", + "position": 19, + "title": "In The Dark" + }, + { + "artist": "Rihanna", + "position": 20, + "title": "You Da One" + } + ], + "title": "2011 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Zac Brown Band", + "position": 1, + "title": "Keep Me In Mind" + }, + { + "artist": "Jason Aldean", + "position": 2, + "title": "Tattoos On This Town" + }, + { + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "position": 3, + "title": "Easy" + }, + { + "artist": "David Nail", + "position": 4, + "title": "Let It Rain" + }, + { + "artist": "Luke Bryan", + "position": 5, + "title": "I Don't Want This Night To End" + }, + { + "artist": "Eric Church", + "position": 6, + "title": "Drink In My Hand" + }, + { + "artist": "Lady Antebellum", + "position": 7, + "title": "We Owned The Night" + }, + { + "artist": "Chris Young", + "position": 8, + "title": "You" + }, + { + "artist": "The Band Perry", + "position": 9, + "title": "All Your Life" + }, + { + "artist": "Kenny Chesney", + "position": 10, + "title": "Reality" + }, + { + "artist": "Keith Urban", + "position": 11, + "title": "You Gonna Fly" + }, + { + "artist": "Martina McBride", + "position": 12, + "title": "I'm Gonna Love You Through It" + }, + { + "artist": "Dierks Bentley", + "position": 13, + "title": "Home" + }, + { + "artist": "Toby Keith", + "position": 14, + "title": "Red Solo Cup" + }, + { + "artist": "Brad Paisley", + "position": 15, + "title": "Camouflage" + }, + { + "artist": "Hunter Hayes", + "position": 16, + "title": "Storm Warning" + }, + { + "artist": "George Strait", + "position": 17, + "title": "Love's Gonna Make It Alright" + }, + { + "artist": "Edens Edge", + "position": 18, + "title": "Amen" + }, + { + "artist": "Montgomery Gentry", + "position": 19, + "title": "Where I Come From" + }, + { + "artist": "Justin Moore", + "position": 20, + "title": "Bait A Hook" + }, + { + "artist": "Jake Owen", + "position": 21, + "title": "Alone With You" + }, + { + "artist": "Taylor Swift", + "position": 22, + "title": "Ours" + }, + { + "artist": "Sara Evans", + "position": 23, + "title": "My Heart Can't Tell You No" + }, + { + "artist": "James Wesley", + "position": 24, + "title": "Didn't I" + }, + { + "artist": "Scotty McCreery", + "position": 25, + "title": "The Trouble With Girls" + } + ], + "title": "2011 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Rihanna Featuring Calvin Harris", + "position": 1, + "title": "We Found Love" + }, + { + "artist": "LMFAO", + "position": 2, + "title": "Sexy And I Know It" + }, + { + "artist": "Bruno Mars", + "position": 3, + "title": "It Will Rain" + }, + { + "artist": "Flo Rida", + "position": 4, + "title": "Good Feeling" + }, + { + "artist": "Katy Perry", + "position": 5, + "title": "The One That Got Away" + }, + { + "artist": "Jay Z Kanye West", + "position": 6, + "title": "Ni**as in Paris" + }, + { + "artist": "Adele", + "position": 7, + "title": "Someone Like You" + }, + { + "artist": "David Guetta Featuring Usher", + "position": 8, + "title": "Without You" + }, + { + "artist": "Maroon 5 Featuring Christina Aguilera", + "position": 9, + "title": "Moves Like Jagger" + }, + { + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "position": 10, + "title": "5 O'Clock" + }, + { + "artist": "Gym Class Heroes Featuring Adam Levine", + "position": 11, + "title": "Stereo Hearts" + }, + { + "artist": "Big Sean Featuring Nicki Minaj", + "position": 12, + "title": "Dance (A$$)" + }, + { + "artist": "Adele", + "position": 13, + "title": "Set Fire To The Rain" + }, + { + "artist": "J. Cole", + "position": 14, + "title": "Work Out" + }, + { + "artist": "LMFAO Featuring Lauren Bennett & GoonRock", + "position": 15, + "title": "Party Rock Anthem" + }, + { + "artist": "Drake", + "position": 16, + "title": "Headlines" + }, + { + "artist": "Toby Keith", + "position": 17, + "title": "Red Solo Cup" + }, + { + "artist": "Snoop Dogg & Wiz Khalifa Featuring Bruno Mars", + "position": 18, + "title": "Young, Wild & Free" + }, + { + "artist": "Foster The People", + "position": 19, + "title": "Pumped Up Kicks" + }, + { + "artist": "Cobra Starship Featuring Sabi", + "position": 20, + "title": "You Make Me Feel..." + }, + { + "artist": "Kelly Clarkson", + "position": 21, + "title": "Mr. Know It All" + }, + { + "artist": "Gavin DeGraw", + "position": 22, + "title": "Not Over You" + }, + { + "artist": "Luke Bryan", + "position": 23, + "title": "I Don't Want This Night To End" + }, + { + "artist": "Drake Featuring Nicki Minaj", + "position": 24, + "title": "Make Me Proud" + }, + { + "artist": "Rihanna", + "position": 25, + "title": "You Da One" + }, + { + "artist": "Selena Gomez & The Scene", + "position": 26, + "title": "Love You Like A Love Song" + }, + { + "artist": "Pitbull Featuring Ne-Yo, Afrojack & Nayer", + "position": 27, + "title": "Give Me Everything" + }, + { + "artist": "Jessie J", + "position": 28, + "title": "Domino" + }, + { + "artist": "Drake Featuring Lil Wayne", + "position": 29, + "title": "The Motto" + }, + { + "artist": "Pitbull Featuring Chris Brown", + "position": 30, + "title": "International Love" + }, + { + "artist": "Lady Antebellum", + "position": 31, + "title": "Just A Kiss" + }, + { + "artist": "Justin Bieber", + "position": 32, + "title": "Mistletoe" + }, + { + "artist": "Lady Gaga", + "position": 33, + "title": "Marry The Night" + }, + { + "artist": "Nicki Minaj", + "position": 34, + "title": "Super Bass" + }, + { + "artist": "Lil Wayne Featuring Drake", + "position": 35, + "title": "She Will" + }, + { + "artist": "Zac Brown Band", + "position": 36, + "title": "Keep Me In Mind" + }, + { + "artist": "Ke$ha Featuring Lil Wayne, Wiz Khalifa, T.I. & Andre 3000", + "position": 37, + "title": "Sleazy Remix 2.0 Get Sleazier" + }, + { + "artist": "Wale Featuring Miguel", + "position": 38, + "title": "Lotus Flower Bomb" + }, + { + "artist": "Coldplay", + "position": 39, + "title": "Paradise" + }, + { + "artist": "Dev", + "position": 40, + "title": "In The Dark" + }, + { + "artist": "Adele", + "position": 41, + "title": "Rolling In The Deep" + }, + { + "artist": "Jason Aldean", + "position": 42, + "title": "Tattoos On This Town" + }, + { + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "position": 43, + "title": "Easy" + }, + { + "artist": "Hot Chelle Rae Featuring New Boyz", + "position": 44, + "title": "I Like It Like That" + }, + { + "artist": "Eric Church", + "position": 45, + "title": "Drink In My Hand" + }, + { + "artist": "Nicki Minaj Featuring Rihanna", + "position": 46, + "title": "Fly" + }, + { + "artist": "Taylor Swift", + "position": 47, + "title": "Ours" + }, + { + "artist": "Blake Shelton", + "position": 48, + "title": "God Gave Me You" + }, + { + "artist": "Breathe Carolina", + "position": 49, + "title": "Blackout" + }, + { + "artist": "Lady Antebellum", + "position": 50, + "title": "We Owned The Night" + }, + { + "artist": "David Nail", + "position": 51, + "title": "Let It Rain" + }, + { + "artist": "Chris Young", + "position": 52, + "title": "You" + }, + { + "artist": "The Band Perry", + "position": 53, + "title": "All Your Life" + }, + { + "artist": "Jason Derulo", + "position": 54, + "title": "It Girl" + }, + { + "artist": "B.o.B Featuring Lil Wayne", + "position": 55, + "title": "Strange Clouds" + }, + { + "artist": "Tyga", + "position": 56, + "title": "Rack City" + }, + { + "artist": "Beyonce Featuring Andre 3000", + "position": 57, + "title": "Party" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 58, + "title": "Take Care" + }, + { + "artist": "Glee Cast", + "position": 59, + "title": "We Are Young" + }, + { + "artist": "Christina Perri", + "position": 60, + "title": "A Thousand Years" + }, + { + "artist": "Outasight", + "position": 61, + "title": "Tonight Is The Night" + }, + { + "artist": "Lady Gaga", + "position": 62, + "title": "You And I" + }, + { + "artist": "The Fray", + "position": 63, + "title": "Heartbeat" + }, + { + "artist": "Colbie Caillat", + "position": 64, + "title": "Brighter Than The Sun" + }, + { + "artist": "J. Cole Featuring Trey Songz", + "position": 65, + "title": "Can't Get Enough" + }, + { + "artist": "Nickelback", + "position": 66, + "title": "When We Stand Together" + }, + { + "artist": "Rick Ross Featuring Nicki Minaj", + "position": 67, + "title": "You The Boss" + }, + { + "artist": "David Guetta Featuring Nicki Minaj", + "position": 68, + "title": "Turn Me On" + }, + { + "artist": "The Black Keys", + "position": 69, + "title": "Lonely Boy" + }, + { + "artist": "Miranda Lambert", + "position": 70, + "title": "Baggage Claim" + }, + { + "artist": "Martina McBride", + "position": 71, + "title": "I'm Gonna Love You Through It" + }, + { + "artist": "Jake Owen", + "position": 72, + "title": "Alone With You" + }, + { + "artist": "Wale Featuring Jeremih & Rick Ross", + "position": 73, + "title": "That Way" + }, + { + "artist": "Dierks Bentley", + "position": 74, + "title": "Home" + }, + { + "artist": "T-Pain Featuring Lil Wayne", + "position": 75, + "title": "Bang Bang Pow Pow" + }, + { + "artist": "Kenny Chesney", + "position": 76, + "title": "Reality" + }, + { + "artist": "Avicii", + "position": 77, + "title": "Levels" + }, + { + "artist": "Fun. Featuring Janelle Monae", + "position": 78, + "title": "We Are Young" + }, + { + "artist": "Keith Urban", + "position": 79, + "title": "You Gonna Fly" + }, + { + "artist": "Avril Lavigne", + "position": 80, + "title": "Wish You Were Here" + }, + { + "artist": "Tim McGraw", + "position": 81, + "title": "Better Than I Used To Be" + }, + { + "artist": "Florence + The Machine", + "position": 82, + "title": "Shake It Out" + }, + { + "artist": "Justin Moore", + "position": 83, + "title": "Bait A Hook" + }, + { + "artist": "Scotty McCreery", + "position": 84, + "title": "The Trouble With Girls" + }, + { + "artist": "Hunter Hayes", + "position": 85, + "title": "Storm Warning" + }, + { + "artist": "Waka Flocka Flame Featuring Drake", + "position": 86, + "title": "Round Of Applause" + }, + { + "artist": "The Script", + "position": 87, + "title": "Nothing" + }, + { + "artist": "Brad Paisley", + "position": 88, + "title": "Camouflage" + }, + { + "artist": "AWOLNATION", + "position": 89, + "title": "Sail" + }, + { + "artist": "Edens Edge", + "position": 90, + "title": "Amen" + }, + { + "artist": "Beyonce", + "position": 91, + "title": "Countdown" + }, + { + "artist": "Glee Cast", + "position": 92, + "title": "Do They Know It's Christmas?" + }, + { + "artist": "Grouplove", + "position": 93, + "title": "Tongue Tied" + }, + { + "artist": "Beyonce", + "position": 94, + "title": "Love On Top" + }, + { + "artist": "Thompson Square", + "position": 95, + "title": "I Got You" + }, + { + "artist": "Lee Brice", + "position": 96, + "title": "A Woman Like You" + }, + { + "artist": "Romeo Santos Featuring Usher", + "position": 97, + "title": "Promise" + }, + { + "artist": "Roscoe Dash", + "position": 98, + "title": "Good Good Night" + }, + { + "artist": "Michael Buble", + "position": 99, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Gym Class Heroes Featuring Neon Hitch", + "position": 100, + "title": "Ass Back Home" + } + ], + "title": "2011 - Hot 100" + }, + { + "songs": [ + { + "artist": "Trey Songz", + "position": 1, + "title": "Can't Be Friends" + }, + { + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "position": 2, + "title": "Aston Martin Music" + }, + { + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "position": 3, + "title": "No Hands" + }, + { + "artist": "Nicki Minaj", + "position": 4, + "title": "Right Thru Me" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 5, + "title": "What's My Name?" + }, + { + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "position": 6, + "title": "Deuces" + }, + { + "artist": "Lloyd", + "position": 7, + "title": "Lay It Down" + }, + { + "artist": "Twista Featuring Chris Brown", + "position": 8, + "title": "Make A Movie" + }, + { + "artist": "Willow", + "position": 9, + "title": "Whip My Hair" + }, + { + "artist": "Wiz Khalifa", + "position": 10, + "title": "Black And Yellow" + }, + { + "artist": "Chris Brown", + "position": 11, + "title": "No BS" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 12, + "title": "Bottoms Up" + }, + { + "artist": "Fantasia", + "position": 13, + "title": "I'm Doing Me" + }, + { + "artist": "Lil Wayne Featuring Drake", + "position": 14, + "title": "Right Above It" + }, + { + "artist": "Miguel Featuring J. Cole", + "position": 15, + "title": "All I Want Is You" + }, + { + "artist": "Charlie Wilson", + "position": 16, + "title": "You Are" + }, + { + "artist": "Jamie Foxx Featuring Drake", + "position": 17, + "title": "Fall For Your Type" + }, + { + "artist": "Ne-Yo", + "position": 18, + "title": "One In A Million" + }, + { + "artist": "Keri Hilson", + "position": 19, + "title": "Pretty Girl Rock" + }, + { + "artist": "R. Kelly", + "position": 20, + "title": "When A Woman Loves" + }, + { + "artist": "Eric Benet", + "position": 21, + "title": "Sometimes I Cry" + }, + { + "artist": "Diddy - Dirty Money Featuring Drake", + "position": 22, + "title": "Loving You No More" + }, + { + "artist": "Jazmine Sullivan", + "position": 23, + "title": "10 Seconds" + }, + { + "artist": "Usher", + "position": 24, + "title": "There Goes My Baby" + }, + { + "artist": "Jazmine Sullivan", + "position": 25, + "title": "Holding You Down (Goin In Circles)" + } + ], + "title": "2010 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "The Black Keys", + "position": 1, + "title": "Tighten Up" + }, + { + "artist": "Linkin Park", + "position": 2, + "title": "Waiting For The End" + }, + { + "artist": "Stone Sour", + "position": 3, + "title": "Say You'll Haunt Me" + }, + { + "artist": "Three Days Grace", + "position": 4, + "title": "World So Cold" + }, + { + "artist": "Neon Trees", + "position": 5, + "title": "Animal" + }, + { + "artist": "Mumford & Sons", + "position": 6, + "title": "Little Lion Man" + }, + { + "artist": "Kings Of Leon", + "position": 7, + "title": "Radioactive" + }, + { + "artist": "My Darkest Days Featuring Zakk Wylde", + "position": 8, + "title": "Porn Star Dancing" + }, + { + "artist": "Godsmack", + "position": 9, + "title": "Love-Hate-Sex-Pain" + }, + { + "artist": "Muse", + "position": 10, + "title": "Undisclosed Desires" + }, + { + "artist": "Saving Abel", + "position": 11, + "title": "The Sex Is Good" + }, + { + "artist": "Florence + The Machine", + "position": 12, + "title": "Dog Days Are Over" + }, + { + "artist": "Cake", + "position": 13, + "title": "Sick Of You" + }, + { + "artist": "Cage The Elephant", + "position": 14, + "title": "Shake Me Down" + }, + { + "artist": "My Chemical Romance", + "position": 15, + "title": "Sing" + }, + { + "artist": "Disturbed", + "position": 16, + "title": "The Animal" + }, + { + "artist": "The Dirty Heads Featuring Rome", + "position": 17, + "title": "Lay Me Down" + }, + { + "artist": "Phoenix", + "position": 18, + "title": "Lisztomania" + }, + { + "artist": "Sick Puppies", + "position": 19, + "title": "Maybe" + }, + { + "artist": "Alter Bridge", + "position": 20, + "title": "Isolation" + }, + { + "artist": "Avenged Sevenfold", + "position": 21, + "title": "Welcome To The Family" + }, + { + "artist": "10 Years", + "position": 22, + "title": "Shoot It Out" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 23, + "title": "Closer To The Edge" + }, + { + "artist": "Hinder", + "position": 24, + "title": "All American Nightmare" + }, + { + "artist": "Five Finger Death Punch", + "position": 25, + "title": "Far From Home" + } + ], + "title": "2010 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "P!nk", + "position": 1, + "title": "Raise Your Glass" + }, + { + "artist": "Rihanna", + "position": 2, + "title": "Only Girl (In The World)" + }, + { + "artist": "Nelly", + "position": 3, + "title": "Just A Dream" + }, + { + "artist": "Ke$ha", + "position": 4, + "title": "We R Who We R" + }, + { + "artist": "Katy Perry", + "position": 5, + "title": "Firework" + }, + { + "artist": "Bruno Mars", + "position": 6, + "title": "Just The Way You Are" + }, + { + "artist": "Far*East Movement Featuring Cataracs & Dev", + "position": 7, + "title": "Like A G6" + }, + { + "artist": "Bruno Mars", + "position": 8, + "title": "Grenade" + }, + { + "artist": "Mike Posner", + "position": 9, + "title": "Please Don't Go" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 10, + "title": "What's My Name?" + }, + { + "artist": "Usher Featuring Pitbull", + "position": 11, + "title": "DJ Got Us Fallin' In Love" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 12, + "title": "Bottoms Up" + }, + { + "artist": "The Black Eyed Peas", + "position": 13, + "title": "The Time (Dirty Bit)" + }, + { + "artist": "Neon Trees", + "position": 14, + "title": "Animal" + }, + { + "artist": "Taio Cruz", + "position": 15, + "title": "Dynamite" + }, + { + "artist": "The Ready Set", + "position": 16, + "title": "Love Like Woe" + }, + { + "artist": "Katy Perry", + "position": 17, + "title": "Teenage Dream" + }, + { + "artist": "Edward Maya & Vika Jigulina", + "position": 18, + "title": "Stereo Love" + }, + { + "artist": "Chris Brown", + "position": 19, + "title": "Yeah 3X" + }, + { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "position": 20, + "title": "Tonight (I'm Lovin' You)" + } + ], + "title": "2010 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Rascal Flatts", + "position": 1, + "title": "Why Wait" + }, + { + "artist": "Reba", + "position": 2, + "title": "Turn On The Radio" + }, + { + "artist": "Jason Aldean", + "position": 3, + "title": "My Kinda Party" + }, + { + "artist": "Carrie Underwood", + "position": 4, + "title": "Mama's Song" + }, + { + "artist": "Tim McGraw", + "position": 5, + "title": "Felt Good On My Lips" + }, + { + "artist": "Zac Brown Band Featuring Alan Jackson", + "position": 6, + "title": "As She's Walking Away" + }, + { + "artist": "Kenny Chesney", + "position": 7, + "title": "Somewhere With You" + }, + { + "artist": "George Strait", + "position": 8, + "title": "The Breath You Take" + }, + { + "artist": "The Band Perry", + "position": 9, + "title": "If I Die Young" + }, + { + "artist": "Chris Young", + "position": 10, + "title": "Voices" + }, + { + "artist": "Keith Urban", + "position": 11, + "title": "Put You In A Song" + }, + { + "artist": "Miranda Lambert", + "position": 12, + "title": "Only Prettier" + }, + { + "artist": "Luke Bryan", + "position": 13, + "title": "Someone Else Calling You Baby" + }, + { + "artist": "Blake Shelton", + "position": 14, + "title": "Who Are You When I'm Not Looking" + }, + { + "artist": "Lady Antebellum", + "position": 15, + "title": "Hello World" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "Back To December" + }, + { + "artist": "Toby Keith", + "position": 17, + "title": "Bullets In The Gun" + }, + { + "artist": "Billy Currington", + "position": 18, + "title": "Let Me Down Easy" + }, + { + "artist": "Brad Paisley", + "position": 19, + "title": "This Is Country Music" + }, + { + "artist": "Eric Church", + "position": 20, + "title": "Smoke A Little Smoke" + }, + { + "artist": "Sunny Sweeney", + "position": 21, + "title": "From A Table Away" + }, + { + "artist": "The JaneDear Girls", + "position": 22, + "title": "Wildflower" + }, + { + "artist": "Joe Nichols", + "position": 23, + "title": "The Shape I'm In" + }, + { + "artist": "Jerrod Niemann", + "position": 24, + "title": "What Do You Want" + }, + { + "artist": "Jason Aldean With Kelly Clarkson", + "position": 25, + "title": "Don't You Wanna Stay" + } + ], + "title": "2010 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Katy Perry", + "position": 1, + "title": "Firework" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 2, + "title": "What's My Name?" + }, + { + "artist": "Bruno Mars", + "position": 3, + "title": "Grenade" + }, + { + "artist": "P!nk", + "position": 4, + "title": "Raise Your Glass" + }, + { + "artist": "Ke$ha", + "position": 5, + "title": "We R Who We R" + }, + { + "artist": "Rihanna", + "position": 6, + "title": "Only Girl (In The World)" + }, + { + "artist": "Bruno Mars", + "position": 7, + "title": "Just The Way You Are" + }, + { + "artist": "The Black Eyed Peas", + "position": 8, + "title": "The Time (Dirty Bit)" + }, + { + "artist": "Nelly", + "position": 9, + "title": "Just A Dream" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 10, + "title": "Bottoms Up" + }, + { + "artist": "Wiz Khalifa", + "position": 11, + "title": "Black And Yellow" + }, + { + "artist": "Far*East Movement Featuring Cataracs & Dev", + "position": 12, + "title": "Like A G6" + }, + { + "artist": "Usher Featuring Pitbull", + "position": 13, + "title": "DJ Got Us Fallin' In Love" + }, + { + "artist": "Taio Cruz", + "position": 14, + "title": "Dynamite" + }, + { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "position": 15, + "title": "Tonight (I'm Lovin' You)" + }, + { + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "position": 16, + "title": "No Hands" + }, + { + "artist": "Mike Posner", + "position": 17, + "title": "Please Don't Go" + }, + { + "artist": "T.I. Featuring Eminem", + "position": 18, + "title": "That's All She Wrote" + }, + { + "artist": "Edward Maya & Vika Jigulina", + "position": 19, + "title": "Stereo Love" + }, + { + "artist": "Katy Perry", + "position": 20, + "title": "Teenage Dream" + }, + { + "artist": "Neon Trees", + "position": 21, + "title": "Animal" + }, + { + "artist": "Chris Brown", + "position": 22, + "title": "Yeah 3X" + }, + { + "artist": "Cee Lo Green", + "position": 23, + "title": "F**k You (Forget You)" + }, + { + "artist": "Diddy - Dirty Money Featuring Skylar Grey", + "position": 24, + "title": "Coming Home" + }, + { + "artist": "OneRepublic", + "position": 25, + "title": "Secrets" + }, + { + "artist": "Nicki Minaj", + "position": 26, + "title": "Right Thru Me" + }, + { + "artist": "Willow", + "position": 27, + "title": "Whip My Hair" + }, + { + "artist": "The Band Perry", + "position": 28, + "title": "If I Die Young" + }, + { + "artist": "Lil Wayne Featuring Drake", + "position": 29, + "title": "Right Above It" + }, + { + "artist": "Flo Rida Featuring David Guetta", + "position": 30, + "title": "Club Can't Handle Me" + }, + { + "artist": "Enrique Iglesias Featuring Pitbull", + "position": 31, + "title": "I Like It" + }, + { + "artist": "Pitbull Featuring T-Pain", + "position": 32, + "title": "Hey Baby (Drop It To The Floor)" + }, + { + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "position": 33, + "title": "Aston Martin Music" + }, + { + "artist": "Taylor Swift", + "position": 34, + "title": "Back To December" + }, + { + "artist": "Coldplay", + "position": 35, + "title": "Christmas Lights" + }, + { + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "position": 36, + "title": "Deuces" + }, + { + "artist": "Kenny Chesney", + "position": 37, + "title": "Somewhere With You" + }, + { + "artist": "Eminem Featuring Lil Wayne", + "position": 38, + "title": "No Love" + }, + { + "artist": "Jason Aldean", + "position": 39, + "title": "My Kinda Party" + }, + { + "artist": "Eminem Featuring Rihanna", + "position": 40, + "title": "Love The Way You Lie" + }, + { + "artist": "Tim McGraw", + "position": 41, + "title": "Felt Good On My Lips" + }, + { + "artist": "The Ready Set", + "position": 42, + "title": "Love Like Woe" + }, + { + "artist": "Sugarland", + "position": 43, + "title": "Stuck Like Glue" + }, + { + "artist": "Trey Songz", + "position": 44, + "title": "Can't Be Friends" + }, + { + "artist": "Keri Hilson", + "position": 45, + "title": "Pretty Girl Rock" + }, + { + "artist": "David Guetta Featuring Kid Cudi", + "position": 46, + "title": "Memories" + }, + { + "artist": "Zac Brown Band Featuring Alan Jackson", + "position": 47, + "title": "As She's Walking Away" + }, + { + "artist": "Florence + The Machine", + "position": 48, + "title": "Dog Days Are Over" + }, + { + "artist": "Christina Perri", + "position": 49, + "title": "Jar Of Hearts" + }, + { + "artist": "Taylor Swift", + "position": 50, + "title": "Mine" + }, + { + "artist": "Yolanda Be Cool & Dcup", + "position": 51, + "title": "We No Speak Americano" + }, + { + "artist": "Dr. Dre Featuring Snoop Dogg & Akon", + "position": 52, + "title": "Kush" + }, + { + "artist": "Reba", + "position": 53, + "title": "Turn On The Radio" + }, + { + "artist": "Blake Shelton", + "position": 54, + "title": "Who Are You When I'm Not Looking" + }, + { + "artist": "Plain White T's", + "position": 55, + "title": "Rhythm of Love" + }, + { + "artist": "Carrie Underwood", + "position": 56, + "title": "Mama's Song" + }, + { + "artist": "Glee Cast", + "position": 57, + "title": "Baby, It's Cold Outside" + }, + { + "artist": "Rascal Flatts", + "position": 58, + "title": "Why Wait" + }, + { + "artist": "Glee Cast", + "position": 59, + "title": "Welcome Christmas" + }, + { + "artist": "Far*East Movement Featuring Ryan Tedder", + "position": 60, + "title": "Rocketeer" + }, + { + "artist": "Keith Urban", + "position": 61, + "title": "Put You In A Song" + }, + { + "artist": "Jeremih Featuring 50 Cent", + "position": 62, + "title": "Down On Me" + }, + { + "artist": "Miranda Lambert", + "position": 63, + "title": "Only Prettier" + }, + { + "artist": "Lloyd", + "position": 64, + "title": "Lay It Down" + }, + { + "artist": "Michael Jackson Duet With Akon", + "position": 65, + "title": "Hold My Hand" + }, + { + "artist": "George Strait", + "position": 66, + "title": "The Breath You Take" + }, + { + "artist": "Flo Rida Featuring Akon", + "position": 67, + "title": "Who Dat Girl" + }, + { + "artist": "Adele", + "position": 68, + "title": "Rolling In The Deep" + }, + { + "artist": "Chris Young", + "position": 69, + "title": "Voices" + }, + { + "artist": "Jason Aldean With Kelly Clarkson", + "position": 70, + "title": "Don't You Wanna Stay" + }, + { + "artist": "Billy Currington", + "position": 71, + "title": "Let Me Down Easy" + }, + { + "artist": "Brad Paisley", + "position": 72, + "title": "Anything Like Me" + }, + { + "artist": "Kanye West Featuring Pusha T", + "position": 73, + "title": "Runaway" + }, + { + "artist": "Linkin Park", + "position": 74, + "title": "Waiting For The End" + }, + { + "artist": "Drake Featuring T.I. & Swizz Beatz", + "position": 75, + "title": "Fancy" + }, + { + "artist": "Sick Puppies", + "position": 76, + "title": "Maybe" + }, + { + "artist": "Lady Antebellum", + "position": 77, + "title": "Hello World" + }, + { + "artist": "Luke Bryan", + "position": 78, + "title": "Someone Else Calling You Baby" + }, + { + "artist": "Miguel Featuring J. Cole", + "position": 79, + "title": "All I Want Is You" + }, + { + "artist": "Twista Featuring Chris Brown", + "position": 80, + "title": "Make A Movie" + }, + { + "artist": "Mumford & Sons", + "position": 81, + "title": "Little Lion Man" + }, + { + "artist": "Birdman Featuring Lil Wayne", + "position": 82, + "title": "Fire Flame" + }, + { + "artist": "Akon", + "position": 83, + "title": "Angel" + }, + { + "artist": "Toby Keith", + "position": 84, + "title": "Bullets In The Gun" + }, + { + "artist": "Train", + "position": 85, + "title": "Marry Me" + }, + { + "artist": "Sean Kingston Featuring Nicki Minaj", + "position": 86, + "title": "Letting Go (Dutty Love)" + }, + { + "artist": "Eric Church", + "position": 87, + "title": "Smoke A Little Smoke" + }, + { + "artist": "Jesse McCartney", + "position": 88, + "title": "Shake" + }, + { + "artist": "Chris Brown", + "position": 89, + "title": "No BS" + }, + { + "artist": "Shakira Featuring El Cata or Dizzee Rascal", + "position": 90, + "title": "Loca" + }, + { + "artist": "Natasha Bedingfield", + "position": 91, + "title": "Strip Me" + }, + { + "artist": "Glee Cast Featuring Gwyneth Paltrow", + "position": 92, + "title": "Forget You" + }, + { + "artist": "Kanye West Featuring Jay-Z, Rick Ross, Bon Iver & Nicki Minaj", + "position": 93, + "title": "Monster" + }, + { + "artist": "Dev Featuring The Cataracs", + "position": 94, + "title": "Bass Down Low" + }, + { + "artist": "Jamie Foxx Featuring Drake", + "position": 95, + "title": "Fall For Your Type" + }, + { + "artist": "Daughtry", + "position": 96, + "title": "September" + }, + { + "artist": "Ne-Yo", + "position": 97, + "title": "One In A Million" + }, + { + "artist": "Bruno Mars", + "position": 98, + "title": "Marry You" + }, + { + "artist": "My Darkest Days Featuring Zakk Wylde", + "position": 99, + "title": "Porn Star Dancing" + }, + { + "artist": "Pitbull", + "position": 100, + "title": "Bon, Bon" + } + ], + "title": "2010 - Hot 100" + }, + { + "songs": [ + { + "artist": "Trey Songz Featuring Drake", + "position": 1, + "title": "I Invented Sex" + }, + { + "artist": "Birdman Featuring Lil Wayne & Drake", + "position": 2, + "title": "Money To Blow" + }, + { + "artist": "Melanie Fiona", + "position": 3, + "title": "It Kills Me" + }, + { + "artist": "Usher", + "position": 4, + "title": "Papers" + }, + { + "artist": "Jay-Z + Alicia Keys", + "position": 5, + "title": "Empire State Of Mind" + }, + { + "artist": "Trey Songz Featuring Fabolous", + "position": 6, + "title": "Say Aah" + }, + { + "artist": "50 Cent Featuring Ne-Yo", + "position": 7, + "title": "Baby By Me" + }, + { + "artist": "Maxwell", + "position": 8, + "title": "Bad Habits" + }, + { + "artist": "Young Money Featuring Lloyd", + "position": 9, + "title": "Bedrock" + }, + { + "artist": "Maxwell", + "position": 10, + "title": "Pretty Wings" + }, + { + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "position": 11, + "title": "I Can Transform Ya" + }, + { + "artist": "Alicia Keys", + "position": 12, + "title": "Try Sleeping With A Broken Heart" + }, + { + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "position": 13, + "title": "Forever" + }, + { + "artist": "Ludacris", + "position": 14, + "title": "How Low" + }, + { + "artist": "Gucci Mane Featuring Usher", + "position": 15, + "title": "Spotlight" + }, + { + "artist": "Mary Mary Featuring Kierra \"KiKi\" Sheard", + "position": 16, + "title": "God In Me" + }, + { + "artist": "Jaheim", + "position": 17, + "title": "Ain't Leavin Without You" + }, + { + "artist": "Mary J. Blige", + "position": 18, + "title": "I Am" + }, + { + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "position": 19, + "title": "Wasted" + }, + { + "artist": "LeToya Featuring Ludacris", + "position": 20, + "title": "Regret" + }, + { + "artist": "Whitney Houston", + "position": 21, + "title": "Million Dollar Bill" + }, + { + "artist": "Sade", + "position": 22, + "title": "Soldier Of Love" + }, + { + "artist": "Rihanna Featuring Jeezy", + "position": 23, + "title": "Hard" + }, + { + "artist": "Snoop Dogg Featuring The-Dream", + "position": 24, + "title": "Gangsta Luv" + }, + { + "artist": "Omarion Featuring Gucci Mane", + "position": 25, + "title": "I Get It In" + } + ], + "title": "2009 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Three Days Grace", + "position": 1, + "title": "Break" + }, + { + "artist": "Breaking Benjamin", + "position": 2, + "title": "I Will Not Bow" + }, + { + "artist": "Muse", + "position": 3, + "title": "Uprising" + }, + { + "artist": "Foo Fighters", + "position": 4, + "title": "Wheels" + }, + { + "artist": "Weezer", + "position": 5, + "title": "(If You're Wondering If I Want You To) I Want You To" + }, + { + "artist": "Shinedown", + "position": 6, + "title": "If You Only Knew" + }, + { + "artist": "Alice In Chains", + "position": 7, + "title": "Check My Brain" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 8, + "title": "Kings And Queens" + }, + { + "artist": "Rise Against", + "position": 9, + "title": "Savior" + }, + { + "artist": "Pearl Jam", + "position": 10, + "title": "The Fixer" + }, + { + "artist": "Sick Puppies", + "position": 11, + "title": "You're Going Down" + }, + { + "artist": "Chevelle", + "position": 12, + "title": "Jars" + }, + { + "artist": "Phoenix", + "position": 13, + "title": "1901" + }, + { + "artist": "Them Crooked Vultures", + "position": 14, + "title": "New Fang" + }, + { + "artist": "Kings Of Leon", + "position": 15, + "title": "Use Somebody" + }, + { + "artist": "Linkin Park", + "position": 16, + "title": "New Divide" + }, + { + "artist": "Pearl Jam", + "position": 17, + "title": "Just Breathe" + }, + { + "artist": "Cage The Elephant", + "position": 18, + "title": "Back Against The Wall" + }, + { + "artist": "Slipknot", + "position": 19, + "title": "Snuff" + }, + { + "artist": "Death Cab For Cutie", + "position": 20, + "title": "Meet Me On The Equinox" + }, + { + "artist": "Creed", + "position": 21, + "title": "Overcome" + }, + { + "artist": "Puddle Of Mudd", + "position": 22, + "title": "Spaceship" + }, + { + "artist": "Flyleaf", + "position": 23, + "title": "Again" + }, + { + "artist": "Alice In Chains", + "position": 24, + "title": "Your Decision" + }, + { + "artist": "Adelitas Way", + "position": 25, + "title": "Invincible" + } + ], + "title": "2009 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Iyaz", + "position": 1, + "title": "Replay" + }, + { + "artist": "Owl City", + "position": 2, + "title": "Fireflies" + }, + { + "artist": "Britney Spears", + "position": 3, + "title": "3" + }, + { + "artist": "Jason Derulo", + "position": 4, + "title": "Whatcha Say" + }, + { + "artist": "Ke$ha", + "position": 5, + "title": "TiK ToK" + }, + { + "artist": "Lady Gaga", + "position": 6, + "title": "Bad Romance" + }, + { + "artist": "Kelly Clarkson", + "position": 7, + "title": "Already Gone" + }, + { + "artist": "David Guetta Featuring Akon", + "position": 8, + "title": "Sexy Chick" + }, + { + "artist": "Jay-Z + Alicia Keys", + "position": 9, + "title": "Empire State Of Mind" + }, + { + "artist": "Jay Sean Featuring Lil Wayne", + "position": 10, + "title": "Down" + }, + { + "artist": "Lady Gaga", + "position": 11, + "title": "Paparazzi" + }, + { + "artist": "Beyonce", + "position": 12, + "title": "Sweet Dreams" + }, + { + "artist": "Miley Cyrus", + "position": 13, + "title": "Party In The U.S.A." + }, + { + "artist": "Cascada", + "position": 14, + "title": "Evacuate The Dancefloor" + }, + { + "artist": "The Black Eyed Peas", + "position": 15, + "title": "Meet Me Halfway" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "Fifteen" + }, + { + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "position": 17, + "title": "Do You Remember" + }, + { + "artist": "Kings Of Leon", + "position": 18, + "title": "Use Somebody" + }, + { + "artist": "Boys Like Girls Featuring Taylor Swift", + "position": 19, + "title": "Two Is Better Than One" + }, + { + "artist": "Taylor Swift", + "position": 20, + "title": "You Belong With Me" + } + ], + "title": "2009 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Lady Antebellum", + "position": 1, + "title": "Need You Now" + }, + { + "artist": "Reba", + "position": 2, + "title": "Consider Me Gone" + }, + { + "artist": "Luke Bryan", + "position": 3, + "title": "Do I" + }, + { + "artist": "Dierks Bentley", + "position": 4, + "title": "I Wanna Make You Close Your Eyes" + }, + { + "artist": "Craig Morgan", + "position": 5, + "title": "Bonfire" + }, + { + "artist": "Tim McGraw", + "position": 6, + "title": "Southern Voice" + }, + { + "artist": "David Nail", + "position": 7, + "title": "Red Light" + }, + { + "artist": "Miranda Lambert", + "position": 8, + "title": "White Liar" + }, + { + "artist": "Jason Aldean", + "position": 9, + "title": "The Truth" + }, + { + "artist": "Darius Rucker", + "position": 10, + "title": "History In The Making" + }, + { + "artist": "Jake Owen", + "position": 11, + "title": "Eight Second Ride" + }, + { + "artist": "Brad Paisley", + "position": 12, + "title": "American Saturday Night" + }, + { + "artist": "Josh Turner", + "position": 13, + "title": "Why Don't We Just Dance" + }, + { + "artist": "Billy Currington", + "position": 14, + "title": "That's How Country Boys Roll" + }, + { + "artist": "George Strait", + "position": 15, + "title": "Twang" + }, + { + "artist": "Toby Keith", + "position": 16, + "title": "Cryin' For Me (Wayman's Song)" + }, + { + "artist": "Jason Michael Carroll", + "position": 17, + "title": "Hurry Home" + }, + { + "artist": "Keith Urban", + "position": 18, + "title": "'Til Summer Comes Around" + }, + { + "artist": "Easton Corbin", + "position": 19, + "title": "A Little More Country Than That" + }, + { + "artist": "Blake Shelton Featuring Trace Adkins", + "position": 20, + "title": "Hillbilly Bone" + }, + { + "artist": "Gary Allan", + "position": 21, + "title": "Today" + }, + { + "artist": "Josh Thompson", + "position": 22, + "title": "Beer On The Table" + }, + { + "artist": "Kellie Pickler", + "position": 23, + "title": "Didn't You Know How Much I Loved You" + }, + { + "artist": "Steel Magnolia", + "position": 24, + "title": "Keep On Lovin' You" + }, + { + "artist": "Sarah Buxton", + "position": 25, + "title": "Outside My Window" + } + ], + "title": "2009 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Jay-Z + Alicia Keys", + "position": 1, + "title": "Empire State Of Mind" + }, + { + "artist": "Ke$ha", + "position": 2, + "title": "TiK ToK" + }, + { + "artist": "Lady Gaga", + "position": 3, + "title": "Bad Romance" + }, + { + "artist": "Iyaz", + "position": 4, + "title": "Replay" + }, + { + "artist": "Owl City", + "position": 5, + "title": "Fireflies" + }, + { + "artist": "David Guetta Featuring Akon", + "position": 6, + "title": "Sexy Chick" + }, + { + "artist": "Jason Derulo", + "position": 7, + "title": "Whatcha Say" + }, + { + "artist": "The Black Eyed Peas", + "position": 8, + "title": "Meet Me Halfway" + }, + { + "artist": "Britney Spears", + "position": 9, + "title": "3" + }, + { + "artist": "Jay Sean Featuring Lil Wayne", + "position": 10, + "title": "Down" + }, + { + "artist": "Lady Gaga", + "position": 11, + "title": "Paparazzi" + }, + { + "artist": "Beyonce", + "position": 12, + "title": "Sweet Dreams" + }, + { + "artist": "Ludacris", + "position": 13, + "title": "How Low" + }, + { + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "position": 14, + "title": "Forever" + }, + { + "artist": "Kelly Clarkson", + "position": 15, + "title": "Already Gone" + }, + { + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "position": 16, + "title": "Do You Remember" + }, + { + "artist": "Miley Cyrus", + "position": 17, + "title": "Party In The U.S.A." + }, + { + "artist": "The Black Eyed Peas", + "position": 18, + "title": "I Gotta Feeling" + }, + { + "artist": "Lady Antebellum", + "position": 19, + "title": "Need You Now" + }, + { + "artist": "Young Money Featuring Lloyd", + "position": 20, + "title": "Bedrock" + }, + { + "artist": "Rihanna Featuring Jeezy", + "position": 21, + "title": "Hard" + }, + { + "artist": "Taylor Swift", + "position": 22, + "title": "You Belong With Me" + }, + { + "artist": "Kings Of Leon", + "position": 23, + "title": "Use Somebody" + }, + { + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "position": 24, + "title": "I Can Transform Ya" + }, + { + "artist": "Cascada", + "position": 25, + "title": "Evacuate The Dancefloor" + }, + { + "artist": "Birdman Featuring Lil Wayne & Drake", + "position": 26, + "title": "Money To Blow" + }, + { + "artist": "Taylor Swift", + "position": 27, + "title": "Fifteen" + }, + { + "artist": "Boys Like Girls Featuring Taylor Swift", + "position": 28, + "title": "Two Is Better Than One" + }, + { + "artist": "50 Cent Featuring Ne-Yo", + "position": 29, + "title": "Baby By Me" + }, + { + "artist": "Carrie Underwood", + "position": 30, + "title": "Cowboy Casanova" + }, + { + "artist": "Timbaland Featuring Justin Timberlake", + "position": 31, + "title": "Carry Out" + }, + { + "artist": "Jay-Z, Rihanna & Kanye West", + "position": 32, + "title": "Run This Town" + }, + { + "artist": "New Boyz Feat. Ray J", + "position": 33, + "title": "Tie Me Down" + }, + { + "artist": "Shakira Featuring Lil Wayne", + "position": 34, + "title": "Give It Up To Me" + }, + { + "artist": "Snoop Dogg Featuring The-Dream", + "position": 35, + "title": "Gangsta Luv" + }, + { + "artist": "Kris Allen", + "position": 36, + "title": "Live Like We're Dying" + }, + { + "artist": "Luke Bryan", + "position": 37, + "title": "Do I" + }, + { + "artist": "Trey Songz Featuring Fabolous", + "position": 38, + "title": "Say Aah" + }, + { + "artist": "Colbie Caillat", + "position": 39, + "title": "Fallin' For You" + }, + { + "artist": "Reba", + "position": 40, + "title": "Consider Me Gone" + }, + { + "artist": "Justin Bieber", + "position": 41, + "title": "One Time" + }, + { + "artist": "Gucci Mane Featuring Usher", + "position": 42, + "title": "Spotlight" + }, + { + "artist": "Trey Songz Featuring Drake", + "position": 43, + "title": "I Invented Sex" + }, + { + "artist": "Rihanna", + "position": 44, + "title": "Russian Roulette" + }, + { + "artist": "Train", + "position": 45, + "title": "Hey, Soul Sister" + }, + { + "artist": "Lady Gaga Featuring Beyonce", + "position": 46, + "title": "Telephone" + }, + { + "artist": "Shinedown", + "position": 47, + "title": "If You Only Knew" + }, + { + "artist": "Jason Aldean", + "position": 48, + "title": "The Truth" + }, + { + "artist": "Miranda Lambert", + "position": 49, + "title": "White Liar" + }, + { + "artist": "Tim McGraw", + "position": 50, + "title": "Southern Voice" + }, + { + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Jenna Ushkowitz & Amber Riley", + "position": 51, + "title": "My Life Would Suck Without You" + }, + { + "artist": "Dierks Bentley", + "position": 52, + "title": "I Wanna Make You Close Your Eyes" + }, + { + "artist": "Glee Cast Featuring Lea Michele", + "position": 53, + "title": "Don't Rain On My Parade" + }, + { + "artist": "Melanie Fiona", + "position": 54, + "title": "It Kills Me" + }, + { + "artist": "Orianthi", + "position": 55, + "title": "According To You" + }, + { + "artist": "Alicia Keys", + "position": 56, + "title": "Try Sleeping With A Broken Heart" + }, + { + "artist": "Usher", + "position": 57, + "title": "Papers" + }, + { + "artist": "Uncle Kracker", + "position": 58, + "title": "Smile" + }, + { + "artist": "David Nail", + "position": 59, + "title": "Red Light" + }, + { + "artist": "Chris Brown", + "position": 60, + "title": "Crawl" + }, + { + "artist": "Nickelback", + "position": 61, + "title": "Never Gonna Be Alone" + }, + { + "artist": "Lil Wayne", + "position": 62, + "title": "On Fire" + }, + { + "artist": "Jason Derulo", + "position": 63, + "title": "In My Head" + }, + { + "artist": "Daughtry", + "position": 64, + "title": "Life After You" + }, + { + "artist": "Craig Morgan", + "position": 65, + "title": "Bonfire" + }, + { + "artist": "Muse", + "position": 66, + "title": "Uprising" + }, + { + "artist": "Mary J. Blige", + "position": 67, + "title": "I Am" + }, + { + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "position": 68, + "title": "Wasted" + }, + { + "artist": "Jesse McCartney Featuring T-Pain", + "position": 69, + "title": "Body Language" + }, + { + "artist": "Darius Rucker", + "position": 70, + "title": "History In The Making" + }, + { + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Kevin McHale & Amber Riley", + "position": 71, + "title": "You Can't Always Get What You Want" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 72, + "title": "This Is War" + }, + { + "artist": "Justin Bieber", + "position": 73, + "title": "One Less Lonely Girl" + }, + { + "artist": "Michael Buble", + "position": 74, + "title": "Haven't Met You Yet" + }, + { + "artist": "Josh Turner", + "position": 75, + "title": "Why Don't We Just Dance" + }, + { + "artist": "Rob Thomas", + "position": 76, + "title": "Someday" + }, + { + "artist": "Jake Owen", + "position": 77, + "title": "Eight Second Ride" + }, + { + "artist": "Maxwell", + "position": 78, + "title": "Bad Habits" + }, + { + "artist": "OneRepublic", + "position": 79, + "title": "All The Right Moves" + }, + { + "artist": "Snoop Dogg", + "position": 80, + "title": "I Wanna Rock" + }, + { + "artist": "Breaking Benjamin", + "position": 81, + "title": "I Will Not Bow" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 82, + "title": "Kings And Queens" + }, + { + "artist": "Pitbull Featuring Akon", + "position": 83, + "title": "Shut It Down" + }, + { + "artist": "Three Days Grace", + "position": 84, + "title": "Break" + }, + { + "artist": "Billy Currington", + "position": 85, + "title": "That's How Country Boys Roll" + }, + { + "artist": "Chris Young", + "position": 86, + "title": "Gettin' You Home (The Black Dress Song)" + }, + { + "artist": "Phoenix", + "position": 87, + "title": "1901" + }, + { + "artist": "Chris Brown Featuring Plies", + "position": 88, + "title": "What I Do" + }, + { + "artist": "Glee Cast", + "position": 89, + "title": "Last Christmas" + }, + { + "artist": "Brad Paisley", + "position": 90, + "title": "American Saturday Night" + }, + { + "artist": "Toby Keith", + "position": 91, + "title": "Cryin' For Me (Wayman's Song)" + }, + { + "artist": "Omarion Featuring Gucci Mane", + "position": 92, + "title": "I Get It In" + }, + { + "artist": "The Script", + "position": 93, + "title": "Breakeven" + }, + { + "artist": "Glee Cast Featuring Amber Riley", + "position": 94, + "title": "And I Am Telling You I'm Not Going" + }, + { + "artist": "Weezer", + "position": 95, + "title": "(If You're Wondering If I Want You To) I Want You To" + }, + { + "artist": "Drake Featuring Lil Wayne & Young Jeezy", + "position": 96, + "title": "I'm Going In" + }, + { + "artist": "Beyonce", + "position": 97, + "title": "Video Phone" + }, + { + "artist": "Ester Dean Featuring Chris Brown", + "position": 98, + "title": "Drop It Low" + }, + { + "artist": "Lifehouse", + "position": 99, + "title": "Halfway Gone" + }, + { + "artist": "George Strait", + "position": 100, + "title": "Twang" + } + ], + "title": "2009 - Hot 100" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Single Ladies (Put A Ring On It)" + }, + { + "artist": "T.I. Featuring Rihanna", + "position": 2, + "title": "Live Your Life" + }, + { + "artist": "T-Pain Featuring Ludacris", + "position": 3, + "title": "Chopped 'N' Skrewed" + }, + { + "artist": "Ne-Yo", + "position": 4, + "title": "Miss Independent" + }, + { + "artist": "Usher", + "position": 5, + "title": "Trading Places" + }, + { + "artist": "John Legend Featuring Andre 3000", + "position": 6, + "title": "Green Light" + }, + { + "artist": "Jazmine Sullivan", + "position": 7, + "title": "Bust Your Windows" + }, + { + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "position": 8, + "title": "Mrs. Officer" + }, + { + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "position": 9, + "title": "Pop Champagne" + }, + { + "artist": "T.I.", + "position": 10, + "title": "Whatever You Like" + }, + { + "artist": "Keyshia Cole Featuring 2Pac", + "position": 11, + "title": "Playa Cardz Right" + }, + { + "artist": "Jennifer Hudson", + "position": 12, + "title": "Spotlight" + }, + { + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "position": 13, + "title": "IfULeave" + }, + { + "artist": "T-Pain Featuring Lil Wayne", + "position": 14, + "title": "Can't Believe It" + }, + { + "artist": "Plies Featuring Chris J", + "position": 15, + "title": "Put It On Ya" + }, + { + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "position": 16, + "title": "She Got Her Own" + }, + { + "artist": "Beyonce", + "position": 17, + "title": "If I Were A Boy" + }, + { + "artist": "Ludacris Co-Starring T-Pain", + "position": 18, + "title": "One More Drink" + }, + { + "artist": "Jazmine Sullivan", + "position": 19, + "title": "Need U Bad" + }, + { + "artist": "Jamie Foxx Featuring T.I.", + "position": 20, + "title": "Just Like Me" + }, + { + "artist": "Avant", + "position": 21, + "title": "When It Hurts" + }, + { + "artist": "Kanye West", + "position": 22, + "title": "Heartless" + }, + { + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "position": 23, + "title": "Swagga Like Us" + }, + { + "artist": "Usher", + "position": 24, + "title": "Here I Stand" + }, + { + "artist": "Keyshia Cole", + "position": 25, + "title": "Heaven Sent" + } + ], + "title": "2008 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "T.I. Featuring Rihanna", + "position": 1, + "title": "Live Your Life" + }, + { + "artist": "Britney Spears", + "position": 2, + "title": "Womanizer" + }, + { + "artist": "Jason Mraz", + "position": 3, + "title": "I'm Yours" + }, + { + "artist": "Katy Perry", + "position": 4, + "title": "Hot N Cold" + }, + { + "artist": "Lady GaGa Featuring Colby O'Donis", + "position": 5, + "title": "Just Dance" + }, + { + "artist": "Pink", + "position": 6, + "title": "So What" + }, + { + "artist": "Kevin Rudolf Featuring Lil Wayne", + "position": 7, + "title": "Let It Rock" + }, + { + "artist": "T.I.", + "position": 8, + "title": "Whatever You Like" + }, + { + "artist": "Beyonce", + "position": 9, + "title": "If I Were A Boy" + }, + { + "artist": "Akon", + "position": 10, + "title": "Right Now (Na Na Na)" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Love Story" + }, + { + "artist": "Ne-Yo", + "position": 12, + "title": "Miss Independent" + }, + { + "artist": "Saving Abel", + "position": 13, + "title": "Addicted" + }, + { + "artist": "Nickelback", + "position": 14, + "title": "Gotta Be Somebody" + }, + { + "artist": "Kanye West", + "position": 15, + "title": "Love Lockdown" + }, + { + "artist": "Beyonce", + "position": 16, + "title": "Single Ladies (Put A Ring On It)" + }, + { + "artist": "Leona Lewis", + "position": 17, + "title": "Better In Time" + }, + { + "artist": "Rihanna", + "position": 18, + "title": "Rehab" + }, + { + "artist": "Rihanna", + "position": 19, + "title": "Disturbia" + }, + { + "artist": "Gavin Rossdale", + "position": 20, + "title": "Love Remains The Same" + } + ], + "title": "2008 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Montgomery Gentry", + "position": 1, + "title": "Roll With Me" + }, + { + "artist": "Rascal Flatts", + "position": 2, + "title": "Here" + }, + { + "artist": "Zac Brown Band", + "position": 3, + "title": "Chicken Fried" + }, + { + "artist": "Sugarland", + "position": 4, + "title": "Already Gone" + }, + { + "artist": "Brad Paisley Duet With Keith Urban", + "position": 5, + "title": "Start A Band" + }, + { + "artist": "Tim McGraw", + "position": 6, + "title": "Let It Go" + }, + { + "artist": "Alan Jackson", + "position": 7, + "title": "Country Boy" + }, + { + "artist": "Billy Currington", + "position": 8, + "title": "Don't" + }, + { + "artist": "Dierks Bentley", + "position": 9, + "title": "Feel That Fire" + }, + { + "artist": "Jamey Johnson", + "position": 10, + "title": "In Color" + }, + { + "artist": "Blake Shelton", + "position": 11, + "title": "She Wouldn't Be Gone" + }, + { + "artist": "Lady Antebellum", + "position": 12, + "title": "Lookin' For A Good Time" + }, + { + "artist": "Toby Keith", + "position": 13, + "title": "God Love Her" + }, + { + "artist": "Kenny Chesney With Mac McAnally", + "position": 14, + "title": "Down The Road" + }, + { + "artist": "Brooks & Dunn Featuring Reba McEntire", + "position": 15, + "title": "Cowgirls Don't Cry" + }, + { + "artist": "Keith Urban", + "position": 16, + "title": "Sweet Thing" + }, + { + "artist": "George Strait", + "position": 17, + "title": "River Of Love" + }, + { + "artist": "Randy Houser", + "position": 18, + "title": "Anything Goes" + }, + { + "artist": "Pat Green", + "position": 19, + "title": "Let Me" + }, + { + "artist": "Taylor Swift", + "position": 20, + "title": "White Horse" + }, + { + "artist": "Darius Rucker", + "position": 21, + "title": "It Won't Be Like This For Long" + }, + { + "artist": "Jake Owen", + "position": 22, + "title": "Don't Think I Can't Love You" + }, + { + "artist": "Lee Ann Womack", + "position": 23, + "title": "Last Call" + }, + { + "artist": "Jack Ingram", + "position": 24, + "title": "That's A Man" + }, + { + "artist": "Martina McBride", + "position": 25, + "title": "Ride" + } + ], + "title": "2008 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Single Ladies (Put A Ring On It)" + }, + { + "artist": "T.I. Featuring Rihanna", + "position": 2, + "title": "Live Your Life" + }, + { + "artist": "Lady GaGa Featuring Colby O'Donis", + "position": 3, + "title": "Just Dance" + }, + { + "artist": "Britney Spears", + "position": 4, + "title": "Circus" + }, + { + "artist": "T.I.", + "position": 5, + "title": "Whatever You Like" + }, + { + "artist": "Britney Spears", + "position": 6, + "title": "Womanizer" + }, + { + "artist": "Kanye West", + "position": 7, + "title": "Heartless" + }, + { + "artist": "Katy Perry", + "position": 8, + "title": "Hot N Cold" + }, + { + "artist": "Beyonce", + "position": 9, + "title": "If I Were A Boy" + }, + { + "artist": "Kanye West", + "position": 10, + "title": "Love Lockdown" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Love Story" + }, + { + "artist": "Jason Mraz", + "position": 12, + "title": "I'm Yours" + }, + { + "artist": "Kevin Rudolf Featuring Lil Wayne", + "position": 13, + "title": "Let It Rock" + }, + { + "artist": "Ne-Yo", + "position": 14, + "title": "Miss Independent" + }, + { + "artist": "Akon", + "position": 15, + "title": "Right Now (Na Na Na)" + }, + { + "artist": "Pink", + "position": 16, + "title": "So What" + }, + { + "artist": "Nickelback", + "position": 17, + "title": "Gotta Be Somebody" + }, + { + "artist": "T-Pain Featuring Lil Wayne", + "position": 18, + "title": "Can't Believe It" + }, + { + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "position": 19, + "title": "Mrs. Officer" + }, + { + "artist": "Zac Brown Band", + "position": 20, + "title": "Chicken Fried" + }, + { + "artist": "Rihanna", + "position": 21, + "title": "Rehab" + }, + { + "artist": "Rihanna", + "position": 22, + "title": "Disturbia" + }, + { + "artist": "Saving Abel", + "position": 23, + "title": "Addicted" + }, + { + "artist": "John Legend Featuring Andre 3000", + "position": 24, + "title": "Green Light" + }, + { + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "position": 25, + "title": "Pop Champagne" + }, + { + "artist": "Ludacris Co-Starring T-Pain", + "position": 26, + "title": "One More Drink" + }, + { + "artist": "T-Pain Featuring Ludacris", + "position": 27, + "title": "Chopped 'N' Skrewed" + }, + { + "artist": "Leona Lewis", + "position": 28, + "title": "Better In Time" + }, + { + "artist": "Akon Featuring Colby O'Donis & Kardinal Offishall", + "position": 29, + "title": "Beautiful" + }, + { + "artist": "The Fray", + "position": 30, + "title": "You Found Me" + }, + { + "artist": "Akon Featuring Lil Wayne & Young Jeezy", + "position": 31, + "title": "I'm So Paid" + }, + { + "artist": "Coldplay", + "position": 32, + "title": "Viva La Vida" + }, + { + "artist": "Montgomery Gentry", + "position": 33, + "title": "Roll With Me" + }, + { + "artist": "Brandy", + "position": 34, + "title": "Right Here (Departed)" + }, + { + "artist": "Gavin Rossdale", + "position": 35, + "title": "Love Remains The Same" + }, + { + "artist": "O.A.R.", + "position": 36, + "title": "Shattered (Turn The Car Around)" + }, + { + "artist": "The All-American Rejects", + "position": 37, + "title": "Gives You Hell" + }, + { + "artist": "Ne-Yo", + "position": 38, + "title": "Closer" + }, + { + "artist": "Jazmine Sullivan", + "position": 39, + "title": "Bust Your Windows" + }, + { + "artist": "The Veronicas", + "position": 40, + "title": "Untouched" + }, + { + "artist": "The Killers", + "position": 41, + "title": "Human" + }, + { + "artist": "Sugarland", + "position": 42, + "title": "Already Gone" + }, + { + "artist": "David Archuleta", + "position": 43, + "title": "Crush" + }, + { + "artist": "Secondhand Serenade", + "position": 44, + "title": "Fall For You" + }, + { + "artist": "Usher", + "position": 45, + "title": "Trading Places" + }, + { + "artist": "Paramore", + "position": 46, + "title": "Decode" + }, + { + "artist": "Jennifer Hudson", + "position": 47, + "title": "Spotlight" + }, + { + "artist": "David Cook", + "position": 48, + "title": "Light On" + }, + { + "artist": "Pink", + "position": 49, + "title": "Sober" + }, + { + "artist": "Rascal Flatts", + "position": 50, + "title": "Here" + }, + { + "artist": "Taylor Swift", + "position": 51, + "title": "White Horse" + }, + { + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "position": 52, + "title": "Swagga Like Us" + }, + { + "artist": "Jamey Johnson", + "position": 53, + "title": "In Color" + }, + { + "artist": "Blake Shelton", + "position": 54, + "title": "She Wouldn't Be Gone" + }, + { + "artist": "Brad Paisley Duet With Keith Urban", + "position": 55, + "title": "Start A Band" + }, + { + "artist": "Dierks Bentley", + "position": 56, + "title": "Feel That Fire" + }, + { + "artist": "Alan Jackson", + "position": 57, + "title": "Country Boy" + }, + { + "artist": "The Pussycat Dolls", + "position": 58, + "title": "I Hate This Part" + }, + { + "artist": "Christina Aguilera", + "position": 59, + "title": "Keeps Gettin' Better" + }, + { + "artist": "Brooks & Dunn Featuring Reba McEntire", + "position": 60, + "title": "Cowgirls Don't Cry" + }, + { + "artist": "Carrie Underwood", + "position": 61, + "title": "Just A Dream" + }, + { + "artist": "Fall Out Boy", + "position": 62, + "title": "I Don't Care" + }, + { + "artist": "Billy Currington", + "position": 63, + "title": "Don't" + }, + { + "artist": "The Game Featuring Lil Wayne", + "position": 64, + "title": "My Life" + }, + { + "artist": "Plies Featuring Chris J", + "position": 65, + "title": "Put It On Ya" + }, + { + "artist": "Toby Keith", + "position": 66, + "title": "God Love Her" + }, + { + "artist": "Keyshia Cole Featuring 2Pac", + "position": 67, + "title": "Playa Cardz Right" + }, + { + "artist": "Tim McGraw", + "position": 68, + "title": "Let It Go" + }, + { + "artist": "Savage Featuring Soulja Boy Tell'em", + "position": 69, + "title": "Swing" + }, + { + "artist": "Lady Antebellum", + "position": 70, + "title": "Lookin' For A Good Time" + }, + { + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "position": 71, + "title": "IfULeave" + }, + { + "artist": "Kings Of Leon", + "position": 72, + "title": "Sex On Fire" + }, + { + "artist": "Common Featuring Pharrell", + "position": 73, + "title": "Universal Mind Control" + }, + { + "artist": "Keith Urban", + "position": 74, + "title": "Sweet Thing" + }, + { + "artist": "Jamie Foxx Featuring T.I.", + "position": 75, + "title": "Just Like Me" + }, + { + "artist": "Shinedown", + "position": 76, + "title": "Second Chance" + }, + { + "artist": "The Offspring", + "position": 77, + "title": "You're Gonna Go Far, Kid" + }, + { + "artist": "Kenny Chesney With Mac McAnally", + "position": 78, + "title": "Down The Road" + }, + { + "artist": "Ne-Yo", + "position": 79, + "title": "Mad" + }, + { + "artist": "Shontelle", + "position": 80, + "title": "T-Shirt" + }, + { + "artist": "Matt Nathanson", + "position": 81, + "title": "Come On Get Higher" + }, + { + "artist": "Metro Station", + "position": 82, + "title": "Seventeen Forever" + }, + { + "artist": "Pitbull Featuring Lil Jon", + "position": 83, + "title": "Krazy" + }, + { + "artist": "Apocalyptica Featuring Adam Gontier", + "position": 84, + "title": "I Don't Care" + }, + { + "artist": "Daughtry", + "position": 85, + "title": "What About Now" + }, + { + "artist": "Busta Rhymes", + "position": 86, + "title": "Arab Money" + }, + { + "artist": "George Strait", + "position": 87, + "title": "River Of Love" + }, + { + "artist": "Kenny Chesney With The Wailers", + "position": 88, + "title": "Everybody Wants To Go To Heaven" + }, + { + "artist": "Lifehouse", + "position": 89, + "title": "Broken" + }, + { + "artist": "Hinder", + "position": 90, + "title": "Without You" + }, + { + "artist": "Avant", + "position": 91, + "title": "When It Hurts" + }, + { + "artist": "Randy Houser", + "position": 92, + "title": "Anything Goes" + }, + { + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "position": 93, + "title": "She Got Her Own" + }, + { + "artist": "50 Cent", + "position": 94, + "title": "Get Up" + }, + { + "artist": "Theory Of A Deadman", + "position": 95, + "title": "Bad Girlfriend" + }, + { + "artist": "Adele", + "position": 96, + "title": "Chasing Pavements" + }, + { + "artist": "Craig Morgan", + "position": 97, + "title": "Love Remembers" + }, + { + "artist": "Kanye West Featuring Lil Wayne", + "position": 98, + "title": "See You In My Nightmares" + }, + { + "artist": "T.I. Featuring Justin Timberlake", + "position": 99, + "title": "Dead And Gone" + }, + { + "artist": "Luis Fonsi", + "position": 100, + "title": "No Me Doy Por Vencido" + } + ], + "title": "2008 - Hot 100" + }, + { + "songs": [ + { + "artist": "Timbaland Featuring OneRepublic", + "position": 1, + "title": "Apologize" + }, + { + "artist": "Alicia Keys", + "position": 2, + "title": "No One" + }, + { + "artist": "Fergie", + "position": 3, + "title": "Clumsy" + }, + { + "artist": "Colbie Caillat", + "position": 4, + "title": "Bubbly" + }, + { + "artist": "Rihanna Featuring Ne-Yo", + "position": 5, + "title": "Hate That I Love You" + }, + { + "artist": "Chris Brown Featuring T-Pain", + "position": 6, + "title": "Kiss Kiss" + }, + { + "artist": "Finger Eleven", + "position": 7, + "title": "Paralyzer" + }, + { + "artist": "Jordin Sparks", + "position": 8, + "title": "Tattoo" + }, + { + "artist": "Flo Rida Featuring T-Pain", + "position": 9, + "title": "Low" + }, + { + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "position": 10, + "title": "Love Like This" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Teardrops On My Guitar" + }, + { + "artist": "Daughtry", + "position": 12, + "title": "Over You" + }, + { + "artist": "Baby Bash Featuring T-Pain", + "position": 13, + "title": "Cyclone" + }, + { + "artist": "Kanye West", + "position": 14, + "title": "Stronger" + }, + { + "artist": "Timbaland Featuring Keri Hilson", + "position": 15, + "title": "The Way I Are" + }, + { + "artist": "Good Charlotte", + "position": 16, + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)" + }, + { + "artist": "Paramore", + "position": 17, + "title": "Misery Business" + }, + { + "artist": "matchbox twenty", + "position": 18, + "title": "How Far We've Come" + }, + { + "artist": "Kanye West Featuring T-Pain", + "position": 19, + "title": "Good Life" + }, + { + "artist": "Sean Kingston", + "position": 20, + "title": "Take You There" + } + ], + "title": "2007 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Taylor Swift", + "position": 1, + "title": "Our Song" + }, + { + "artist": "Josh Turner", + "position": 2, + "title": "Firecracker" + }, + { + "artist": "George Strait", + "position": 3, + "title": "How 'Bout Them Cowgirls" + }, + { + "artist": "Montgomery Gentry", + "position": 4, + "title": "What Do Ya Think About That" + }, + { + "artist": "Sugarland", + "position": 5, + "title": "Stay" + }, + { + "artist": "Kenny Chesney", + "position": 6, + "title": "Don't Blink" + }, + { + "artist": "Rascal Flatts", + "position": 7, + "title": "Winner At A Losing Game" + }, + { + "artist": "Keith Urban", + "position": 8, + "title": "Everybody" + }, + { + "artist": "Brad Paisley", + "position": 9, + "title": "Letter To Me" + }, + { + "artist": "Gary Allan", + "position": 10, + "title": "Watching Airplanes" + }, + { + "artist": "Carrie Underwood", + "position": 11, + "title": "So Small" + }, + { + "artist": "Garth Brooks", + "position": 12, + "title": "More Than A Memory" + }, + { + "artist": "Billy Ray Cyrus With Miley Cyrus", + "position": 13, + "title": "Ready, Set, Don't Go" + }, + { + "artist": "Rodney Atkins", + "position": 14, + "title": "Cleaning This Gun (Come On In Boy)" + }, + { + "artist": "Chuck Wicks", + "position": 15, + "title": "Stealing Cinderella" + }, + { + "artist": "Toby Keith", + "position": 16, + "title": "Get My Drink On" + }, + { + "artist": "Craig Morgan", + "position": 17, + "title": "International Harvester" + }, + { + "artist": "Alan Jackson", + "position": 18, + "title": "Small Town Southern Man" + }, + { + "artist": "Blake Shelton", + "position": 19, + "title": "The More I Drink" + }, + { + "artist": "Chris Cagle", + "position": 20, + "title": "What Kinda Gone" + }, + { + "artist": "Brooks & Dunn", + "position": 21, + "title": "God Must Be Busy" + }, + { + "artist": "Tim McGraw", + "position": 22, + "title": "Suspicions" + }, + { + "artist": "Eagles", + "position": 23, + "title": "How Long" + }, + { + "artist": "Jason Aldean", + "position": 24, + "title": "Laughed Until We Cried" + }, + { + "artist": "Kenny Chesney", + "position": 25, + "title": "Shiftwork" + } + ], + "title": "2007 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Alicia Keys", + "position": 1, + "title": "No One" + }, + { + "artist": "Flo Rida Featuring T-Pain", + "position": 2, + "title": "Low" + }, + { + "artist": "Timbaland Featuring OneRepublic", + "position": 3, + "title": "Apologize" + }, + { + "artist": "Chris Brown Featuring T-Pain", + "position": 4, + "title": "Kiss Kiss" + }, + { + "artist": "Fergie", + "position": 5, + "title": "Clumsy" + }, + { + "artist": "Colbie Caillat", + "position": 6, + "title": "Bubbly" + }, + { + "artist": "Finger Eleven", + "position": 7, + "title": "Paralyzer" + }, + { + "artist": "Jordin Sparks", + "position": 8, + "title": "Tattoo" + }, + { + "artist": "Rihanna Featuring Ne-Yo", + "position": 9, + "title": "Hate That I Love You" + }, + { + "artist": "Kanye West Featuring T-Pain", + "position": 10, + "title": "Good Life" + }, + { + "artist": "Soulja Boy Tell'em", + "position": 11, + "title": "Crank That (Soulja Boy)" + }, + { + "artist": "Baby Bash Featuring T-Pain", + "position": 12, + "title": "Cyclone" + }, + { + "artist": "Alicia Keys", + "position": 13, + "title": "Like You'll Never See Me Again" + }, + { + "artist": "Plies Featuring Akon", + "position": 14, + "title": "Hypnotized" + }, + { + "artist": "Trey Songz", + "position": 15, + "title": "Can't Help But Wait" + }, + { + "artist": "Sara Bareilles", + "position": 16, + "title": "Love Song" + }, + { + "artist": "Kanye West", + "position": 17, + "title": "Stronger" + }, + { + "artist": "Sean Kingston", + "position": 18, + "title": "Take You There" + }, + { + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "position": 19, + "title": "Love Like This" + }, + { + "artist": "Timbaland Featuring Keri Hilson", + "position": 20, + "title": "The Way I Are" + }, + { + "artist": "Taylor Swift", + "position": 21, + "title": "Our Song" + }, + { + "artist": "Playaz Circle Featuring Lil Wayne", + "position": 22, + "title": "Duffle Bag Boy" + }, + { + "artist": "Wyclef Jean Featuring Akon, Lil Wayne & Niia", + "position": 23, + "title": "Sweetest Girl (Dollar Bill)" + }, + { + "artist": "Taylor Swift", + "position": 24, + "title": "Teardrops On My Guitar" + }, + { + "artist": "Chris Brown", + "position": 25, + "title": "With You" + }, + { + "artist": "Mary J. Blige", + "position": 26, + "title": "Just Fine" + }, + { + "artist": "matchbox twenty", + "position": 27, + "title": "How Far We've Come" + }, + { + "artist": "DJ Khaled Featuring T-Pain, Trick Daddy, Rick Ross & Plies", + "position": 28, + "title": "I'm So Hood" + }, + { + "artist": "Linkin Park", + "position": 29, + "title": "Shadow Of The Day" + }, + { + "artist": "Santana Featuring Chad Kroeger", + "position": 30, + "title": "Into The Night" + }, + { + "artist": "Daughtry", + "position": 31, + "title": "Over You" + }, + { + "artist": "The-Dream", + "position": 32, + "title": "Shawty Is A 10" + }, + { + "artist": "Bow Wow & Omarion", + "position": 33, + "title": "Girlfriend" + }, + { + "artist": "Good Charlotte", + "position": 34, + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)" + }, + { + "artist": "Paramore", + "position": 35, + "title": "Misery Business" + }, + { + "artist": "Fergie", + "position": 36, + "title": "Big Girls Don't Cry" + }, + { + "artist": "Snoop Dogg", + "position": 37, + "title": "Sensual Seduction" + }, + { + "artist": "Justin Timberlake Duet With Beyonce", + "position": 38, + "title": "Until The End Of Time" + }, + { + "artist": "Kanye West Featuring Dwele", + "position": 39, + "title": "Flashing Lights" + }, + { + "artist": "Sugarland", + "position": 40, + "title": "Stay" + }, + { + "artist": "J. Holiday", + "position": 41, + "title": "Suffocate" + }, + { + "artist": "Maroon 5", + "position": 42, + "title": "Wake Up Call" + }, + { + "artist": "J. Holiday", + "position": 43, + "title": "Bed" + }, + { + "artist": "Pink", + "position": 44, + "title": "Who Knew" + }, + { + "artist": "Britney Spears", + "position": 45, + "title": "Piece Of Me" + }, + { + "artist": "Birdman Featuring Lil Wayne", + "position": 46, + "title": "Pop Bottles" + }, + { + "artist": "Rihanna", + "position": 47, + "title": "Don't Stop The Music" + }, + { + "artist": "Kenny Chesney", + "position": 48, + "title": "Don't Blink" + }, + { + "artist": "Nickelback", + "position": 49, + "title": "Rockstar" + }, + { + "artist": "Keyshia Cole Introducing Amina", + "position": 50, + "title": "Shoulda Let You Go" + }, + { + "artist": "DJ Felli Fel Featuring Diddy, Akon, Ludacris & Lil Jon", + "position": 51, + "title": "Get Buck In Here" + }, + { + "artist": "Soulja Boy Tell'em Featuring I-15", + "position": 52, + "title": "Soulja Girl" + }, + { + "artist": "Josh Turner", + "position": 53, + "title": "Firecracker" + }, + { + "artist": "50 Cent Featuring Justin Timberlake & Timbaland", + "position": 54, + "title": "Ayo Technology" + }, + { + "artist": "Cassidy Featuring Swizz Beatz", + "position": 55, + "title": "My Drink N' My 2 Step" + }, + { + "artist": "George Strait", + "position": 56, + "title": "How 'Bout Them Cowgirls" + }, + { + "artist": "Carrie Underwood", + "position": 57, + "title": "So Small" + }, + { + "artist": "Billy Ray Cyrus With Miley Cyrus", + "position": 58, + "title": "Ready, Set, Don't Go" + }, + { + "artist": "Buckcherry", + "position": 59, + "title": "Sorry" + }, + { + "artist": "Foo Fighters", + "position": 60, + "title": "The Pretender" + }, + { + "artist": "Seether", + "position": 61, + "title": "Fake It" + }, + { + "artist": "Montgomery Gentry", + "position": 62, + "title": "What Do Ya Think About That" + }, + { + "artist": "Jack Johnson", + "position": 63, + "title": "If I Had Eyes" + }, + { + "artist": "Webbie, Lil' Phat & Lil' Boosie", + "position": 64, + "title": "Independent" + }, + { + "artist": "Brad Paisley", + "position": 65, + "title": "Letter To Me" + }, + { + "artist": "Rascal Flatts", + "position": 66, + "title": "Winner At A Losing Game" + }, + { + "artist": "Fabolous Featuring Jermaine Dupri", + "position": 67, + "title": "Baby Don't Go" + }, + { + "artist": "Enur Featuring Natasja", + "position": 68, + "title": "Calabria 2008" + }, + { + "artist": "Britney Spears", + "position": 69, + "title": "Gimme More" + }, + { + "artist": "Feist", + "position": 70, + "title": "1234" + }, + { + "artist": "Keith Urban", + "position": 71, + "title": "Everybody" + }, + { + "artist": "Three Days Grace", + "position": 72, + "title": "Never Too Late" + }, + { + "artist": "Gary Allan", + "position": 73, + "title": "Watching Airplanes" + }, + { + "artist": "Chris Brown", + "position": 74, + "title": "This Christmas" + }, + { + "artist": "Mario", + "position": 75, + "title": "Crying Out For Me" + }, + { + "artist": "Lupe Fiasco Featuring Matthew Santos", + "position": 76, + "title": "Superstar" + }, + { + "artist": "Gucci Mane", + "position": 77, + "title": "Freaky Gurl" + }, + { + "artist": "Miley Cyrus", + "position": 78, + "title": "See You Again" + }, + { + "artist": "Boys Like Girls", + "position": 79, + "title": "Hero/Heroine" + }, + { + "artist": "Keyshia Cole", + "position": 80, + "title": "I Remember" + }, + { + "artist": "Clay Walker", + "position": 81, + "title": "Fall" + }, + { + "artist": "Linkin Park", + "position": 82, + "title": "Bleed It Out" + }, + { + "artist": "The Last Goodnight", + "position": 83, + "title": "Pictures Of You" + }, + { + "artist": "Maroon 5", + "position": 84, + "title": "Won't Go Home Without You" + }, + { + "artist": "LeAnn Rimes", + "position": 85, + "title": "Nothin' Better To Do" + }, + { + "artist": "Jay-Z", + "position": 86, + "title": "Roc Boys (And The Winner Is)..." + }, + { + "artist": "Sara Evans", + "position": 87, + "title": "As If" + }, + { + "artist": "Ingrid Michaelson", + "position": 88, + "title": "The Way I Am" + }, + { + "artist": "Rodney Atkins", + "position": 89, + "title": "Cleaning This Gun (Come On In Boy)" + }, + { + "artist": "Garth Brooks", + "position": 90, + "title": "More Than A Memory" + }, + { + "artist": "Jonas Brothers", + "position": 91, + "title": "S.O.S." + }, + { + "artist": "Jason Michael Carroll", + "position": 92, + "title": "Livin' Our Love Song" + }, + { + "artist": "Paramore", + "position": 93, + "title": "Crushcrushcrush" + }, + { + "artist": "Chuck Wicks", + "position": 94, + "title": "Stealing Cinderella" + }, + { + "artist": "Dierks Bentley", + "position": 95, + "title": "Free And Easy (Down The Road I Go)" + }, + { + "artist": "Craig Morgan", + "position": 96, + "title": "International Harvester" + }, + { + "artist": "Juanes", + "position": 97, + "title": "Me Enamora" + }, + { + "artist": "OneRepublic", + "position": 98, + "title": "Stop And Stare" + }, + { + "artist": "Colbie Caillat", + "position": 99, + "title": "Mistletoe" + }, + { + "artist": "Mary J. Blige", + "position": 100, + "title": "Work That" + } + ], + "title": "2007 - Hot 100" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Irreplaceable" + }, + { + "artist": "Justin Timberlake Featuring T.I.", + "position": 2, + "title": "My Love" + }, + { + "artist": "The Fray", + "position": 3, + "title": "How To Save A Life" + }, + { + "artist": "Akon Featuring Eminem", + "position": 4, + "title": "Smack That" + }, + { + "artist": "Fergie", + "position": 5, + "title": "Fergalicious" + }, + { + "artist": "Hinder", + "position": 6, + "title": "Lips Of An Angel" + }, + { + "artist": "Nickelback", + "position": 7, + "title": "Far Away" + }, + { + "artist": "Akon Featuring Snoop Dogg", + "position": 8, + "title": "I Wanna Love You" + }, + { + "artist": "Paula DeAnda Featuring The DEY", + "position": 9, + "title": "Walk Away (Remember Me)" + }, + { + "artist": "Christina Aguilera", + "position": 10, + "title": "Hurt" + }, + { + "artist": "Ludacris Featuring Pharrell", + "position": 11, + "title": "Money Maker" + }, + { + "artist": "Nelly Furtado", + "position": 12, + "title": "Say It Right" + }, + { + "artist": "Evanescence", + "position": 13, + "title": "Call Me When You're Sober" + }, + { + "artist": "JoJo", + "position": 14, + "title": "Too Little Too Late" + }, + { + "artist": "The All-American Rejects", + "position": 15, + "title": "It Ends Tonight" + }, + { + "artist": "Rihanna & Sean Paul", + "position": 16, + "title": "Break It Off" + }, + { + "artist": "John Mayer", + "position": 17, + "title": "Waiting On The World To Change" + }, + { + "artist": "Vanessa Hudgens", + "position": 18, + "title": "Come Back To Me" + }, + { + "artist": "Justin Timberlake", + "position": 19, + "title": "SexyBack" + }, + { + "artist": "Snow Patrol", + "position": 20, + "title": "Chasing Cars" + } + ], + "title": "2006 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Sugarland", + "position": 1, + "title": "Want To" + }, + { + "artist": "Rascal Flatts", + "position": 2, + "title": "My Wish" + }, + { + "artist": "Tim McGraw", + "position": 3, + "title": "My Little Girl" + }, + { + "artist": "Brad Paisley", + "position": 4, + "title": "She's Everything" + }, + { + "artist": "Rodney Atkins", + "position": 5, + "title": "Watching You" + }, + { + "artist": "Carrie Underwood", + "position": 6, + "title": "Before He Cheats" + }, + { + "artist": "George Strait", + "position": 7, + "title": "It Just Comes Natural" + }, + { + "artist": "Montgomery Gentry", + "position": 8, + "title": "Some People Change" + }, + { + "artist": "Taylor Swift", + "position": 9, + "title": "Tim McGraw" + }, + { + "artist": "Jason Aldean", + "position": 10, + "title": "Amarillo Sky" + }, + { + "artist": "Kenny Chesney", + "position": 11, + "title": "You Save Me" + }, + { + "artist": "Jason Michael Carroll", + "position": 12, + "title": "Alyssa Lies" + }, + { + "artist": "The Wreckers", + "position": 13, + "title": "My, Oh My" + }, + { + "artist": "Trent Tomlinson", + "position": 14, + "title": "One Wing In The Fire" + }, + { + "artist": "Craig Morgan", + "position": 15, + "title": "Little Bit Of Life" + }, + { + "artist": "Keith Urban", + "position": 16, + "title": "Stupid Boy" + }, + { + "artist": "Trace Adkins", + "position": 17, + "title": "Ladies Love Country Boys" + }, + { + "artist": "Martina McBride", + "position": 18, + "title": "Anyway" + }, + { + "artist": "Joe Nichols", + "position": 19, + "title": "I'll Wait For you" + }, + { + "artist": "Kellie Pickler", + "position": 20, + "title": "Red High Heels" + }, + { + "artist": "Sara Evans", + "position": 21, + "title": "You'll Always Be My Baby" + }, + { + "artist": "Phil Vassar", + "position": 22, + "title": "The Woman In My Life" + }, + { + "artist": "Darryl Worley", + "position": 23, + "title": "I Just Came Back From A War" + }, + { + "artist": "Little Big Town", + "position": 24, + "title": "Good As Gone" + }, + { + "artist": "Gary Allan", + "position": 25, + "title": "A Feelin' Like That" + } + ], + "title": "2006 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Irreplaceable" + }, + { + "artist": "Akon Featuring Snoop Dogg", + "position": 2, + "title": "I Wanna Love You" + }, + { + "artist": "Akon Featuring Eminem", + "position": 3, + "title": "Smack That" + }, + { + "artist": "Fergie", + "position": 4, + "title": "Fergalicious" + }, + { + "artist": "Justin Timberlake Featuring T.I.", + "position": 5, + "title": "My Love" + }, + { + "artist": "Nelly Furtado", + "position": 6, + "title": "Say It Right" + }, + { + "artist": "Jim Jones", + "position": 7, + "title": "We Fly High" + }, + { + "artist": "The Fray", + "position": 8, + "title": "How To Save A Life" + }, + { + "artist": "Bow Wow Featuring Chris Brown & Johnta Austin", + "position": 9, + "title": "Shortie Like Mine" + }, + { + "artist": "Hinder", + "position": 10, + "title": "Lips Of An Angel" + }, + { + "artist": "Ciara", + "position": 11, + "title": "Promise" + }, + { + "artist": "Gwen Stefani", + "position": 12, + "title": "Wind It Up" + }, + { + "artist": "Unk", + "position": 13, + "title": "Walk It Out" + }, + { + "artist": "Young Jeezy", + "position": 14, + "title": "I Luv It" + }, + { + "artist": "Ludacris Featuring Pharrell", + "position": 15, + "title": "Money Maker" + }, + { + "artist": "Justin Timberlake", + "position": 16, + "title": "SexyBack" + }, + { + "artist": "Snow Patrol", + "position": 17, + "title": "Chasing Cars" + }, + { + "artist": "The All-American Rejects", + "position": 18, + "title": "It Ends Tonight" + }, + { + "artist": "Avril Lavigne", + "position": 19, + "title": "Keep Holding On" + }, + { + "artist": "Nickelback", + "position": 20, + "title": "Far Away" + }, + { + "artist": "Christina Aguilera", + "position": 21, + "title": "Hurt" + }, + { + "artist": "Paula DeAnda Featuring The DEY", + "position": 22, + "title": "Walk Away (Remember Me)" + }, + { + "artist": "Carrie Underwood", + "position": 23, + "title": "Before He Cheats" + }, + { + "artist": "Snoop Dogg Featuring R. Kelly", + "position": 24, + "title": "That's That" + }, + { + "artist": "Eminem, 50 Cent, Lloyd Banks & Cashis", + "position": 25, + "title": "You Don't Know" + }, + { + "artist": "Lloyd Featuring Lil' Wayne", + "position": 26, + "title": "You" + }, + { + "artist": "My Chemical Romance", + "position": 27, + "title": "Welcome To The Black Parade" + }, + { + "artist": "Chris Brown", + "position": 28, + "title": "Say Goodbye" + }, + { + "artist": "John Mayer", + "position": 29, + "title": "Waiting On The World To Change" + }, + { + "artist": "Fat Joe Featuring Lil Wayne", + "position": 30, + "title": "Make It Rain" + }, + { + "artist": "Ludacris Featuring Mary J. Blige", + "position": 31, + "title": "Runaway Love" + }, + { + "artist": "Lil Scrappy Featuring Young Buck", + "position": 32, + "title": "Money In The Bank" + }, + { + "artist": "Rascal Flatts", + "position": 33, + "title": "My Wish" + }, + { + "artist": "Evanescence", + "position": 34, + "title": "Call Me When You're Sober" + }, + { + "artist": "JoJo", + "position": 35, + "title": "Too Little Too Late" + }, + { + "artist": "Brad Paisley", + "position": 36, + "title": "She's Everything" + }, + { + "artist": "The Pussycat Dolls Featuring Timbaland", + "position": 37, + "title": "Wait A Minute" + }, + { + "artist": "Justin Timberlake", + "position": 38, + "title": "What Goes Around..." + }, + { + "artist": "Sugarland", + "position": 39, + "title": "Want To" + }, + { + "artist": "Rodney Atkins", + "position": 40, + "title": "Watching You" + }, + { + "artist": "Stone Sour", + "position": 41, + "title": "Through Glass" + }, + { + "artist": "Birdman & Lil Wayne", + "position": 42, + "title": "Stuntin' Like My Daddy" + }, + { + "artist": "Tim McGraw", + "position": 43, + "title": "My Little Girl" + }, + { + "artist": "Daughtry", + "position": 44, + "title": "It's Not Over" + }, + { + "artist": "Taylor Swift", + "position": 45, + "title": "Tim McGraw" + }, + { + "artist": "Rascal Flatts", + "position": 46, + "title": "What Hurts The Most" + }, + { + "artist": "Diddy Featuring Christina Aguilera", + "position": 47, + "title": "Tell Me" + }, + { + "artist": "Diddy Featuring Nicole Scherzinger", + "position": 48, + "title": "Come To Me" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 49, + "title": "Snow ((Hey Oh))" + }, + { + "artist": "The Fray", + "position": 50, + "title": "Happy Xmas (War Is Over)" + }, + { + "artist": "Cherish", + "position": 51, + "title": "Unappreciated" + }, + { + "artist": "Jay-Z", + "position": 52, + "title": "Show Me What You Got" + }, + { + "artist": "Danity Kane", + "position": 53, + "title": "Show Stopper" + }, + { + "artist": "Rihanna & Sean Paul", + "position": 54, + "title": "Break It Off" + }, + { + "artist": "Weird Al Yankovic", + "position": 55, + "title": "White & Nerdy" + }, + { + "artist": "Nas Featuring will.i.am", + "position": 56, + "title": "Hip Hop Is Dead" + }, + { + "artist": "Omarion", + "position": 57, + "title": "Ice Box" + }, + { + "artist": "George Strait", + "position": 58, + "title": "It Just Comes Natural" + }, + { + "artist": "The Killers", + "position": 59, + "title": "When You Were Young" + }, + { + "artist": "Jay-Z Featuring Chrisette Michele", + "position": 60, + "title": "Lost One" + }, + { + "artist": "Nelly Furtado", + "position": 61, + "title": "Maneater" + }, + { + "artist": "OK Go", + "position": 62, + "title": "Here It Goes Again" + }, + { + "artist": "Hellogoodbye", + "position": 63, + "title": "Here (In Your Arms)" + }, + { + "artist": "Chris Brown Featuring Jay Biz", + "position": 64, + "title": "Poppin'" + }, + { + "artist": "Jason Aldean", + "position": 65, + "title": "Amarillo Sky" + }, + { + "artist": "Blue October", + "position": 66, + "title": "Into The Ocean" + }, + { + "artist": "Montgomery Gentry", + "position": 67, + "title": "Some People Change" + }, + { + "artist": "Kenny Chesney", + "position": 68, + "title": "You Save Me" + }, + { + "artist": "Augustana", + "position": 69, + "title": "Boston" + }, + { + "artist": "Lil' Boosie Featuring Yung Joc", + "position": 70, + "title": "Zoom" + }, + { + "artist": "Sarah McLachlan", + "position": 71, + "title": "River" + }, + { + "artist": "Nickelback", + "position": 72, + "title": "Rockstar" + }, + { + "artist": "Rob Thomas", + "position": 73, + "title": "Streetcorner Symphony" + }, + { + "artist": "Beyonce Featuring Jay-Z", + "position": 74, + "title": "Upgrade U" + }, + { + "artist": "U2 & Green Day", + "position": 75, + "title": "The Saints Are Coming" + }, + { + "artist": "Mary J. Blige", + "position": 76, + "title": "Take Me As I Am" + }, + { + "artist": "Incubus", + "position": 77, + "title": "Anna-Molly" + }, + { + "artist": "The Red Jumpsuit Apparatus", + "position": 78, + "title": "Face Down" + }, + { + "artist": "Vanessa Hudgens", + "position": 79, + "title": "Come Back To Me" + }, + { + "artist": "Three Days Grace", + "position": 80, + "title": "Pain" + }, + { + "artist": "Fall Out Boy", + "position": 81, + "title": "The Carpal Tunnel Of Love" + }, + { + "artist": "Keith Urban", + "position": 82, + "title": "Stupid Boy" + }, + { + "artist": "T.I.", + "position": 83, + "title": "Top Back" + }, + { + "artist": "Jibbs", + "position": 84, + "title": "Chain Hang Low" + }, + { + "artist": "Chingy Featuring Jermaine Dupri", + "position": 85, + "title": "Dem Jeans" + }, + { + "artist": "Rich Boy Featuring Polow Da Don", + "position": 86, + "title": "Throw Some D's" + }, + { + "artist": "Heartland", + "position": 87, + "title": "I Loved Her First" + }, + { + "artist": "AFI", + "position": 88, + "title": "Love Like Winter" + }, + { + "artist": "The Game", + "position": 89, + "title": "Let's Ride" + }, + { + "artist": "Trace Adkins", + "position": 90, + "title": "Ladies Love Country Boys" + }, + { + "artist": "Robin Thicke", + "position": 91, + "title": "Lost Without U" + }, + { + "artist": "Mat Kearney", + "position": 92, + "title": "Nothing Left To Lose" + }, + { + "artist": "Gwen Stefani Featuring Akon", + "position": 93, + "title": "The Sweet Escape" + }, + { + "artist": "Kellie Pickler", + "position": 94, + "title": "Red High Heels" + }, + { + "artist": "Josh Groban", + "position": 95, + "title": "I'll Be Home For Christmas" + }, + { + "artist": "Pitbull", + "position": 96, + "title": "Ay Chico (Lengua Afuera)" + }, + { + "artist": "Craig Morgan", + "position": 97, + "title": "Little Bit Of Life" + }, + { + "artist": "Regina Spektor", + "position": 98, + "title": "Fidelity" + }, + { + "artist": "Trent Tomlinson", + "position": 99, + "title": "One Wing In The Fire" + }, + { + "artist": "Baby Boy Da Prince Featuring Lil Boosie", + "position": 100, + "title": "The Way I Live" + } + ], + "title": "2006 - Hot 100" + }, + { + "songs": [ + { + "artist": "Mariah Carey", + "position": 1, + "title": "Don't Forget About Us" + }, + { + "artist": "Mary J. Blige", + "position": 2, + "title": "Be Without You" + }, + { + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "position": 3, + "title": "I Think They Like Me" + }, + { + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "position": 4, + "title": "Grillz" + }, + { + "artist": "Ray J", + "position": 5, + "title": "One Wish" + }, + { + "artist": "Chris Brown", + "position": 6, + "title": "Run It!" + }, + { + "artist": "Keyshia Cole", + "position": 7, + "title": "I Should Have Cheated" + }, + { + "artist": "Juelz Santana", + "position": 8, + "title": "There It Go! (The Whistle Song)" + }, + { + "artist": "Jamie Foxx Featuring Ludacris", + "position": 9, + "title": "Unpredictable" + }, + { + "artist": "Alicia Keys", + "position": 10, + "title": "Unbreakable" + }, + { + "artist": "Purple Ribbon All-Stars", + "position": 11, + "title": "Kryptonite (I'm On It)" + }, + { + "artist": "Twista Featuring Trey Songz", + "position": 12, + "title": "Girl Tonite" + }, + { + "artist": "Trina Featuring Kelly Rowland", + "position": 13, + "title": "Here We Go" + }, + { + "artist": "Ne-Yo", + "position": 14, + "title": "So Sick" + }, + { + "artist": "Young Jeezy Featuring Akon", + "position": 15, + "title": "Soul Survivor" + }, + { + "artist": "Lil' Wayne", + "position": 16, + "title": "Fireman" + }, + { + "artist": "Kanye West Featuring Adam Levine", + "position": 17, + "title": "Heard 'Em Say" + }, + { + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "position": 18, + "title": "Stay Fly" + }, + { + "artist": "Trey Songz", + "position": 19, + "title": "Gotta Go" + }, + { + "artist": "T-Pain", + "position": 20, + "title": "I'm Sprung" + }, + { + "artist": "Beyonce Featuring Slim Thug", + "position": 21, + "title": "Check On It" + }, + { + "artist": "Lyfe Jennings", + "position": 22, + "title": "Must Be Nice" + }, + { + "artist": "D4L", + "position": 23, + "title": "Laffy Taffy" + }, + { + "artist": "Kirk Franklin", + "position": 24, + "title": "Looking For You" + }, + { + "artist": "50 Cent", + "position": 25, + "title": "Window Shopper" + } + ], + "title": "2005 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Chris Brown", + "position": 1, + "title": "Run It!" + }, + { + "artist": "The Pussycat Dolls", + "position": 2, + "title": "Stickwitu" + }, + { + "artist": "Kelly Clarkson", + "position": 3, + "title": "Because Of You" + }, + { + "artist": "Mariah Carey", + "position": 4, + "title": "Don't Forget About Us" + }, + { + "artist": "Nickelback", + "position": 5, + "title": "Photograph" + }, + { + "artist": "Kanye West Featuring Jamie Foxx", + "position": 6, + "title": "Gold Digger" + }, + { + "artist": "Beyonce Featuring Slim Thug", + "position": 7, + "title": "Check On It" + }, + { + "artist": "Fall Out Boy", + "position": 8, + "title": "Sugar, We're Goin' Down" + }, + { + "artist": "The All-American Rejects", + "position": 9, + "title": "Dirty Little Secret" + }, + { + "artist": "The Black Eyed Peas", + "position": 10, + "title": "My Humps" + }, + { + "artist": "Gwen Stefani", + "position": 11, + "title": "Luxurious" + }, + { + "artist": "Rihanna", + "position": 12, + "title": "If It's Lovin' That You Want" + }, + { + "artist": "Eminem", + "position": 13, + "title": "When I'm Gone" + }, + { + "artist": "Young Jeezy Featuring Akon", + "position": 14, + "title": "Soul Survivor" + }, + { + "artist": "D4L", + "position": 15, + "title": "Laffy Taffy" + }, + { + "artist": "Sean Paul", + "position": 16, + "title": "We Be Burnin'" + }, + { + "artist": "T-Pain", + "position": 17, + "title": "I'm Sprung" + }, + { + "artist": "Fall Out Boy", + "position": 18, + "title": "Dance, Dance" + }, + { + "artist": "Lifehouse", + "position": 19, + "title": "You And Me" + }, + { + "artist": "Weezer", + "position": 20, + "title": "Beverly Hills" + } + ], + "title": "2005 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Billy Currington", + "position": 1, + "title": "Must Be Doin' Somethin' Right" + }, + { + "artist": "George Strait", + "position": 2, + "title": "She Let Herself Go" + }, + { + "artist": "Garth Brooks", + "position": 3, + "title": "Good Ride Cowboy" + }, + { + "artist": "Dierks Bentley", + "position": 4, + "title": "Come A Little Closer" + }, + { + "artist": "Carrie Underwood", + "position": 5, + "title": "Jesus, Take The Wheel" + }, + { + "artist": "Joe Nichols", + "position": 6, + "title": "Tequila Makes Her Clothes Fall Off" + }, + { + "artist": "Kenny Chesney", + "position": 7, + "title": "Who You'd Be Today" + }, + { + "artist": "Trace Adkins", + "position": 8, + "title": "Honky Tonk Badonkadonk" + }, + { + "artist": "Toby Keith", + "position": 9, + "title": "Big Blue Note" + }, + { + "artist": "Little Big Town", + "position": 10, + "title": "Boondocks" + }, + { + "artist": "Faith Hill", + "position": 11, + "title": "Like We Never Loved At All" + }, + { + "artist": "Chris Cagle", + "position": 12, + "title": "Miss Me Baby" + }, + { + "artist": "Brad Paisley Featuring Dolly Parton", + "position": 13, + "title": "When I Get Where I'm Going" + }, + { + "artist": "Tim McGraw", + "position": 14, + "title": "My Old Friend" + }, + { + "artist": "Sugarland", + "position": 15, + "title": "Just Might (Make Me Believe)" + }, + { + "artist": "Montgomery Gentry", + "position": 16, + "title": "She Don't Tell Me To" + }, + { + "artist": "Josh Turner", + "position": 17, + "title": "Your Man" + }, + { + "artist": "Keith Urban", + "position": 18, + "title": "Tonight I Wanna Cry" + }, + { + "artist": "Brooks & Dunn", + "position": 19, + "title": "Believe" + }, + { + "artist": "Sara Evans", + "position": 20, + "title": "Cheatin'" + }, + { + "artist": "Miranda Lambert", + "position": 21, + "title": "Kerosene" + }, + { + "artist": "Gretchen Wilson", + "position": 22, + "title": "I Don't Feel Like Loving You Today" + }, + { + "artist": "Blake Shelton", + "position": 23, + "title": "Nobody But Me" + }, + { + "artist": "Big & Rich", + "position": 24, + "title": "Comin' To Your City" + }, + { + "artist": "Jamey Johnson", + "position": 25, + "title": "The Dollar" + } + ], + "title": "2005 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Mariah Carey", + "position": 1, + "title": "Don't Forget About Us" + }, + { + "artist": "Chris Brown", + "position": 2, + "title": "Run It!" + }, + { + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "position": 3, + "title": "Grillz" + }, + { + "artist": "D4L", + "position": 4, + "title": "Laffy Taffy" + }, + { + "artist": "The Pussycat Dolls", + "position": 5, + "title": "Stickwitu" + }, + { + "artist": "Nickelback", + "position": 6, + "title": "Photograph" + }, + { + "artist": "Kanye West Featuring Jamie Foxx", + "position": 7, + "title": "Gold Digger" + }, + { + "artist": "Beyonce Featuring Slim Thug", + "position": 8, + "title": "Check On It" + }, + { + "artist": "Kelly Clarkson", + "position": 9, + "title": "Because Of You" + }, + { + "artist": "Juelz Santana", + "position": 10, + "title": "There It Go! (The Whistle Song)" + }, + { + "artist": "The Black Eyed Peas", + "position": 11, + "title": "My Humps" + }, + { + "artist": "Ray J", + "position": 12, + "title": "One Wish" + }, + { + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "position": 13, + "title": "Stay Fly" + }, + { + "artist": "Young Jeezy Featuring Akon", + "position": 14, + "title": "Soul Survivor" + }, + { + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "position": 15, + "title": "I Think They Like Me" + }, + { + "artist": "Eminem", + "position": 16, + "title": "When I'm Gone" + }, + { + "artist": "T-Pain", + "position": 17, + "title": "I'm Sprung" + }, + { + "artist": "Trina Featuring Kelly Rowland", + "position": 18, + "title": "Here We Go" + }, + { + "artist": "Sean Paul", + "position": 19, + "title": "We Be Burnin'" + }, + { + "artist": "Mary J. Blige", + "position": 20, + "title": "Be Without You" + }, + { + "artist": "Madonna", + "position": 21, + "title": "Hung Up" + }, + { + "artist": "Fall Out Boy", + "position": 22, + "title": "Sugar, We're Goin' Down" + }, + { + "artist": "James Blunt", + "position": 23, + "title": "You're Beautiful" + }, + { + "artist": "Fall Out Boy", + "position": 24, + "title": "Dance, Dance" + }, + { + "artist": "Gwen Stefani", + "position": 25, + "title": "Luxurious" + }, + { + "artist": "Ne-Yo", + "position": 26, + "title": "So Sick" + }, + { + "artist": "The All-American Rejects", + "position": 27, + "title": "Dirty Little Secret" + }, + { + "artist": "Kanye West Featuring Adam Levine", + "position": 28, + "title": "Heard 'Em Say" + }, + { + "artist": "Lifehouse", + "position": 29, + "title": "You And Me" + }, + { + "artist": "Gorillaz", + "position": 30, + "title": "Feel Good Inc" + }, + { + "artist": "Carrie Underwood", + "position": 31, + "title": "Jesus, Take The Wheel" + }, + { + "artist": "Lil' Wayne", + "position": 32, + "title": "Fireman" + }, + { + "artist": "Green Day", + "position": 33, + "title": "Wake Me Up When September Ends" + }, + { + "artist": "Keyshia Cole", + "position": 34, + "title": "I Should Have Cheated" + }, + { + "artist": "Purple Ribbon All-Stars", + "position": 35, + "title": "Kryptonite (I'm On It)" + }, + { + "artist": "Rihanna", + "position": 36, + "title": "If It's Lovin' That You Want" + }, + { + "artist": "Weezer", + "position": 37, + "title": "Beverly Hills" + }, + { + "artist": "Trace Adkins", + "position": 38, + "title": "Honky Tonk Badonkadonk" + }, + { + "artist": "Billy Currington", + "position": 39, + "title": "Must Be Doin' Somethin' Right" + }, + { + "artist": "Dierks Bentley", + "position": 40, + "title": "Come A Little Closer" + }, + { + "artist": "Mariah Carey", + "position": 41, + "title": "Shake It Off" + }, + { + "artist": "Twista Featuring Trey Songz", + "position": 42, + "title": "Girl Tonite" + }, + { + "artist": "Chamillionaire Featuring Lil' Flip", + "position": 43, + "title": "Turn It Up" + }, + { + "artist": "Joe Nichols", + "position": 44, + "title": "Tequila Makes Her Clothes Fall Off" + }, + { + "artist": "The Pussycat Dolls Featuring Busta Rhymes", + "position": 45, + "title": "Don't Cha" + }, + { + "artist": "50 Cent", + "position": 46, + "title": "Window Shopper" + }, + { + "artist": "Jamie Foxx Featuring Ludacris", + "position": 47, + "title": "Unpredictable" + }, + { + "artist": "Ludacris & Field Mob Featuring Jamie Foxx", + "position": 48, + "title": "Georgia" + }, + { + "artist": "Alicia Keys", + "position": 49, + "title": "Unbreakable" + }, + { + "artist": "Mariah Carey", + "position": 50, + "title": "We Belong Together" + }, + { + "artist": "Natasha Bedingfield", + "position": 51, + "title": "Unwritten" + }, + { + "artist": "Eminem Featuring Nate Dogg", + "position": 52, + "title": "Shake That" + }, + { + "artist": "Faith Hill", + "position": 53, + "title": "Like We Never Loved At All" + }, + { + "artist": "George Strait", + "position": 54, + "title": "She Let Herself Go" + }, + { + "artist": "Cascada", + "position": 55, + "title": "Everytime We Touch" + }, + { + "artist": "Kenny Chesney", + "position": 56, + "title": "Who You'd Be Today" + }, + { + "artist": "Goo Goo Dolls", + "position": 57, + "title": "Better Days" + }, + { + "artist": "Little Big Town", + "position": 58, + "title": "Boondocks" + }, + { + "artist": "Garth Brooks", + "position": 59, + "title": "Good Ride Cowboy" + }, + { + "artist": "Death Cab For Cutie", + "position": 60, + "title": "Soul Meets Body" + }, + { + "artist": "Shakira", + "position": 61, + "title": "Don't Bother" + }, + { + "artist": "Brad Paisley Featuring Dolly Parton", + "position": 62, + "title": "When I Get Where I'm Going" + }, + { + "artist": "System Of A Down", + "position": 63, + "title": "Hypnotize" + }, + { + "artist": "The Notorious B.I.G. Featuring Diddy, Nelly, Jagged Edge & Avery Storm", + "position": 64, + "title": "Nasty Girl" + }, + { + "artist": "Korn", + "position": 65, + "title": "Twisted Transistor" + }, + { + "artist": "Daddy Yankee", + "position": 66, + "title": "Rompe" + }, + { + "artist": "Busta Rhymes", + "position": 67, + "title": "Touch It" + }, + { + "artist": "Trey Songz", + "position": 68, + "title": "Gotta Go" + }, + { + "artist": "Chris Cagle", + "position": 69, + "title": "Miss Me Baby" + }, + { + "artist": "The Black Eyed Peas", + "position": 70, + "title": "Pump It" + }, + { + "artist": "Ying Yang Twins Featuring Pitbull", + "position": 71, + "title": "Shake" + }, + { + "artist": "Juvenile", + "position": 72, + "title": "Rodeo" + }, + { + "artist": "Bow Wow Featuring J-Kwon & Jermaine Dupri", + "position": 73, + "title": "Fresh Azimiz" + }, + { + "artist": "Cast Of Rent", + "position": 74, + "title": "Seasons Of Love" + }, + { + "artist": "Keith Urban", + "position": 75, + "title": "Better Life" + }, + { + "artist": "Ashlee Simpson", + "position": 76, + "title": "L.O.V.E." + }, + { + "artist": "Toby Keith", + "position": 77, + "title": "Big Blue Note" + }, + { + "artist": "Avenged Sevenfold", + "position": 78, + "title": "Bat Country" + }, + { + "artist": "Sugarland", + "position": 79, + "title": "Just Might (Make Me Believe)" + }, + { + "artist": "Shinedown", + "position": 80, + "title": "Save Me" + }, + { + "artist": "Weezer", + "position": 81, + "title": "Perfect Situation" + }, + { + "artist": "Foo Fighters", + "position": 82, + "title": "DOA" + }, + { + "artist": "Kirk Franklin", + "position": 83, + "title": "Looking For You" + }, + { + "artist": "Frankie J", + "position": 84, + "title": "More Than Words" + }, + { + "artist": "Wisin & Yandel", + "position": 85, + "title": "Rakata" + }, + { + "artist": "Keith Urban", + "position": 86, + "title": "Tonight I Wanna Cry" + }, + { + "artist": "T-Pain Featuring Mike Jones", + "position": 87, + "title": "I'm N Luv (Wit A Stripper)" + }, + { + "artist": "Tim McGraw", + "position": 88, + "title": "My Old Friend" + }, + { + "artist": "Chris Brown", + "position": 89, + "title": "Yo (Excuse Me Miss)" + }, + { + "artist": "Miranda Lambert", + "position": 90, + "title": "Kerosene" + }, + { + "artist": "YoungBloodZ", + "position": 91, + "title": "Presidential" + }, + { + "artist": "Ashlee Simpson", + "position": 92, + "title": "Boyfriend" + }, + { + "artist": "Josh Turner", + "position": 93, + "title": "Your Man" + }, + { + "artist": "Seether", + "position": 94, + "title": "Remedy" + }, + { + "artist": "Brooks & Dunn", + "position": 95, + "title": "Believe" + }, + { + "artist": "Twista Featuring Pitbull", + "position": 96, + "title": "Hit The Floor" + }, + { + "artist": "Lindsay Lohan", + "position": 97, + "title": "Confessions Of A Broken Heart (Daughter To Father)" + }, + { + "artist": "Montgomery Gentry", + "position": 98, + "title": "She Don't Tell Me To" + }, + { + "artist": "Bon Jovi", + "position": 99, + "title": "Have A Nice Day" + }, + { + "artist": "Big & Rich", + "position": 100, + "title": "Comin' To Your City" + } + ], + "title": "2005 - Hot 100" + }, + { + "songs": [ + { + "artist": "Snoop Dogg Featuring Pharrell", + "position": 1, + "title": "Drop It Like It's Hot" + }, + { + "artist": "Mario", + "position": 2, + "title": "Let Me Love You" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "position": 3, + "title": "Lovers And Friends" + }, + { + "artist": "Ciara Featuring Missy Elliott", + "position": 4, + "title": "1, 2 Step" + }, + { + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "position": 5, + "title": "Soldier" + }, + { + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "position": 6, + "title": "Wonderful" + }, + { + "artist": "Usher And Alicia Keys", + "position": 7, + "title": "My Boo" + }, + { + "artist": "Jadakiss Featuring Mariah Carey", + "position": 8, + "title": "U Make Me Wanna" + }, + { + "artist": "Anthony Hamilton", + "position": 9, + "title": "Charlene" + }, + { + "artist": "Lil Wayne", + "position": 10, + "title": "Go D.J." + }, + { + "artist": "Ashanti", + "position": 11, + "title": "Only U" + }, + { + "artist": "Fabolous", + "position": 12, + "title": "Breathe" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "position": 13, + "title": "What U Gon' Do" + }, + { + "artist": "50 Cent", + "position": 14, + "title": "Disco Inferno" + }, + { + "artist": "T.I.", + "position": 15, + "title": "Bring Em Out" + }, + { + "artist": "Lloyd Banks Featuring Avant", + "position": 16, + "title": "Karma" + }, + { + "artist": "Ludacris", + "position": 17, + "title": "Get Back" + }, + { + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "position": 18, + "title": "New York" + }, + { + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "position": 19, + "title": "Let's Go" + }, + { + "artist": "The Game Featuring 50 Cent", + "position": 20, + "title": "How We Do" + }, + { + "artist": "Young Buck", + "position": 21, + "title": "Shorty Wanna Ride" + }, + { + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "position": 22, + "title": "Diary" + }, + { + "artist": "Destiny's Child", + "position": 23, + "title": "Lose My Breath" + }, + { + "artist": "Trillville Featuring Cutty", + "position": 24, + "title": "Some Cut" + }, + { + "artist": "LL Cool J Featuring 7 Aurelius", + "position": 25, + "title": "Hush" + } + ], + "title": "2004 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Nelly Featuring Tim McGraw", + "position": 1, + "title": "Over And Over" + }, + { + "artist": "Gavin DeGraw", + "position": 2, + "title": "I Don't Want To Be" + }, + { + "artist": "Kelly Clarkson", + "position": 3, + "title": "Breakaway" + }, + { + "artist": "Usher And Alicia Keys", + "position": 4, + "title": "My Boo" + }, + { + "artist": "Snoop Dogg Featuring Pharrell", + "position": 5, + "title": "Drop It Like It's Hot" + }, + { + "artist": "Mario", + "position": 6, + "title": "Let Me Love You" + }, + { + "artist": "Destiny's Child", + "position": 7, + "title": "Lose My Breath" + }, + { + "artist": "Switchfoot", + "position": 8, + "title": "Dare You To Move" + }, + { + "artist": "JoJo Featuring Bow Wow", + "position": 9, + "title": "Baby It's You" + }, + { + "artist": "Simple Plan", + "position": 10, + "title": "Welcome To My Life" + }, + { + "artist": "Ciara Featuring Missy Elliott", + "position": 11, + "title": "1, 2 Step" + }, + { + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "position": 12, + "title": "Let's Go" + }, + { + "artist": "Jesse McCartney", + "position": 13, + "title": "Beautiful Soul" + }, + { + "artist": "Ryan Cabrera", + "position": 14, + "title": "True" + }, + { + "artist": "Eminem", + "position": 15, + "title": "Just Lose It" + }, + { + "artist": "Maroon5", + "position": 16, + "title": "She Will Be Loved" + }, + { + "artist": "Seether Featuring Amy Lee", + "position": 17, + "title": "Broken" + }, + { + "artist": "Avril Lavigne", + "position": 18, + "title": "Nobody's Home" + }, + { + "artist": "Kelly Clarkson", + "position": 19, + "title": "Since U Been Gone" + }, + { + "artist": "Ciara Featuring Petey Pablo", + "position": 20, + "title": "Goodies" + } + ], + "title": "2004 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Blake Shelton", + "position": 1, + "title": "Some Beach" + }, + { + "artist": "Tim McGraw", + "position": 2, + "title": "Back When" + }, + { + "artist": "Kenny Chesney", + "position": 3, + "title": "The Woman With You" + }, + { + "artist": "Darryl Worley", + "position": 4, + "title": "Awful, Beautiful Life" + }, + { + "artist": "Gary Allan", + "position": 5, + "title": "Nothing On But The Radio" + }, + { + "artist": "Dierks Bentley", + "position": 6, + "title": "How Am I Doin'" + }, + { + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "position": 7, + "title": "Party For Two" + }, + { + "artist": "Lonestar", + "position": 8, + "title": "Mr. Mom" + }, + { + "artist": "Brad Paisley", + "position": 9, + "title": "Mud On The Tires" + }, + { + "artist": "Alan Jackson", + "position": 10, + "title": "Monday Morning Church" + }, + { + "artist": "Gretchen Wilson", + "position": 11, + "title": "When I Think About Cheatin'" + }, + { + "artist": "Keith Urban", + "position": 12, + "title": "You're My Better Half" + }, + { + "artist": "LeAnn Rimes", + "position": 13, + "title": "Nothin 'Bout Love Makes Sense" + }, + { + "artist": "SheDaisy", + "position": 14, + "title": "Come Home Soon" + }, + { + "artist": "Rascal Flatts", + "position": 15, + "title": "Bless The Broken Road" + }, + { + "artist": "Reba McEntire", + "position": 16, + "title": "He Gets That From Me" + }, + { + "artist": "Big & Rich", + "position": 17, + "title": "Holy Water" + }, + { + "artist": "Josh Gracin", + "position": 18, + "title": "Nothin' To Lose" + }, + { + "artist": "Billy Dean", + "position": 19, + "title": "Let Them Be Little" + }, + { + "artist": "Lee Ann Womack", + "position": 20, + "title": "I May Hate Myself In The Morning" + }, + { + "artist": "Pat Green", + "position": 21, + "title": "Don't Break My Heart Again" + }, + { + "artist": "Jimmy Wayne", + "position": 22, + "title": "Paper Angels" + }, + { + "artist": "Sugarland", + "position": 23, + "title": "Baby Girl" + }, + { + "artist": "Jamie O'Neal", + "position": 24, + "title": "Trying To Find Atlantis" + }, + { + "artist": "Andy Griggs", + "position": 25, + "title": "If Heaven" + } + ], + "title": "2004 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Snoop Dogg Featuring Pharrell", + "position": 1, + "title": "Drop It Like It's Hot" + }, + { + "artist": "Mario", + "position": 2, + "title": "Let Me Love You" + }, + { + "artist": "Ciara Featuring Missy Elliott", + "position": 3, + "title": "1, 2 Step" + }, + { + "artist": "Usher And Alicia Keys", + "position": 4, + "title": "My Boo" + }, + { + "artist": "Nelly Featuring Tim McGraw", + "position": 5, + "title": "Over And Over" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "position": 6, + "title": "Lovers And Friends" + }, + { + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "position": 7, + "title": "Soldier" + }, + { + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "position": 8, + "title": "Wonderful" + }, + { + "artist": "Destiny's Child", + "position": 9, + "title": "Lose My Breath" + }, + { + "artist": "Kelly Clarkson", + "position": 10, + "title": "Breakaway" + }, + { + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "position": 11, + "title": "Let's Go" + }, + { + "artist": "Gavin DeGraw", + "position": 12, + "title": "I Don't Want To Be" + }, + { + "artist": "50 Cent", + "position": 13, + "title": "Disco Inferno" + }, + { + "artist": "Ashanti", + "position": 14, + "title": "Only U" + }, + { + "artist": "Maroon5", + "position": 15, + "title": "She Will Be Loved" + }, + { + "artist": "Ciara Featuring Petey Pablo", + "position": 16, + "title": "Goodies" + }, + { + "artist": "N.O.R.E. Featuring Daddy Yankee, Nina Sky, Gem Star & Big Mato", + "position": 17, + "title": "Oye Mi Canto" + }, + { + "artist": "Ludacris", + "position": 18, + "title": "Get Back" + }, + { + "artist": "Switchfoot", + "position": 19, + "title": "Dare You To Move" + }, + { + "artist": "Fabolous", + "position": 20, + "title": "Breathe" + }, + { + "artist": "Jadakiss Featuring Mariah Carey", + "position": 21, + "title": "U Make Me Wanna" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "position": 22, + "title": "What U Gon' Do" + }, + { + "artist": "The Game Featuring 50 Cent", + "position": 23, + "title": "How We Do" + }, + { + "artist": "Lil Wayne", + "position": 24, + "title": "Go D.J." + }, + { + "artist": "Lloyd Banks Featuring Avant", + "position": 25, + "title": "Karma" + }, + { + "artist": "Eminem Featuring Dr. Dre & 50 Cent", + "position": 26, + "title": "Encore" + }, + { + "artist": "Green Day", + "position": 27, + "title": "Boulevard Of Broken Dreams" + }, + { + "artist": "Blake Shelton", + "position": 28, + "title": "Some Beach" + }, + { + "artist": "Anthony Hamilton", + "position": 29, + "title": "Charlene" + }, + { + "artist": "Tim McGraw", + "position": 30, + "title": "Back When" + }, + { + "artist": "Seether Featuring Amy Lee", + "position": 31, + "title": "Broken" + }, + { + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "position": 32, + "title": "New York" + }, + { + "artist": "JoJo Featuring Bow Wow", + "position": 33, + "title": "Baby It's You" + }, + { + "artist": "John Mayer", + "position": 34, + "title": "Daughters" + }, + { + "artist": "T.I.", + "position": 35, + "title": "Bring Em Out" + }, + { + "artist": "U2", + "position": 36, + "title": "Vertigo" + }, + { + "artist": "Jay-Z/Linkin Park", + "position": 37, + "title": "Numb/Encore" + }, + { + "artist": "Young Buck", + "position": 38, + "title": "Shorty Wanna Ride" + }, + { + "artist": "Ryan Cabrera", + "position": 39, + "title": "True" + }, + { + "artist": "Simple Plan", + "position": 40, + "title": "Welcome To My Life" + }, + { + "artist": "Finger Eleven", + "position": 41, + "title": "One Thing" + }, + { + "artist": "Ryan Cabrera", + "position": 42, + "title": "On The Way Down" + }, + { + "artist": "Avril Lavigne", + "position": 43, + "title": "My Happy Ending" + }, + { + "artist": "Darryl Worley", + "position": 44, + "title": "Awful, Beautiful Life" + }, + { + "artist": "Eminem", + "position": 45, + "title": "Just Lose It" + }, + { + "artist": "Terror Squad", + "position": 46, + "title": "Lean Back" + }, + { + "artist": "Kenny Chesney", + "position": 47, + "title": "The Woman With You" + }, + { + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "position": 48, + "title": "Diary" + }, + { + "artist": "Jesse McCartney", + "position": 49, + "title": "Beautiful Soul" + }, + { + "artist": "Gary Allan", + "position": 50, + "title": "Nothing On But The Radio" + }, + { + "artist": "Dierks Bentley", + "position": 51, + "title": "How Am I Doin'" + }, + { + "artist": "Chingy", + "position": 52, + "title": "Balla Baby" + }, + { + "artist": "Kelly Clarkson", + "position": 53, + "title": "Since U Been Gone" + }, + { + "artist": "LL Cool J Featuring 7 Aurelius", + "position": 54, + "title": "Hush" + }, + { + "artist": "Gretchen Wilson", + "position": 55, + "title": "When I Think About Cheatin'" + }, + { + "artist": "Keith Urban", + "position": 56, + "title": "You're My Better Half" + }, + { + "artist": "Avril Lavigne", + "position": 57, + "title": "Nobody's Home" + }, + { + "artist": "Brad Paisley", + "position": 58, + "title": "Mud On The Tires" + }, + { + "artist": "Lonestar", + "position": 59, + "title": "Mr. Mom" + }, + { + "artist": "LeAnn Rimes", + "position": 60, + "title": "Nothin 'Bout Love Makes Sense" + }, + { + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "position": 61, + "title": "Party For Two" + }, + { + "artist": "Rascal Flatts", + "position": 62, + "title": "Bless The Broken Road" + }, + { + "artist": "The Killers", + "position": 63, + "title": "Somebody Told Me" + }, + { + "artist": "Bowling For Soup", + "position": 64, + "title": "1985" + }, + { + "artist": "Lenny Kravitz", + "position": 65, + "title": "Lady" + }, + { + "artist": "Alicia Keys", + "position": 66, + "title": "Karma" + }, + { + "artist": "Alan Jackson", + "position": 67, + "title": "Monday Morning Church" + }, + { + "artist": "Goo Goo Dolls", + "position": 68, + "title": "Give A Little Bit" + }, + { + "artist": "Rupee", + "position": 69, + "title": "Tempted To Touch" + }, + { + "artist": "Trillville Featuring Cutty", + "position": 70, + "title": "Some Cut" + }, + { + "artist": "Reba McEntire", + "position": 71, + "title": "He Gets That From Me" + }, + { + "artist": "Chevelle", + "position": 72, + "title": "Vitamin R (Leading Us Along)" + }, + { + "artist": "Daddy Yankee", + "position": 73, + "title": "Gasolina" + }, + { + "artist": "Gwen Stefani Featuring Eve", + "position": 74, + "title": "Rich Girl" + }, + { + "artist": "SheDaisy", + "position": 75, + "title": "Come Home Soon" + }, + { + "artist": "Usher", + "position": 76, + "title": "Caught Up" + }, + { + "artist": "Velvet Revolver", + "position": 77, + "title": "Fall To Pieces" + }, + { + "artist": "Guerilla Black Featuring Mario Winans", + "position": 78, + "title": "You're The One" + }, + { + "artist": "Breaking Benjamin", + "position": 79, + "title": "So Cold" + }, + { + "artist": "Phil Vassar", + "position": 80, + "title": "In A Real Love" + }, + { + "artist": "Crossfade", + "position": 81, + "title": "Cold" + }, + { + "artist": "Keyshia Cole Featuring Shyne", + "position": 82, + "title": "I Changed My Mind" + }, + { + "artist": "Papa Roach", + "position": 83, + "title": "Getting Away With Murder" + }, + { + "artist": "Terror Squad", + "position": 84, + "title": "Take Me Home" + }, + { + "artist": "Crime Mob Featuring Lil Scrappy", + "position": 85, + "title": "Knuck If You Buck" + }, + { + "artist": "Juvenile, Wacko & Skip", + "position": 86, + "title": "Nolia Clap" + }, + { + "artist": "Gwen Stefani", + "position": 87, + "title": "What You Waiting For?" + }, + { + "artist": "Brooks & Dunn", + "position": 88, + "title": "That's What It's All About" + }, + { + "artist": "Sugarland", + "position": 89, + "title": "Baby Girl" + }, + { + "artist": "Patti LaBelle Featuring Ron Isley", + "position": 90, + "title": "Gotta Go Solo" + }, + { + "artist": "Body Head Bangerz Featuring YoungBloodz", + "position": 91, + "title": "I Smoke, I Drank" + }, + { + "artist": "Green Day", + "position": 92, + "title": "American Idiot" + }, + { + "artist": "Beyonce", + "position": 93, + "title": "Dangerously In Love" + }, + { + "artist": "Xzibit Featuring Keri Hilson", + "position": 94, + "title": "Hey Now (Mean Muggin)" + }, + { + "artist": "Nivea Featuring Lil Jon & YoungBloodZ", + "position": 95, + "title": "Okay" + }, + { + "artist": "Monchy & Alexandra", + "position": 96, + "title": "Perdidos" + }, + { + "artist": "George Strait", + "position": 97, + "title": "I Hate Everything" + }, + { + "artist": "John Legend", + "position": 98, + "title": "Used To Love U" + }, + { + "artist": "Anita Baker", + "position": 99, + "title": "You're My Everything" + }, + { + "artist": "Prince", + "position": 100, + "title": "Call My Name" + } + ], + "title": "2004 - Hot 100" + }, + { + "songs": [ + { + "artist": "Alicia Keys", + "position": 1, + "title": "You Don't Know My Name" + }, + { + "artist": "Jagged Edge", + "position": 2, + "title": "Walked Outta Heaven" + }, + { + "artist": "OutKast Featuring Sleepy Brown", + "position": 3, + "title": "The Way You Move" + }, + { + "artist": "R. Kelly", + "position": 4, + "title": "Step In The Name Of Love" + }, + { + "artist": "Avant", + "position": 5, + "title": "Read Your Mind" + }, + { + "artist": "Kelis", + "position": 6, + "title": "Milkshake" + }, + { + "artist": "Jay-Z", + "position": 7, + "title": "Change Clothes" + }, + { + "artist": "YoungBloodZ Featuring Lil Jon", + "position": 8, + "title": "Damn!" + }, + { + "artist": "Ludacris Featuring Shawnna", + "position": 9, + "title": "Stand Up" + }, + { + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "position": 10, + "title": "Slow Jamz" + }, + { + "artist": "Tupac Featuring The Notorious B.I.G.", + "position": 11, + "title": "Runnin (Dying To Live)" + }, + { + "artist": "Beyonce", + "position": 12, + "title": "Me, Myself And I" + }, + { + "artist": "G-Unit", + "position": 13, + "title": "Stunt 101" + }, + { + "artist": "OutKast", + "position": 14, + "title": "Hey Ya!" + }, + { + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "position": 15, + "title": "Holidae In" + }, + { + "artist": "Kanye West", + "position": 16, + "title": "Through The Wire" + }, + { + "artist": "Joe", + "position": 17, + "title": "More & More" + }, + { + "artist": "Musiq", + "position": 18, + "title": "Forthenight" + }, + { + "artist": "Murphy Lee Featuring Jermaine Dupri", + "position": 19, + "title": "Wat Da Hook Gon Be" + }, + { + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "position": 20, + "title": "Salt Shaker" + }, + { + "artist": "Mary J. Blige Featuring Eve", + "position": 21, + "title": "Not Today" + }, + { + "artist": "Ashanti", + "position": 22, + "title": "Rain On Me" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "position": 23, + "title": "Get Low" + }, + { + "artist": "Bow Wow Featuring Jagged Edge", + "position": 24, + "title": "My Baby" + }, + { + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "position": 25, + "title": "Clubbin" + } + ], + "title": "2003 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "OutKast", + "position": 1, + "title": "Hey Ya!" + }, + { + "artist": "3 Doors Down", + "position": 2, + "title": "Here Without You" + }, + { + "artist": "Baby Bash Featuring Frankie J", + "position": 3, + "title": "Suga Suga" + }, + { + "artist": "Nickelback", + "position": 4, + "title": "Someday" + }, + { + "artist": "Simple Plan", + "position": 5, + "title": "Perfect" + }, + { + "artist": "No Doubt", + "position": 6, + "title": "It's My Life" + }, + { + "artist": "Beyonce Featuring Sean Paul", + "position": 7, + "title": "Baby Boy" + }, + { + "artist": "Trapt", + "position": 8, + "title": "Headstrong" + }, + { + "artist": "Stacie Orrico", + "position": 9, + "title": "(There's Gotta Be) More To Life" + }, + { + "artist": "Ludacris Featuring Shawnna", + "position": 10, + "title": "Stand Up" + }, + { + "artist": "OutKast Featuring Sleepy Brown", + "position": 11, + "title": "The Way You Move" + }, + { + "artist": "Christina Aguilera", + "position": 12, + "title": "The Voice Within" + }, + { + "artist": "Liz Phair", + "position": 13, + "title": "Why Can't I" + }, + { + "artist": "Clay Aiken", + "position": 14, + "title": "Invisible" + }, + { + "artist": "Kelis", + "position": 15, + "title": "Milkshake" + }, + { + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "position": 16, + "title": "Holidae In" + }, + { + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "position": 17, + "title": "Why Don't You & I" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "position": 18, + "title": "Get Low" + }, + { + "artist": "Michelle Branch", + "position": 19, + "title": "Breathe" + }, + { + "artist": "Staind", + "position": 20, + "title": "So Far Away" + } + ], + "title": "2003 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Kenny Chesney", + "position": 1, + "title": "There Goes My Life" + }, + { + "artist": "George Strait", + "position": 2, + "title": "Cowboys Like Us" + }, + { + "artist": "Toby Keith", + "position": 3, + "title": "I Love This Bar" + }, + { + "artist": "Brooks & Dunn", + "position": 4, + "title": "You Can't Take The Honky Tonk Out Of The Girl" + }, + { + "artist": "Alan Jackson", + "position": 5, + "title": "Remember When" + }, + { + "artist": "Chris Cagle", + "position": 6, + "title": "Chicks Dig It" + }, + { + "artist": "Rodney Atkins", + "position": 7, + "title": "Honesty (Write Me A List)" + }, + { + "artist": "Lonestar", + "position": 8, + "title": "Walking In Memphis" + }, + { + "artist": "Tracy Byrd", + "position": 9, + "title": "Drinkin' Bone" + }, + { + "artist": "Terri Clark", + "position": 10, + "title": "I Wanna Do It All" + }, + { + "artist": "Montgomery Gentry", + "position": 11, + "title": "Hell Yeah" + }, + { + "artist": "Shania Twain", + "position": 12, + "title": "She's Not Just A Pretty Face" + }, + { + "artist": "Tim McGraw", + "position": 13, + "title": "Watch The Wind Blow By" + }, + { + "artist": "Brad Paisley", + "position": 14, + "title": "Little Moments" + }, + { + "artist": "Jo Dee Messina", + "position": 15, + "title": "I Wish" + }, + { + "artist": "Pat Green", + "position": 16, + "title": "Wave On Wave" + }, + { + "artist": "Rascal Flatts", + "position": 17, + "title": "I Melt" + }, + { + "artist": "Keith Urban", + "position": 18, + "title": "Who Wouldn't Wanna Be Me" + }, + { + "artist": "Diamond Rio", + "position": 19, + "title": "Wrinkles" + }, + { + "artist": "Trace Adkins", + "position": 20, + "title": "Hot Mama" + }, + { + "artist": "Jimmy Wayne", + "position": 21, + "title": "I Love You This Much" + }, + { + "artist": "Toby Keith", + "position": 22, + "title": "American Soldier" + }, + { + "artist": "Josh Turner", + "position": 23, + "title": "Long Black Train" + }, + { + "artist": "Sara Evans", + "position": 24, + "title": "Perfect" + }, + { + "artist": "Martina McBride", + "position": 25, + "title": "In My Daughter's Eyes" + } + ], + "title": "2003 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "OutKast", + "position": 1, + "title": "Hey Ya!" + }, + { + "artist": "OutKast Featuring Sleepy Brown", + "position": 2, + "title": "The Way You Move" + }, + { + "artist": "Kelis", + "position": 3, + "title": "Milkshake" + }, + { + "artist": "Ludacris Featuring Shawnna", + "position": 4, + "title": "Stand Up" + }, + { + "artist": "Alicia Keys", + "position": 5, + "title": "You Don't Know My Name" + }, + { + "artist": "Jagged Edge", + "position": 6, + "title": "Walked Outta Heaven" + }, + { + "artist": "3 Doors Down", + "position": 7, + "title": "Here Without You" + }, + { + "artist": "Baby Bash Featuring Frankie J", + "position": 8, + "title": "Suga Suga" + }, + { + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "position": 9, + "title": "Holidae In" + }, + { + "artist": "Jay-Z", + "position": 10, + "title": "Change Clothes" + }, + { + "artist": "R. Kelly", + "position": 11, + "title": "Step In The Name Of Love" + }, + { + "artist": "Beyonce Featuring Sean Paul", + "position": 12, + "title": "Baby Boy" + }, + { + "artist": "YoungBloodZ Featuring Lil Jon", + "position": 13, + "title": "Damn!" + }, + { + "artist": "No Doubt", + "position": 14, + "title": "It's My Life" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "position": 15, + "title": "Get Low" + }, + { + "artist": "Nickelback", + "position": 16, + "title": "Someday" + }, + { + "artist": "Beyonce", + "position": 17, + "title": "Me, Myself And I" + }, + { + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "position": 18, + "title": "Slow Jamz" + }, + { + "artist": "Avant", + "position": 19, + "title": "Read Your Mind" + }, + { + "artist": "Tupac Featuring The Notorious B.I.G.", + "position": 20, + "title": "Runnin (Dying To Live)" + }, + { + "artist": "G-Unit", + "position": 21, + "title": "Stunt 101" + }, + { + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "position": 22, + "title": "Why Don't You & I" + }, + { + "artist": "Murphy Lee Featuring Jermaine Dupri", + "position": 23, + "title": "Wat Da Hook Gon Be" + }, + { + "artist": "Simple Plan", + "position": 24, + "title": "Perfect" + }, + { + "artist": "Trapt", + "position": 25, + "title": "Headstrong" + }, + { + "artist": "Dido", + "position": 26, + "title": "White Flag" + }, + { + "artist": "Linkin Park", + "position": 27, + "title": "Numb" + }, + { + "artist": "Staind", + "position": 28, + "title": "So Far Away" + }, + { + "artist": "Kenny Chesney", + "position": 29, + "title": "There Goes My Life" + }, + { + "artist": "Sheryl Crow", + "position": 30, + "title": "The First Cut Is The Deepest" + }, + { + "artist": "matchbox twenty", + "position": 31, + "title": "Bright Lights" + }, + { + "artist": "Liz Phair", + "position": 32, + "title": "Why Can't I" + }, + { + "artist": "Nick Cannon Featuring R. Kelly", + "position": 33, + "title": "Gigolo" + }, + { + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "position": 34, + "title": "Salt Shaker" + }, + { + "artist": "Chingy", + "position": 35, + "title": "Right Thurr" + }, + { + "artist": "Christina Aguilera", + "position": 36, + "title": "The Voice Within" + }, + { + "artist": "Maroon5", + "position": 37, + "title": "Harder To Breathe" + }, + { + "artist": "Stacie Orrico", + "position": 38, + "title": "(There's Gotta Be) More To Life" + }, + { + "artist": "Kanye West", + "position": 39, + "title": "Through The Wire" + }, + { + "artist": "Nelly, P. Diddy & Murphy Lee", + "position": 40, + "title": "Shake Ya Tailfeather" + }, + { + "artist": "Toby Keith", + "position": 41, + "title": "I Love This Bar" + }, + { + "artist": "Brooks & Dunn", + "position": 42, + "title": "You Can't Take The Honky Tonk Out Of The Girl" + }, + { + "artist": "Clay Aiken", + "position": 43, + "title": "Invisible" + }, + { + "artist": "Alan Jackson", + "position": 44, + "title": "Remember When" + }, + { + "artist": "Michelle Branch", + "position": 45, + "title": "Breathe" + }, + { + "artist": "George Strait", + "position": 46, + "title": "Cowboys Like Us" + }, + { + "artist": "Mary J. Blige Featuring Eve", + "position": 47, + "title": "Not Today" + }, + { + "artist": "matchbox twenty", + "position": 48, + "title": "Unwell" + }, + { + "artist": "Joe", + "position": 49, + "title": "More & More" + }, + { + "artist": "Ashanti", + "position": 50, + "title": "Rain On Me" + }, + { + "artist": "Sarah McLachlan", + "position": 51, + "title": "Fallen" + }, + { + "artist": "Westside Connection Featuring Nate Dogg", + "position": 52, + "title": "Gangsta Nation" + }, + { + "artist": "Musiq", + "position": 53, + "title": "Forthenight" + }, + { + "artist": "Bow Wow Featuring Jagged Edge", + "position": 54, + "title": "My Baby" + }, + { + "artist": "Three Days Grace", + "position": 55, + "title": "(I Hate) Everything About You" + }, + { + "artist": "Chris Cagle", + "position": 56, + "title": "Chicks Dig It" + }, + { + "artist": "Mya", + "position": 57, + "title": "Fallen" + }, + { + "artist": "Eamon", + "position": 58, + "title": "F**k It (I Don't Want You Back)" + }, + { + "artist": "Rodney Atkins", + "position": 59, + "title": "Honesty (Write Me A List)" + }, + { + "artist": "Terri Clark", + "position": 60, + "title": "I Wanna Do It All" + }, + { + "artist": "Tim McGraw", + "position": 61, + "title": "Watch The Wind Blow By" + }, + { + "artist": "Shania Twain", + "position": 62, + "title": "She's Not Just A Pretty Face" + }, + { + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "position": 63, + "title": "Clubbin" + }, + { + "artist": "Montgomery Gentry", + "position": 64, + "title": "Hell Yeah" + }, + { + "artist": "Jessica Simpson", + "position": 65, + "title": "With You" + }, + { + "artist": "Tracy Byrd", + "position": 66, + "title": "Drinkin' Bone" + }, + { + "artist": "Keith Urban", + "position": 67, + "title": "Who Wouldn't Wanna Be Me" + }, + { + "artist": "Missy Elliott", + "position": 68, + "title": "Pass That Dutch" + }, + { + "artist": "Toby Keith", + "position": 69, + "title": "American Soldier" + }, + { + "artist": "Fountains Of Wayne", + "position": 70, + "title": "Stacy's Mom" + }, + { + "artist": "Cassidy Featuring R. Kelly", + "position": 71, + "title": "Hotel" + }, + { + "artist": "Brad Paisley", + "position": 72, + "title": "Little Moments" + }, + { + "artist": "Jet", + "position": 73, + "title": "Are You Gonna Be My Girl" + }, + { + "artist": "The Offspring", + "position": 74, + "title": "Hit That" + }, + { + "artist": "Lonestar", + "position": 75, + "title": "Walking In Memphis" + }, + { + "artist": "Puddle Of Mudd", + "position": 76, + "title": "Away From Me" + }, + { + "artist": "Pat Green", + "position": 77, + "title": "Wave On Wave" + }, + { + "artist": "Rascal Flatts", + "position": 78, + "title": "I Melt" + }, + { + "artist": "B2K Featuring Fabolous", + "position": 79, + "title": "Badaboom" + }, + { + "artist": "Trapt", + "position": 80, + "title": "Still Frame" + }, + { + "artist": "Britney Spears Featuring Madonna", + "position": 81, + "title": "Me Against The Music" + }, + { + "artist": "Marques Houston Featuring Jermaine \"JD\" Dupri", + "position": 82, + "title": "Pop That Booty" + }, + { + "artist": "Ginuwine", + "position": 83, + "title": "Love You More" + }, + { + "artist": "Monica", + "position": 84, + "title": "Knock Knock" + }, + { + "artist": "Live", + "position": 85, + "title": "Heaven" + }, + { + "artist": "Barenaked Ladies", + "position": 86, + "title": "Another Postcard (Chimps)" + }, + { + "artist": "Gary Allan", + "position": 87, + "title": "Tough Little Boys" + }, + { + "artist": "Audioslave", + "position": 88, + "title": "Show Me How To Live" + }, + { + "artist": "A Perfect Circle", + "position": 89, + "title": "Weak And Powerless" + }, + { + "artist": "John Mayer", + "position": 90, + "title": "Bigger Than My Body" + }, + { + "artist": "Josh Turner", + "position": 91, + "title": "Long Black Train" + }, + { + "artist": "Ryan Duarte", + "position": 92, + "title": "You" + }, + { + "artist": "Ja Rule", + "position": 93, + "title": "Clap Back" + }, + { + "artist": "Too Short Featuring Lil Jon & The East Side Boyz", + "position": 94, + "title": "Shake That Monkey" + }, + { + "artist": "Lasgo", + "position": 95, + "title": "Alone" + }, + { + "artist": "Trillville", + "position": 96, + "title": "Neva Eva" + }, + { + "artist": "Big Tymers Featuring R. Kelly", + "position": 97, + "title": "Gangsta Girl" + }, + { + "artist": "Scotty Emerick With Toby Keith", + "position": 98, + "title": "I Can't Take You Anywhere" + }, + { + "artist": "Hilary Duff", + "position": 99, + "title": "So Yesterday" + }, + { + "artist": "Michael Jackson", + "position": 100, + "title": "One More Chance" + } + ], + "title": "2003 - Hot 100" + }, + { + "songs": [ + { + "artist": "Erykah Badu Featuring Common", + "position": 1, + "title": "Love Of My Life (An Ode To Hip Hop)" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott", + "position": 2, + "title": "Work It" + }, + { + "artist": "B2K & P. Diddy", + "position": 3, + "title": "Bump, Bump, Bump" + }, + { + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "position": 4, + "title": "Air Force Ones" + }, + { + "artist": "Jay-Z Featuring Beyonce Knowles", + "position": 5, + "title": "'03 Bonnie & Clyde" + }, + { + "artist": "Musiq", + "position": 6, + "title": "dontchange" + }, + { + "artist": "Aaliyah", + "position": 7, + "title": "Miss You" + }, + { + "artist": "Eminem", + "position": 8, + "title": "Lose Yourself" + }, + { + "artist": "R. Kelly", + "position": 9, + "title": "Ignition" + }, + { + "artist": "Jaheim Featuring Tha Rayne", + "position": 10, + "title": "Fabulous" + }, + { + "artist": "Dru Hill", + "position": 11, + "title": "I Should Be..." + }, + { + "artist": "LL Cool J", + "position": 12, + "title": "Luv U Better" + }, + { + "artist": "Sean Paul", + "position": 13, + "title": "Gimme The Light" + }, + { + "artist": "2Pac", + "position": 14, + "title": "Thugz Mansion" + }, + { + "artist": "Nas", + "position": 15, + "title": "Made You Look" + }, + { + "artist": "Erick Sermon Featuring Redman", + "position": 16, + "title": "React" + }, + { + "artist": "Aaliyah", + "position": 17, + "title": "I Care 4 U" + }, + { + "artist": "Amerie", + "position": 18, + "title": "Talkin' To Me" + }, + { + "artist": "50 Cent", + "position": 19, + "title": "Wanksta" + }, + { + "artist": "LL Cool J Featuring Amerie", + "position": 20, + "title": "Paradise" + }, + { + "artist": "Clipse", + "position": 21, + "title": "When The Last Time" + }, + { + "artist": "Busta Rhymes Featuring Spliff Star", + "position": 22, + "title": "Make It Clap" + }, + { + "artist": "Ja Rule Featuring Bobby Brown", + "position": 23, + "title": "Thug Lovin'" + }, + { + "artist": "Eve", + "position": 24, + "title": "Satisfaction" + }, + { + "artist": "Baby Featuring P. Diddy", + "position": 25, + "title": "Do That..." + } + ], + "title": "2002 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Eminem", + "position": 1, + "title": "Lose Yourself" + }, + { + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "position": 2, + "title": "Jenny From The Block" + }, + { + "artist": "Christina Aguilera", + "position": 3, + "title": "Beautiful" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott", + "position": 4, + "title": "Work It" + }, + { + "artist": "No Doubt Featuring Lady Saw", + "position": 5, + "title": "Underneath It All" + }, + { + "artist": "Pink", + "position": 6, + "title": "Family Portrait" + }, + { + "artist": "Puddle Of Mudd", + "position": 7, + "title": "She Hates Me" + }, + { + "artist": "Nivea Featuring Brian & Brandon Casey", + "position": 8, + "title": "Don't Mess With My Man" + }, + { + "artist": "Santana Featuring Michelle Branch", + "position": 9, + "title": "The Game Of Love" + }, + { + "artist": "Avril Lavigne", + "position": 10, + "title": "I'm With You" + }, + { + "artist": "Kelly Rowland", + "position": 11, + "title": "Stole" + }, + { + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "position": 12, + "title": "Hey Ma" + }, + { + "artist": "Justin Timberlake", + "position": 13, + "title": "Cry Me A River" + }, + { + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "position": 14, + "title": "Air Force Ones" + }, + { + "artist": "Good Charlotte", + "position": 15, + "title": "Lifestyles Of The Rich And Famous" + }, + { + "artist": "O-Town", + "position": 16, + "title": "These Are The Days" + }, + { + "artist": "John Mayer", + "position": 17, + "title": "Your Body Is A Wonderland" + }, + { + "artist": "Justin Timberlake", + "position": 18, + "title": "Like I Love You" + }, + { + "artist": "Avril Lavigne", + "position": 19, + "title": "Sk8er Boi" + }, + { + "artist": "Creed", + "position": 20, + "title": "One Last Breath" + } + ], + "title": "2002 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "George Strait", + "position": 1, + "title": "She'll Leave You With A Smile" + }, + { + "artist": "Toby Keith", + "position": 2, + "title": "Who's Your Daddy?" + }, + { + "artist": "Rascal Flatts", + "position": 3, + "title": "These Days" + }, + { + "artist": "Mark Wills", + "position": 4, + "title": "19 Somethin'" + }, + { + "artist": "Emerson Drive", + "position": 5, + "title": "Fall Into Me" + }, + { + "artist": "Tim McGraw", + "position": 6, + "title": "Red Rag Top" + }, + { + "artist": "Kenny Chesney", + "position": 7, + "title": "A Lot Of Things Different" + }, + { + "artist": "Keith Urban", + "position": 8, + "title": "Somebody Like You" + }, + { + "artist": "Terri Clark", + "position": 9, + "title": "I Just Wanna Be Mad" + }, + { + "artist": "Blake Shelton", + "position": 10, + "title": "The Baby" + }, + { + "artist": "Dixie Chicks", + "position": 11, + "title": "Landslide" + }, + { + "artist": "Brad Paisley", + "position": 12, + "title": "I Wish You'd Stay" + }, + { + "artist": "Travis Tritt", + "position": 13, + "title": "Strong Enough To Be Your Man" + }, + { + "artist": "Brooks & Dunn", + "position": 14, + "title": "Every River" + }, + { + "artist": "Diamond Rio", + "position": 15, + "title": "Beautiful Mess" + }, + { + "artist": "Gary Allan", + "position": 16, + "title": "Man To Man" + }, + { + "artist": "Aaron Lines", + "position": 17, + "title": "You Can't Hide Beautiful" + }, + { + "artist": "Lonestar", + "position": 18, + "title": "Unusually Unusual" + }, + { + "artist": "John Michael Montgomery", + "position": 19, + "title": "'Til Nothing Comes Between Us" + }, + { + "artist": "Montgomery Gentry", + "position": 20, + "title": "My Town" + }, + { + "artist": "Trace Adkins", + "position": 21, + "title": "Chrome" + }, + { + "artist": "Trick Pony", + "position": 22, + "title": "On A Mission" + }, + { + "artist": "Kellie Coffey", + "position": 23, + "title": "At The End Of The Day" + }, + { + "artist": "Shania Twain", + "position": 24, + "title": "I'm Gonna Getcha Good!" + }, + { + "artist": "Jennifer Hanson", + "position": 25, + "title": "Beautiful Goodbye" + } + ], + "title": "2002 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Eminem", + "position": 1, + "title": "Lose Yourself" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott", + "position": 2, + "title": "Work It" + }, + { + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "position": 3, + "title": "Jenny From The Block" + }, + { + "artist": "Jay-Z Featuring Beyonce Knowles", + "position": 4, + "title": "'03 Bonnie & Clyde" + }, + { + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "position": 5, + "title": "Air Force Ones" + }, + { + "artist": "Christina Aguilera", + "position": 6, + "title": "Beautiful" + }, + { + "artist": "B2K & P. Diddy", + "position": 7, + "title": "Bump, Bump, Bump" + }, + { + "artist": "Nivea Featuring Brian & Brandon Casey", + "position": 8, + "title": "Don't Mess With My Man" + }, + { + "artist": "No Doubt Featuring Lady Saw", + "position": 9, + "title": "Underneath It All" + }, + { + "artist": "Santana Featuring Michelle Branch", + "position": 10, + "title": "The Game Of Love" + }, + { + "artist": "Erykah Badu Featuring Common", + "position": 11, + "title": "Love Of My Life (An Ode To Hip Hop)" + }, + { + "artist": "Sean Paul", + "position": 12, + "title": "Gimme The Light" + }, + { + "artist": "Puddle Of Mudd", + "position": 13, + "title": "She Hates Me" + }, + { + "artist": "Dixie Chicks", + "position": 14, + "title": "Landslide" + }, + { + "artist": "Aaliyah", + "position": 15, + "title": "Miss You" + }, + { + "artist": "Avril Lavigne", + "position": 16, + "title": "I'm With You" + }, + { + "artist": "LL Cool J", + "position": 17, + "title": "Luv U Better" + }, + { + "artist": "Musiq", + "position": 18, + "title": "dontchange" + }, + { + "artist": "2Pac", + "position": 19, + "title": "Thugz Mansion" + }, + { + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "position": 20, + "title": "Hey Ma" + }, + { + "artist": "Pink", + "position": 21, + "title": "Family Portrait" + }, + { + "artist": "John Mayer", + "position": 22, + "title": "Your Body Is A Wonderland" + }, + { + "artist": "George Strait", + "position": 23, + "title": "She'll Leave You With A Smile" + }, + { + "artist": "Creed", + "position": 24, + "title": "One Last Breath" + }, + { + "artist": "Jennifer Lopez Featuring LL Cool J", + "position": 25, + "title": "All I Have" + }, + { + "artist": "Nelly Featuring Kelly Rowland", + "position": 26, + "title": "Dilemma" + }, + { + "artist": "Clipse", + "position": 27, + "title": "When The Last Time" + }, + { + "artist": "Toby Keith", + "position": 28, + "title": "Who's Your Daddy?" + }, + { + "artist": "Justin Timberlake", + "position": 29, + "title": "Cry Me A River" + }, + { + "artist": "Rascal Flatts", + "position": 30, + "title": "These Days" + }, + { + "artist": "Mark Wills", + "position": 31, + "title": "19 Somethin'" + }, + { + "artist": "R. Kelly", + "position": 32, + "title": "Ignition" + }, + { + "artist": "matchbox twenty", + "position": 33, + "title": "Disease" + }, + { + "artist": "Kid Rock Featuring Sheryl Crow", + "position": 34, + "title": "Picture" + }, + { + "artist": "Madonna", + "position": 35, + "title": "Die Another Day" + }, + { + "artist": "Dru Hill", + "position": 36, + "title": "I Should Be..." + }, + { + "artist": "Jaheim Featuring Tha Rayne", + "position": 37, + "title": "Fabulous" + }, + { + "artist": "3 Doors Down", + "position": 38, + "title": "When I'm Gone" + }, + { + "artist": "Nas", + "position": 39, + "title": "Made You Look" + }, + { + "artist": "Kelly Rowland", + "position": 40, + "title": "Stole" + }, + { + "artist": "Avril Lavigne", + "position": 41, + "title": "Complicated" + }, + { + "artist": "Justin Timberlake", + "position": 42, + "title": "Like I Love You" + }, + { + "artist": "Baby Featuring P. Diddy", + "position": 43, + "title": "Do That..." + }, + { + "artist": "Emerson Drive", + "position": 44, + "title": "Fall Into Me" + }, + { + "artist": "Eve", + "position": 45, + "title": "Satisfaction" + }, + { + "artist": "Keith Urban", + "position": 46, + "title": "Somebody Like You" + }, + { + "artist": "Good Charlotte", + "position": 47, + "title": "Lifestyles Of The Rich And Famous" + }, + { + "artist": "Erick Sermon Featuring Redman", + "position": 48, + "title": "React" + }, + { + "artist": "50 Cent", + "position": 49, + "title": "Wanksta" + }, + { + "artist": "Foo Fighters", + "position": 50, + "title": "All My Life" + }, + { + "artist": "Amerie", + "position": 51, + "title": "Talkin' To Me" + }, + { + "artist": "Tim McGraw", + "position": 52, + "title": "Red Rag Top" + }, + { + "artist": "LL Cool J Featuring Amerie", + "position": 53, + "title": "Paradise" + }, + { + "artist": "Aaliyah", + "position": 54, + "title": "I Care 4 U" + }, + { + "artist": "Ja Rule Featuring Bobby Brown", + "position": 55, + "title": "Thug Lovin'" + }, + { + "artist": "Avril Lavigne", + "position": 56, + "title": "Sk8er Boi" + }, + { + "artist": "Blake Shelton", + "position": 57, + "title": "The Baby" + }, + { + "artist": "Nirvana", + "position": 58, + "title": "You Know You're Right" + }, + { + "artist": "Terri Clark", + "position": 59, + "title": "I Just Wanna Be Mad" + }, + { + "artist": "Kenny Chesney", + "position": 60, + "title": "A Lot Of Things Different" + }, + { + "artist": "Lasgo", + "position": 61, + "title": "Something" + }, + { + "artist": "Busta Rhymes Featuring Spliff Star", + "position": 62, + "title": "Make It Clap" + }, + { + "artist": "Saliva", + "position": 63, + "title": "Always" + }, + { + "artist": "Chevelle", + "position": 64, + "title": "The Red" + }, + { + "artist": "Norah Jones", + "position": 65, + "title": "Don't Know Why" + }, + { + "artist": "Christina Aguilera Featuring Redman", + "position": 66, + "title": "Dirrty" + }, + { + "artist": "Ja Rule Featuring Ashanti", + "position": 67, + "title": "Mesmerize" + }, + { + "artist": "Aaron Lines", + "position": 68, + "title": "You Can't Hide Beautiful" + }, + { + "artist": "Audioslave", + "position": 69, + "title": "Cochise" + }, + { + "artist": "O-Town", + "position": 70, + "title": "These Are The Days" + }, + { + "artist": "Lifehouse", + "position": 71, + "title": "Spin" + }, + { + "artist": "Seether", + "position": 72, + "title": "Fine Again" + }, + { + "artist": "Stone Sour", + "position": 73, + "title": "Bother" + }, + { + "artist": "Disturbed", + "position": 74, + "title": "Prayer" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ludacris", + "position": 75, + "title": "Gossip Folks" + }, + { + "artist": "Shania Twain", + "position": 76, + "title": "I'm Gonna Getcha Good!" + }, + { + "artist": "Kelly Clarkson", + "position": 77, + "title": "A Moment Like This" + }, + { + "artist": "Queens Of The Stone Age", + "position": 78, + "title": "No One Knows" + }, + { + "artist": "Field Mob", + "position": 79, + "title": "Sick Of Being Lonely" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 80, + "title": "The Zephyr Song" + }, + { + "artist": "Uncle Kracker", + "position": 81, + "title": "In A Little While" + }, + { + "artist": "TLC", + "position": 82, + "title": "Girl Talk" + }, + { + "artist": "Faith Hill", + "position": 83, + "title": "Cry" + }, + { + "artist": "Mariah Carey", + "position": 84, + "title": "Through The Rain" + }, + { + "artist": "Whitney Houston", + "position": 85, + "title": "One Of Those Days" + }, + { + "artist": "Snoop Dogg", + "position": 86, + "title": "From Tha Chuuuch To Da Palace" + }, + { + "artist": "Brooks & Dunn", + "position": 87, + "title": "Every River" + }, + { + "artist": "Our Lady Peace", + "position": 88, + "title": "Somewhere Out There" + }, + { + "artist": "Common Featuring Mary J. Blige", + "position": 89, + "title": "Come Close To Me" + }, + { + "artist": "System Of A Down", + "position": 90, + "title": "Aerials" + }, + { + "artist": "Isyss", + "position": 91, + "title": "Single For The Rest Of My Life" + }, + { + "artist": "Kylie Minogue", + "position": 92, + "title": "Come Into My World" + }, + { + "artist": "Benzino", + "position": 93, + "title": "Rock The Party" + }, + { + "artist": "Trick Daddy Featuring LaTocha Scott", + "position": 94, + "title": "Thug Holiday" + }, + { + "artist": "Toni Braxton Featuring Loon", + "position": 95, + "title": "Hit The Freeway" + }, + { + "artist": "Montgomery Gentry", + "position": 96, + "title": "My Town" + }, + { + "artist": "Alan Jackson", + "position": 97, + "title": "Work In Progress" + }, + { + "artist": "Telepopmusik", + "position": 98, + "title": "Breathe" + }, + { + "artist": "Michelle Branch", + "position": 99, + "title": "Goodbye To You" + }, + { + "artist": "Big Tymers Featuring Tateeze, Boo & Gotti", + "position": 100, + "title": "Oh Yeah!" + } + ], + "title": "2002 - Hot 100" + }, + { + "songs": [ + { + "artist": "Nickelback", + "position": 1, + "title": "How You Remind Me" + }, + { + "artist": "Pink", + "position": 2, + "title": "Get The Party Started" + }, + { + "artist": "Mary J. Blige", + "position": 3, + "title": "Family Affair" + }, + { + "artist": "Enrique Iglesias", + "position": 4, + "title": "Hero" + }, + { + "artist": "Usher", + "position": 5, + "title": "U Got It Bad" + }, + { + "artist": "Shakira", + "position": 6, + "title": "Whenever, Wherever" + }, + { + "artist": "Toya", + "position": 7, + "title": "I Do!!" + }, + { + "artist": "Ja Rule Featuring Case", + "position": 8, + "title": "Livin' It Up" + }, + { + "artist": "Nelly Furtado", + "position": 9, + "title": "Turn Off The Light" + }, + { + "artist": "The Calling", + "position": 10, + "title": "Wherever You Will Go" + }, + { + "artist": "Creed", + "position": 11, + "title": "My Sacrifice" + }, + { + "artist": "No Doubt Featuring Bounty Killer", + "position": 12, + "title": "Hey Baby" + }, + { + "artist": "Destiny's Child", + "position": 13, + "title": "Emotion" + }, + { + "artist": "Jennifer Lopez Featuring Ja Rule", + "position": 14, + "title": "I'm Real" + }, + { + "artist": "Five For Fighting", + "position": 15, + "title": "Superman (It's Not Easy)" + }, + { + "artist": "'N Sync", + "position": 16, + "title": "Gone" + }, + { + "artist": "Ginuwine", + "position": 17, + "title": "Differences" + }, + { + "artist": "Lenny Kravitz", + "position": 18, + "title": "Dig In" + }, + { + "artist": "Alicia Keys", + "position": 19, + "title": "Fallin'" + }, + { + "artist": "Nelly", + "position": 20, + "title": "#1" + } + ], + "title": "2001 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Alan Jackson", + "position": 1, + "title": "Where Were You (When The World Stopped Turning)" + }, + { + "artist": "Toby Keith", + "position": 2, + "title": "I Wanna Talk About Me" + }, + { + "artist": "George Strait", + "position": 3, + "title": "Run" + }, + { + "artist": "Aaron Tippin", + "position": 4, + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + { + "artist": "Steve Holy", + "position": 5, + "title": "Good Morning Beautiful" + }, + { + "artist": "Trace Adkins", + "position": 6, + "title": "I'm Tryin'" + }, + { + "artist": "David Ball", + "position": 7, + "title": "Riding With Private Malone" + }, + { + "artist": "Garth Brooks", + "position": 8, + "title": "Wrapped Up In You" + }, + { + "artist": "Brad Paisley", + "position": 9, + "title": "Wrapped Around" + }, + { + "artist": "Jo Dee Messina With Tim McGraw", + "position": 10, + "title": "Bring On The Rain" + }, + { + "artist": "Lonestar", + "position": 11, + "title": "With Me" + }, + { + "artist": "Brooks & Dunn", + "position": 12, + "title": "The Long Goodbye" + }, + { + "artist": "Joe Diffie", + "position": 13, + "title": "In Another World" + }, + { + "artist": "Brooks & Dunn", + "position": 14, + "title": "Only In America" + }, + { + "artist": "Tracy Byrd", + "position": 15, + "title": "Just Let Me Be In Love" + }, + { + "artist": "Tim McGraw", + "position": 16, + "title": "The Cowboy In Me" + }, + { + "artist": "Dixie Chicks", + "position": 17, + "title": "Some Days You Gotta Dance" + }, + { + "artist": "Travis Tritt", + "position": 18, + "title": "Love Of A Woman" + }, + { + "artist": "Martina McBride", + "position": 19, + "title": "Blessed" + }, + { + "artist": "Sara Evans", + "position": 20, + "title": "Saints & Angels" + }, + { + "artist": "Jamie O'Neal", + "position": 21, + "title": "Shiver" + }, + { + "artist": "Rascal Flatts", + "position": 22, + "title": "I'm Movin' On" + }, + { + "artist": "Chris Cagle", + "position": 23, + "title": "I Breathe In, I Breathe Out" + }, + { + "artist": "Blake Shelton", + "position": 24, + "title": "All Over Me" + }, + { + "artist": "Montgomery Gentry", + "position": 25, + "title": "Cold One Comin' On" + } + ], + "title": "2001 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Nickelback", + "position": 1, + "title": "How You Remind Me" + }, + { + "artist": "Usher", + "position": 2, + "title": "U Got It Bad" + }, + { + "artist": "Mary J. Blige", + "position": 3, + "title": "Family Affair" + }, + { + "artist": "Pink", + "position": 4, + "title": "Get The Party Started" + }, + { + "artist": "Enrique Iglesias", + "position": 5, + "title": "Hero" + }, + { + "artist": "Shakira", + "position": 6, + "title": "Whenever, Wherever" + }, + { + "artist": "Ja Rule Featuring Ashanti", + "position": 7, + "title": "Always On Time" + }, + { + "artist": "Ginuwine", + "position": 8, + "title": "Differences" + }, + { + "artist": "Creed", + "position": 9, + "title": "My Sacrifice" + }, + { + "artist": "Ja Rule Featuring Case", + "position": 10, + "title": "Livin' It Up" + }, + { + "artist": "Alicia Keys", + "position": 11, + "title": "A Woman's Worth" + }, + { + "artist": "Nelly Furtado", + "position": 12, + "title": "Turn Off The Light" + }, + { + "artist": "'N Sync", + "position": 13, + "title": "Gone" + }, + { + "artist": "Five For Fighting", + "position": 14, + "title": "Superman (It's Not Easy)" + }, + { + "artist": "The Calling", + "position": 15, + "title": "Wherever You Will Go" + }, + { + "artist": "Aaliyah", + "position": 16, + "title": "Rock The Boat" + }, + { + "artist": "Toya", + "position": 17, + "title": "I Do!!" + }, + { + "artist": "Jennifer Lopez Featuring Ja Rule", + "position": 18, + "title": "I'm Real" + }, + { + "artist": "Enya", + "position": 19, + "title": "Only Time" + }, + { + "artist": "Aaron Tippin", + "position": 20, + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + { + "artist": "Michael Jackson", + "position": 21, + "title": "Butterflies" + }, + { + "artist": "Fat Joe Featuring R. Kelly", + "position": 22, + "title": "We Thuggin'" + }, + { + "artist": "City High Featuring Eve", + "position": 23, + "title": "Caramel" + }, + { + "artist": "Alicia Keys", + "position": 24, + "title": "Fallin'" + }, + { + "artist": "Nelly", + "position": 25, + "title": "#1" + }, + { + "artist": "Linkin Park", + "position": 26, + "title": "In The End" + }, + { + "artist": "No Doubt Featuring Bounty Killer", + "position": 27, + "title": "Hey Baby" + }, + { + "artist": "Janet Featuring Missy Elliott, P. Diddy & Carly Simon", + "position": 28, + "title": "Son Of A Gun" + }, + { + "artist": "Destiny's Child", + "position": 29, + "title": "Emotion" + }, + { + "artist": "Alan Jackson", + "position": 30, + "title": "Where Were You (When The World Stopped Turning)" + }, + { + "artist": "Staind", + "position": 31, + "title": "It's Been Awhile" + }, + { + "artist": "Lenny Kravitz", + "position": 32, + "title": "Dig In" + }, + { + "artist": "Toby Keith", + "position": 33, + "title": "I Wanna Talk About Me" + }, + { + "artist": "Ludacris", + "position": 34, + "title": "Roll Out (My Business)" + }, + { + "artist": "Craig David", + "position": 35, + "title": "7 Days" + }, + { + "artist": "Jewel", + "position": 36, + "title": "Standing Still" + }, + { + "artist": "George Strait", + "position": 37, + "title": "Run" + }, + { + "artist": "Mr. Cheeks", + "position": 38, + "title": "Lights, Camera, Action!" + }, + { + "artist": "Steve Holy", + "position": 39, + "title": "Good Morning Beautiful" + }, + { + "artist": "Lifehouse", + "position": 40, + "title": "Hanging By A Moment" + }, + { + "artist": "Busta Rhymes", + "position": 41, + "title": "Break Ya Neck" + }, + { + "artist": "Train", + "position": 42, + "title": "Drops Of Jupiter (Tell Me)" + }, + { + "artist": "David Ball", + "position": 43, + "title": "Riding With Private Malone" + }, + { + "artist": "Trace Adkins", + "position": 44, + "title": "I'm Tryin'" + }, + { + "artist": "P.O.D.", + "position": 45, + "title": "Alive" + }, + { + "artist": "Garth Brooks", + "position": 46, + "title": "Wrapped Up In You" + }, + { + "artist": "Mystikal", + "position": 47, + "title": "Bouncin' Back (Bumpin' Me Against The Wall)" + }, + { + "artist": "Brad Paisley", + "position": 48, + "title": "Wrapped Around" + }, + { + "artist": "Faith Evans", + "position": 49, + "title": "You Gets No Love" + }, + { + "artist": "Petey Pablo", + "position": 50, + "title": "Raise Up" + }, + { + "artist": "OutKast Featuring Killer Mike", + "position": 51, + "title": "The Whole World" + }, + { + "artist": "Jay-Z", + "position": 52, + "title": "Girls, Girls, Girls" + }, + { + "artist": "Mary J. Blige", + "position": 53, + "title": "No More Drama" + }, + { + "artist": "Puddle Of Mudd", + "position": 54, + "title": "Blurry" + }, + { + "artist": "Maxwell", + "position": 55, + "title": "Lifetime" + }, + { + "artist": "Jo Dee Messina With Tim McGraw", + "position": 56, + "title": "Bring On The Rain" + }, + { + "artist": "LeAnn Rimes", + "position": 57, + "title": "Can't Fight The Moonlight" + }, + { + "artist": "Michelle Branch", + "position": 58, + "title": "Everywhere" + }, + { + "artist": "R. Kelly", + "position": 59, + "title": "The World's Greatest" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ginuwine & Tweet", + "position": 60, + "title": "Take Away" + }, + { + "artist": "Angie Stone", + "position": 61, + "title": "Brotha" + }, + { + "artist": "Fabolous", + "position": 62, + "title": "Young'n (Holla Back)" + }, + { + "artist": "Master P Featuring Weebie", + "position": 63, + "title": "Ooohhhwee" + }, + { + "artist": "Britney Spears", + "position": 64, + "title": "I'm A Slave 4 U" + }, + { + "artist": "Jagged Edge", + "position": 65, + "title": "Goodbye" + }, + { + "artist": "Brooks & Dunn", + "position": 66, + "title": "The Long Goodbye" + }, + { + "artist": "Travis Tritt", + "position": 67, + "title": "Love Of A Woman" + }, + { + "artist": "Joe", + "position": 68, + "title": "Let's Stay Home Tonight" + }, + { + "artist": "Incubus", + "position": 69, + "title": "Wish You Were Here" + }, + { + "artist": "Jermaine Dupri & Ludacris", + "position": 70, + "title": "Welcome To Atlanta" + }, + { + "artist": "Lonestar", + "position": 71, + "title": "With Me" + }, + { + "artist": "112", + "position": 72, + "title": "Dance With Me" + }, + { + "artist": "Lee Greenwood", + "position": 73, + "title": "God Bless The USA" + }, + { + "artist": "Jennifer Lopez Featuring Ja Rule", + "position": 74, + "title": "Ain't It Funny" + }, + { + "artist": "Juvenile", + "position": 75, + "title": "From Her Mama (Mama Got A**)" + }, + { + "artist": "Staind", + "position": 76, + "title": "Fade" + }, + { + "artist": "Glenn Lewis", + "position": 77, + "title": "Don't You Forget It" + }, + { + "artist": "U2", + "position": 78, + "title": "Stuck In A Moment You Can't Get Out Of" + }, + { + "artist": "Alien Ant Farm", + "position": 79, + "title": "Smooth Criminal" + }, + { + "artist": "Backstreet Boys", + "position": 80, + "title": "Drowning" + }, + { + "artist": "Mariah Carey", + "position": 81, + "title": "Never Too Far/Hero (Medley)" + }, + { + "artist": "Christina Milian", + "position": 82, + "title": "AM To PM" + }, + { + "artist": "Alan Jackson", + "position": 83, + "title": "Where I Come From" + }, + { + "artist": "Brian McKnight", + "position": 84, + "title": "Love Of My Life" + }, + { + "artist": "Method Man & Redman", + "position": 85, + "title": "Part II" + }, + { + "artist": "Puddle Of Mudd", + "position": 86, + "title": "Control" + }, + { + "artist": "Tim McGraw", + "position": 87, + "title": "Angry All The Time" + }, + { + "artist": "Bubba Sparxxx", + "position": 88, + "title": "Ugly" + }, + { + "artist": "Whitney Houston", + "position": 89, + "title": "The Star Spangled Banner" + }, + { + "artist": "Michael Jackson", + "position": 90, + "title": "You Rock My World" + }, + { + "artist": "Ludacris, LL Cool J & Keith Murray", + "position": 91, + "title": "Fatty Girl" + }, + { + "artist": "R. Kelly", + "position": 92, + "title": "Feelin' On Yo Booty" + }, + { + "artist": "Nas", + "position": 93, + "title": "Got Ur Self A..." + }, + { + "artist": "Tyrese", + "position": 94, + "title": "What Am I Gonna Do" + }, + { + "artist": "Reba", + "position": 95, + "title": "I'm A Survivor" + }, + { + "artist": "R.L., Snoop Dogg & Lil' Kim", + "position": 96, + "title": "Do U Wanna Roll (Dolittle Theme)" + }, + { + "artist": "Babyface", + "position": 97, + "title": "What If" + }, + { + "artist": "Jonell & Method Man", + "position": 98, + "title": "Round & Round" + }, + { + "artist": "Daniel Rodriguez", + "position": 99, + "title": "God Bless America" + }, + { + "artist": "DMX", + "position": 100, + "title": "Who We Be" + } + ], + "title": "2001 - Hot 100" + }, + { + "songs": [ + { + "artist": "Destiny's Child", + "position": 1, + "title": "Independent Women Part I" + }, + { + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "position": 2, + "title": "It Wasn't Me" + }, + { + "artist": "Mya", + "position": 3, + "title": "Case Of The Ex (Whatcha Gonna Do)" + }, + { + "artist": "Creed", + "position": 4, + "title": "With Arms Wide Open" + }, + { + "artist": "matchbox twenty", + "position": 5, + "title": "If You're Gone" + }, + { + "artist": "Dream", + "position": 6, + "title": "He Loves U Not" + }, + { + "artist": "Samantha Mumba", + "position": 7, + "title": "Gotta Tell You" + }, + { + "artist": "Debelah Morgan", + "position": 8, + "title": "Dance With Me" + }, + { + "artist": "3 Doors Down", + "position": 9, + "title": "Kryptonite" + }, + { + "artist": "Pink", + "position": 10, + "title": "Most Girls" + }, + { + "artist": "'N Sync", + "position": 11, + "title": "This I Promise You" + }, + { + "artist": "Lenny Kravitz", + "position": 12, + "title": "Again" + }, + { + "artist": "Jennifer Lopez", + "position": 13, + "title": "Love Don't Cost A Thing" + }, + { + "artist": "Evan And Jaron", + "position": 14, + "title": "Crazy For This Girl" + }, + { + "artist": "Kandi", + "position": 15, + "title": "Don't Think I'm Not" + }, + { + "artist": "Madonna", + "position": 16, + "title": "Don't Tell Me" + }, + { + "artist": "Britney Spears", + "position": 17, + "title": "Stronger" + }, + { + "artist": "SoulDecision Featuring Thrust", + "position": 18, + "title": "Faded" + }, + { + "artist": "Backstreet Boys", + "position": 19, + "title": "Shape Of My Heart" + }, + { + "artist": "Faith Hill", + "position": 20, + "title": "The Way You Love Me" + } + ], + "title": "2000 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Tim McGraw", + "position": 1, + "title": "My Next Thirty Years" + }, + { + "artist": "Dixie Chicks", + "position": 2, + "title": "Without You" + }, + { + "artist": "Sara Evans", + "position": 3, + "title": "Born To Fly" + }, + { + "artist": "Kenny Chesney", + "position": 4, + "title": "I Lost It" + }, + { + "artist": "Brad Paisley", + "position": 5, + "title": "We Danced" + }, + { + "artist": "Alan Jackson", + "position": 6, + "title": "www.memory" + }, + { + "artist": "Lonestar", + "position": 7, + "title": "Tell Her" + }, + { + "artist": "Phil Vassar", + "position": 8, + "title": "Just Another Day In Paradise" + }, + { + "artist": "Jo Dee Messina", + "position": 9, + "title": "Burn" + }, + { + "artist": "Travis Tritt", + "position": 10, + "title": "Best Of Intentions" + }, + { + "artist": "Lee Ann Womack", + "position": 11, + "title": "Ashes By Now" + }, + { + "artist": "Jamie O'Neal", + "position": 12, + "title": "There Is No Arizona" + }, + { + "artist": "Rascal Flatts", + "position": 13, + "title": "This Everyday Love" + }, + { + "artist": "John Michael Montgomery", + "position": 14, + "title": "The Little Girl" + }, + { + "artist": "Terri Clark", + "position": 15, + "title": "A Little Gasoline" + }, + { + "artist": "Keith Urban", + "position": 16, + "title": "But For The Grace Of God" + }, + { + "artist": "Garth Brooks", + "position": 17, + "title": "Wild Horses" + }, + { + "artist": "Toby Keith", + "position": 18, + "title": "You Shouldn't Kiss Me Like This" + }, + { + "artist": "The Clark Family Experience", + "position": 19, + "title": "Meanwhile Back At The Ranch" + }, + { + "artist": "Darryl Worley", + "position": 20, + "title": "A Good Day To Run" + }, + { + "artist": "Alabama", + "position": 21, + "title": "When It All Goes South" + }, + { + "artist": "Chris Cagle", + "position": 22, + "title": "My Love Goes On And On" + }, + { + "artist": "Andy Griggs", + "position": 23, + "title": "You Made Me That Way" + }, + { + "artist": "Aaron Tippin", + "position": 24, + "title": "Kiss This" + }, + { + "artist": "SheDaisy", + "position": 25, + "title": "Lucky 4 You (Tonight I'm Just Me)" + } + ], + "title": "2000 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Destiny's Child", + "position": 1, + "title": "Independent Women Part I" + }, + { + "artist": "Dream", + "position": 2, + "title": "He Loves U Not" + }, + { + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "position": 3, + "title": "It Wasn't Me" + }, + { + "artist": "Mya", + "position": 4, + "title": "Case Of The Ex (Whatcha Gonna Do)" + }, + { + "artist": "Creed", + "position": 5, + "title": "With Arms Wide Open" + }, + { + "artist": "OutKast", + "position": 6, + "title": "Ms. Jackson" + }, + { + "artist": "Faith Hill", + "position": 7, + "title": "The Way You Love Me" + }, + { + "artist": "matchbox twenty", + "position": 8, + "title": "If You're Gone" + }, + { + "artist": "3 Doors Down", + "position": 9, + "title": "Kryptonite" + }, + { + "artist": "Debelah Morgan", + "position": 10, + "title": "Dance With Me" + }, + { + "artist": "Jay-Z", + "position": 11, + "title": "I Just Wanna Love U (Give It 2 Me)" + }, + { + "artist": "'N Sync", + "position": 12, + "title": "This I Promise You" + }, + { + "artist": "Samantha Mumba", + "position": 13, + "title": "Gotta Tell You" + }, + { + "artist": "Pink", + "position": 14, + "title": "Most Girls" + }, + { + "artist": "R. Kelly", + "position": 15, + "title": "I Wish" + }, + { + "artist": "Lenny Kravitz", + "position": 16, + "title": "Again" + }, + { + "artist": "O-Town", + "position": 17, + "title": "Liquid Dreams" + }, + { + "artist": "Nelly", + "position": 18, + "title": "E.I." + }, + { + "artist": "Backstreet Boys", + "position": 19, + "title": "Shape Of My Heart" + }, + { + "artist": "Jennifer Lopez", + "position": 20, + "title": "Love Don't Cost A Thing" + }, + { + "artist": "Ja Rule Featuring Christina Milian", + "position": 21, + "title": "Between Me And You" + }, + { + "artist": "Barenaked Ladies", + "position": 22, + "title": "Pinch Me" + }, + { + "artist": "Evan And Jaron", + "position": 23, + "title": "Crazy For This Girl" + }, + { + "artist": "Ludacris Featuring Shawna", + "position": 24, + "title": "What's Your Fantasy" + }, + { + "artist": "U2", + "position": 25, + "title": "Beautiful Day" + }, + { + "artist": "Avant Featuring Ketara Wyatt", + "position": 26, + "title": "My First Love" + }, + { + "artist": "Madonna", + "position": 27, + "title": "Music" + }, + { + "artist": "Tim McGraw", + "position": 28, + "title": "My Next Thirty Years" + }, + { + "artist": "Britney Spears", + "position": 29, + "title": "Stronger" + }, + { + "artist": "Madonna", + "position": 30, + "title": "Don't Tell Me" + }, + { + "artist": "Musiq", + "position": 31, + "title": "Just Friends (Sunny)" + }, + { + "artist": "Mystikal Featuring Nivea", + "position": 32, + "title": "Danger (Been So Long)" + }, + { + "artist": "Dixie Chicks", + "position": 33, + "title": "Without You" + }, + { + "artist": "Sara Evans", + "position": 34, + "title": "Born To Fly" + }, + { + "artist": "Fuel", + "position": 35, + "title": "Hemorrhage (In My Hands)" + }, + { + "artist": "Kenny Chesney", + "position": 36, + "title": "I Lost It" + }, + { + "artist": "matchbox twenty", + "position": 37, + "title": "Bent" + }, + { + "artist": "K-Ci & JoJo", + "position": 38, + "title": "Crazy" + }, + { + "artist": "Mikaila", + "position": 39, + "title": "So In Love With Two" + }, + { + "artist": "Kandi", + "position": 40, + "title": "Don't Think I'm Not" + }, + { + "artist": "Lil Bow Wow", + "position": 41, + "title": "Bow Wow (That's My Name)" + }, + { + "artist": "Brad Paisley", + "position": 42, + "title": "We Danced" + }, + { + "artist": "Ricky Martin", + "position": 43, + "title": "She Bangs" + }, + { + "artist": "98 Degrees", + "position": 44, + "title": "My Everything" + }, + { + "artist": "Travis Tritt", + "position": 45, + "title": "Best Of Intentions" + }, + { + "artist": "Vertical Horizon", + "position": 46, + "title": "You're A God" + }, + { + "artist": "Carl Thomas", + "position": 47, + "title": "Emotional" + }, + { + "artist": "3LW", + "position": 48, + "title": "No More (Baby I'ma Do Right)" + }, + { + "artist": "Alan Jackson", + "position": 49, + "title": "www.memory" + }, + { + "artist": "Lonestar", + "position": 50, + "title": "Tell Her" + }, + { + "artist": "Phil Vassar", + "position": 51, + "title": "Just Another Day In Paradise" + }, + { + "artist": "Public Announcement", + "position": 52, + "title": "Mamacita" + }, + { + "artist": "Wyclef Jean Featuring Mary J. Blige", + "position": 53, + "title": "911" + }, + { + "artist": "Dave Hollister", + "position": 54, + "title": "One Woman Man" + }, + { + "artist": "Eminem Featuring Dido", + "position": 55, + "title": "Stan" + }, + { + "artist": "Lee Ann Womack", + "position": 56, + "title": "Ashes By Now" + }, + { + "artist": "Vitamin C", + "position": 57, + "title": "The Itch" + }, + { + "artist": "Jo Dee Messina", + "position": 58, + "title": "Burn" + }, + { + "artist": "Moby Featuring Gwen Stefani", + "position": 59, + "title": "South Side" + }, + { + "artist": "Cash Money Millionaires", + "position": 60, + "title": "Project Chick" + }, + { + "artist": "3 Doors Down", + "position": 61, + "title": "Loser" + }, + { + "artist": "John Michael Montgomery", + "position": 62, + "title": "The Little Girl" + }, + { + "artist": "David Gray", + "position": 63, + "title": "Babylon" + }, + { + "artist": "Jagged Edge", + "position": 64, + "title": "Promise" + }, + { + "artist": "112", + "position": 65, + "title": "It's Over Now" + }, + { + "artist": "Erykah Badu", + "position": 66, + "title": "Bag Lady" + }, + { + "artist": "Jamie O'Neal", + "position": 67, + "title": "There Is No Arizona" + }, + { + "artist": "NewSong", + "position": 68, + "title": "The Christmas Shoes" + }, + { + "artist": "BBMak", + "position": 69, + "title": "Still On Your Side" + }, + { + "artist": "Garth Brooks", + "position": 70, + "title": "Wild Horses" + }, + { + "artist": "Memphis Bleek Featuring Jay-Z & Missy Elliott", + "position": 71, + "title": "Is That Your Chick" + }, + { + "artist": "Keith Urban", + "position": 72, + "title": "But For The Grace Of God" + }, + { + "artist": "Limp Bizkit", + "position": 73, + "title": "Rollin'" + }, + { + "artist": "Kelly Price", + "position": 74, + "title": "You Should've Told Me" + }, + { + "artist": "Profyle", + "position": 75, + "title": "Liar" + }, + { + "artist": "Rascal Flatts", + "position": 76, + "title": "This Everyday Love" + }, + { + "artist": "Toby Keith", + "position": 77, + "title": "You Shouldn't Kiss Me Like This" + }, + { + "artist": "The Offspring", + "position": 78, + "title": "Original Prankster" + }, + { + "artist": "Yolanda Adams", + "position": 79, + "title": "Open My Heart" + }, + { + "artist": "Xzibit", + "position": 80, + "title": "X" + }, + { + "artist": "Shaggy Featuring Rayvon", + "position": 81, + "title": "Angel" + }, + { + "artist": "The Clark Family Experience", + "position": 82, + "title": "Meanwhile Back At The Ranch" + }, + { + "artist": "Billy Gilman", + "position": 83, + "title": "Oklahoma" + }, + { + "artist": "Beenie Man Featuring Mya", + "position": 84, + "title": "Girls Dem Sugar" + }, + { + "artist": "Ja Rule Featuring Lil' Mo And Vita", + "position": 85, + "title": "Put It On Me" + }, + { + "artist": "LeAnn Rimes", + "position": 86, + "title": "Can't Fight The Moonlight" + }, + { + "artist": "Jaheim", + "position": 87, + "title": "Could It Be" + }, + { + "artist": "Terri Clark", + "position": 88, + "title": "A Little Gasoline" + }, + { + "artist": "Lil' Kim Featuring Sisqo", + "position": 89, + "title": "How Many Licks?" + }, + { + "artist": "Boyz II Men", + "position": 90, + "title": "Thank You In Advance" + }, + { + "artist": "Chris Cagle", + "position": 91, + "title": "My Love Goes On And On" + }, + { + "artist": "Mos Def & Pharoahe Monch Featuring Nate Dogg", + "position": 92, + "title": "Oh No" + }, + { + "artist": "Marc Anthony", + "position": 93, + "title": "My Baby You" + }, + { + "artist": "98 Degrees", + "position": 94, + "title": "Give Me Just One Night (Una Noche)" + }, + { + "artist": "George Strait", + "position": 95, + "title": "Go On" + }, + { + "artist": "De La Soul Featuring Chaka Khan", + "position": 96, + "title": "All Good?" + }, + { + "artist": "Aaron Tippin", + "position": 97, + "title": "Kiss This" + }, + { + "artist": "Sunday", + "position": 98, + "title": "I Know" + }, + { + "artist": "Vince Gill", + "position": 99, + "title": "Feels Like Love" + }, + { + "artist": "Nine Days", + "position": 100, + "title": "If I Am" + } + ], + "title": "2000 - Hot 100" + }, + { + "songs": [ + { + "artist": "Faith Hill", + "position": 1, + "title": "Breathe" + }, + { + "artist": "Brad Paisley", + "position": 2, + "title": "He Didn't Have To Be" + }, + { + "artist": "Clint Black", + "position": 3, + "title": "When I Said I Do" + }, + { + "artist": "Reba", + "position": 4, + "title": "What Do You Say" + }, + { + "artist": "Dixie Chicks", + "position": 5, + "title": "Cowboy Take Me Away" + }, + { + "artist": "Alan Jackson", + "position": 6, + "title": "Pop A Top" + }, + { + "artist": "Tim McGraw", + "position": 7, + "title": "My Best Friend" + }, + { + "artist": "Yankee Grey", + "position": 8, + "title": "All Things Considered" + }, + { + "artist": "LeAnn Rimes", + "position": 9, + "title": "Big Deal" + }, + { + "artist": "John Michael Montgomery", + "position": 10, + "title": "Home To You" + }, + { + "artist": "Martina McBride", + "position": 11, + "title": "I Love You" + }, + { + "artist": "Tim McGraw", + "position": 12, + "title": "Something Like That" + }, + { + "artist": "Kenny Chesney", + "position": 13, + "title": "She Thinks My Tractor's Sexy" + }, + { + "artist": "Lonestar", + "position": 14, + "title": "Smile" + }, + { + "artist": "Shania Twain", + "position": 15, + "title": "Come On Over" + }, + { + "artist": "Clay Walker", + "position": 16, + "title": "Live, Laugh, Love" + }, + { + "artist": "Tracy Byrd", + "position": 17, + "title": "Put Your Hand In Mine" + }, + { + "artist": "Gary Allan", + "position": 18, + "title": "Smoke Rings In The Dark" + }, + { + "artist": "Ty Herndon", + "position": 19, + "title": "Steam" + }, + { + "artist": "Mark Wills", + "position": 20, + "title": "Back At One" + }, + { + "artist": "Brooks & Dunn", + "position": 21, + "title": "Beer Thirty" + }, + { + "artist": "George Strait", + "position": 22, + "title": "What Do You Say To That" + }, + { + "artist": "Lonestar", + "position": 23, + "title": "Amazed" + }, + { + "artist": "Joe Diffie", + "position": 24, + "title": "The Quittin' Kind" + }, + { + "artist": "Jo Dee Messina", + "position": 25, + "title": "Because You Love Me" + } + ], + "title": "1999 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Santana Featuring Rob Thomas", + "position": 1, + "title": "Smooth" + }, + { + "artist": "Brian McKnight", + "position": 2, + "title": "Back At One" + }, + { + "artist": "Jessica Simpson", + "position": 3, + "title": "I Wanna Love You Forever" + }, + { + "artist": "Savage Garden", + "position": 4, + "title": "I Knew I Loved You" + }, + { + "artist": "Whitney Houston", + "position": 5, + "title": "My Love Is Your Love" + }, + { + "artist": "Marc Anthony", + "position": 6, + "title": "I Need To Know" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring NAS, EVE & Q-Tip", + "position": 7, + "title": "Hot Boyz" + }, + { + "artist": "Donell Jones", + "position": 8, + "title": "U Know What's Up" + }, + { + "artist": "Blaque", + "position": 9, + "title": "Bring It All To Me" + }, + { + "artist": "Kevon Edmonds", + "position": 10, + "title": "24/7" + }, + { + "artist": "LFO", + "position": 11, + "title": "Girl On TV" + }, + { + "artist": "Jennifer Lopez", + "position": 12, + "title": "Waiting For Tonight" + }, + { + "artist": "Christina Aguilera", + "position": 13, + "title": "What A Girl Wants" + }, + { + "artist": "Smash Mouth", + "position": 14, + "title": "Then The Morning Comes" + }, + { + "artist": "Len", + "position": 15, + "title": "Steal My Sunshine" + }, + { + "artist": "Eiffel 65", + "position": 16, + "title": "Blue (Da Ba Dee)" + }, + { + "artist": "Jagged Edge", + "position": 17, + "title": "He Can't Love U" + }, + { + "artist": "Lou Bega", + "position": 18, + "title": "Mambo No. 5 (A Little Bit Of...)" + }, + { + "artist": "702", + "position": 19, + "title": "Where My Girls At?" + }, + { + "artist": "TLC", + "position": 20, + "title": "Unpretty" + }, + { + "artist": "Train", + "position": 21, + "title": "Meet Virginia" + }, + { + "artist": "Foo Fighters", + "position": 22, + "title": "Learn To Fly" + }, + { + "artist": "Sole Featuring JT Money & Kandi", + "position": 23, + "title": "4, 5, 6" + }, + { + "artist": "Montell Jordan", + "position": 24, + "title": "Get It On Tonite" + }, + { + "artist": "Juvenile Featuring Mannie Fresh & Lil' Wayne", + "position": 25, + "title": "Back That Thang Up" + }, + { + "artist": "LeAnn Rimes", + "position": 26, + "title": "Big Deal" + }, + { + "artist": "Ideal", + "position": 27, + "title": "Get Gone" + }, + { + "artist": "Faith Hill", + "position": 28, + "title": "Breathe" + }, + { + "artist": "Guy", + "position": 29, + "title": "Dancin'" + }, + { + "artist": "Celine Dion", + "position": 30, + "title": "That's The Way It Is" + }, + { + "artist": "Brad Paisley", + "position": 31, + "title": "He Didn't Have To Be" + }, + { + "artist": "Puff Daddy Featuring R. Kelly", + "position": 32, + "title": "Satisfy You" + }, + { + "artist": "Ol' Dirty Bastard Featuring Kelis", + "position": 33, + "title": "Got Your Money" + }, + { + "artist": "Sugar Ray", + "position": 34, + "title": "Someday" + }, + { + "artist": "Counting Crows", + "position": 35, + "title": "Hanginaround" + }, + { + "artist": "IMx", + "position": 36, + "title": "Stay The Night" + }, + { + "artist": "Goo Goo Dolls", + "position": 37, + "title": "Black Balloon" + }, + { + "artist": "Filter", + "position": 38, + "title": "Take A Picture" + }, + { + "artist": "Ricky Martin", + "position": 39, + "title": "Shake Your Bon-Bon" + }, + { + "artist": "Mint Condition", + "position": 40, + "title": "If You Love Me" + }, + { + "artist": "Clint Black", + "position": 41, + "title": "When I Said I Do" + }, + { + "artist": "Ice Cube Featuring Mack 10 & Ms. Toi", + "position": 42, + "title": "You Can Do It" + }, + { + "artist": "Marc Nelson", + "position": 43, + "title": "15 Minutes" + }, + { + "artist": "M2M", + "position": 44, + "title": "Don't Say You Love Me" + }, + { + "artist": "Lonestar", + "position": 45, + "title": "Amazed" + }, + { + "artist": "Reba", + "position": 46, + "title": "What Do You Say" + }, + { + "artist": "Christina Aguilera", + "position": 47, + "title": "The Christmas Song (Chestnuts Roasting On An Open Fire)" + }, + { + "artist": "Sisqo Featuring Make It Hot", + "position": 48, + "title": "Got To Get It" + }, + { + "artist": "Tal Bachman", + "position": 49, + "title": "She's So High" + }, + { + "artist": "Mariah Carey Featuring Joe & 98 Degrees", + "position": 50, + "title": "Thank God I Found You" + }, + { + "artist": "Mariah Carey Featuring Jay-Z", + "position": 51, + "title": "Heartbreaker" + }, + { + "artist": "Dixie Chicks", + "position": 52, + "title": "Cowboy Take Me Away" + }, + { + "artist": "Britney Spears", + "position": 53, + "title": "(You Drive Me) Crazy" + }, + { + "artist": "Tim McGraw", + "position": 54, + "title": "My Best Friend" + }, + { + "artist": "Alan Jackson", + "position": 55, + "title": "Pop A Top" + }, + { + "artist": "Robbie Williams", + "position": 56, + "title": "Angels" + }, + { + "artist": "Yankee Grey", + "position": 57, + "title": "All Things Considered" + }, + { + "artist": "Will Smith Featuring K-Ci", + "position": 58, + "title": "Will 2K" + }, + { + "artist": "Blink-182", + "position": 59, + "title": "All The Small Things" + }, + { + "artist": "Martina McBride", + "position": 60, + "title": "I Love You" + }, + { + "artist": "Creed", + "position": 61, + "title": "Higher" + }, + { + "artist": "B.G. Featuring Baby, Turk, Mannie Fresh, Juvenile & Lil' Wayne", + "position": 62, + "title": "Bling Bling" + }, + { + "artist": "Kelis", + "position": 63, + "title": "Caught Out There" + }, + { + "artist": "Mary J. Blige", + "position": 64, + "title": "Deep Inside" + }, + { + "artist": "Tim McGraw", + "position": 65, + "title": "Something Like That" + }, + { + "artist": "Eve", + "position": 66, + "title": "Gotta Man" + }, + { + "artist": "Enrique Iglesias", + "position": 67, + "title": "Rhythm Divine" + }, + { + "artist": "John Michael Montgomery", + "position": 68, + "title": "Home To You" + }, + { + "artist": "Amber", + "position": 69, + "title": "Sexual (Li Da Di)" + }, + { + "artist": "Backstreet Boys", + "position": 70, + "title": "Larger Than Life" + }, + { + "artist": "Ginuwine", + "position": 71, + "title": "None Of Ur Friends Business" + }, + { + "artist": "Destiny's Child", + "position": 72, + "title": "Bug A Boo" + }, + { + "artist": "Bush", + "position": 73, + "title": "The Chemicals Between Us" + }, + { + "artist": "Kenny Chesney", + "position": 74, + "title": "She Thinks My Tractor's Sexy" + }, + { + "artist": "D'Angelo Featuring Method Man And Redman", + "position": 75, + "title": "Left & Right" + }, + { + "artist": "Sixpence None The Richer", + "position": 76, + "title": "There She Goes" + }, + { + "artist": "Deborah Cox With R.L.", + "position": 77, + "title": "We Can't Be Friends" + }, + { + "artist": "Limp Bizkit Featuring Method Man", + "position": 78, + "title": "N 2 Gether Now" + }, + { + "artist": "R.E.M.", + "position": 79, + "title": "The Great Beyond" + }, + { + "artist": "Lonestar", + "position": 80, + "title": "Smile" + }, + { + "artist": "Shania Twain", + "position": 81, + "title": "Come On Over" + }, + { + "artist": "Fatboy Slim", + "position": 82, + "title": "The Rockafeller Skank" + }, + { + "artist": "Destiny's Child", + "position": 83, + "title": "Say My Name" + }, + { + "artist": "Lil' Wayne Featuring Juvenile & B.G.", + "position": 84, + "title": "Tha Block Is Hot" + }, + { + "artist": "'N Sync & Gloria Estefan", + "position": 85, + "title": "Music Of My Heart" + }, + { + "artist": "Angie Stone", + "position": 86, + "title": "No More Rain (In This Cloud)" + }, + { + "artist": "Rage Against The Machine", + "position": 87, + "title": "Guerrilla Radio" + }, + { + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Lil' Kim", + "position": 88, + "title": "Notorious B.I.G." + }, + { + "artist": "Kenny G", + "position": 89, + "title": "Auld Lang Syne" + }, + { + "artist": "Chico DeBarge", + "position": 90, + "title": "Give You What You Want (Fa Sure)" + }, + { + "artist": "Ty Herndon", + "position": 91, + "title": "Steam" + }, + { + "artist": "Prince", + "position": 92, + "title": "The Greatest Romance Ever Sold" + }, + { + "artist": "Warren G Featuring Mack 10", + "position": 93, + "title": "I Want It All" + }, + { + "artist": "Clay Walker", + "position": 94, + "title": "Live, Laugh, Love" + }, + { + "artist": "Limp Bizkit", + "position": 95, + "title": "Re-arranged" + }, + { + "artist": "J-Shin Featuring LaTocha Scott", + "position": 96, + "title": "One Night Stand" + }, + { + "artist": "SheDaisy", + "position": 97, + "title": "Deck The Halls" + }, + { + "artist": "Dr. Dre Featuring Snoop Dogg", + "position": 98, + "title": "Still D.R.E." + }, + { + "artist": "Beth Hart", + "position": 99, + "title": "L.A. Song" + }, + { + "artist": "Nas", + "position": 100, + "title": "NAStradamus" + } + ], + "title": "1999 - Hot 100" + }, + { + "songs": [ + { + "artist": "Terri Clark", + "position": 1, + "title": "You re Easy On The Eyes" + }, + { + "artist": "Brooks", + "position": 2, + "title": "Husbands And Wives" + }, + { + "artist": "Collin Raye", + "position": 3, + "title": "Someone You Used To Know" + }, + { + "artist": "Faith Hill", + "position": 4, + "title": "Let Me Let Go" + }, + { + "artist": "Clay Walker", + "position": 5, + "title": "You re Beginning To Get To Me" + }, + { + "artist": "Alan Jackson", + "position": 6, + "title": "Right On The Money" + }, + { + "artist": "Martina McBride", + "position": 7, + "title": "Wrong Again" + }, + { + "artist": "Aaron Tippin", + "position": 8, + "title": "For You I Will" + }, + { + "artist": "Blackhawk", + "position": 9, + "title": "There You Have It" + }, + { + "artist": "George Strait", + "position": 10, + "title": "We Really Shouldn t Be Doing This" + }, + { + "artist": "Tim McGraw", + "position": 11, + "title": "For A Little While" + }, + { + "artist": "Ty Herndon", + "position": 12, + "title": "It Must Be Love" + }, + { + "artist": "Randy Travis", + "position": 13, + "title": "Spirit Of A Boy, Wisdom Of A Man" + }, + { + "artist": "Jo Dee Messina", + "position": 14, + "title": "Stand Beside Me" + }, + { + "artist": "Reba", + "position": 15, + "title": "Wrong Night" + }, + { + "artist": "Diamond Rio", + "position": 16, + "title": "Unbelievable" + }, + { + "artist": "Dixie Chicks", + "position": 17, + "title": "Wide Open Spaces" + }, + { + "artist": "John Michael Montgomery", + "position": 18, + "title": "Hold On To Me" + }, + { + "artist": "Mark Chesnutt", + "position": 19, + "title": "I Don t Want To Miss A Thing" + }, + { + "artist": "Garth Brooks", + "position": 20, + "title": "It s Your Song" + }, + { + "artist": "Toby Keith", + "position": 21, + "title": "Getcha Some" + }, + { + "artist": "Sara Evans", + "position": 22, + "title": "No Place That Far" + }, + { + "artist": "Tim McGraw", + "position": 23, + "title": "Where The Green Grass Grows" + }, + { + "artist": "Billy Ray Cyrus", + "position": 24, + "title": "Busy Man" + }, + { + "artist": "The Wilkinsons", + "position": 25, + "title": "Fly (The Angel Song)" + } + ], + "title": "1998 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "R. Kelly", + "position": 1, + "title": "I m Your Angel" + }, + { + "artist": "Deborah Cox", + "position": 2, + "title": "Nobody s Supposed To Be Here" + }, + { + "artist": "Divine", + "position": 3, + "title": "Lately" + }, + { + "artist": "Shania Twain", + "position": 4, + "title": "From This Moment On" + }, + { + "artist": "Britney Spears", + "position": 5, + "title": "...Baby One More Time" + }, + { + "artist": "98 Degrees", + "position": 6, + "title": "Because Of You" + }, + { + "artist": "Lauryn Hill", + "position": 7, + "title": "Doo Wop (That Thing)" + }, + { + "artist": "Faith Evans", + "position": 8, + "title": "Love Like This" + }, + { + "artist": "Brandy", + "position": 9, + "title": "Have You Ever?" + }, + { + "artist": "Shawn Mullins", + "position": 10, + "title": "Lullaby" + }, + { + "artist": "Spice Girls", + "position": 11, + "title": "Goodbye" + }, + { + "artist": "Total Featuring Missy Elliott", + "position": 12, + "title": "Trippin" + }, + { + "artist": "Eagle-Eye Cherry", + "position": 13, + "title": "Save Tonight" + }, + { + "artist": "Faith Hill", + "position": 14, + "title": "This Kiss" + }, + { + "artist": "Jewel", + "position": 15, + "title": "Hands" + }, + { + "artist": "Third Eye Blind", + "position": 16, + "title": "Jumper" + }, + { + "artist": "Goo Goo Dolls", + "position": 17, + "title": "Slide" + }, + { + "artist": "Goo Goo Dolls", + "position": 18, + "title": "Iris" + }, + { + "artist": "Monica", + "position": 19, + "title": "The First Night" + }, + { + "artist": "Jay-Z Featuring Amil (Of Major Coinz)", + "position": 20, + "title": "Can I Get A..." + }, + { + "artist": "112 Featuring Mase", + "position": 21, + "title": "Love Me" + }, + { + "artist": "Edwin McCain", + "position": 22, + "title": "I ll Be" + }, + { + "artist": "Dru Hill Featuring Redman", + "position": 23, + "title": "How Deep Is Your Love" + }, + { + "artist": "Sheryl Crow", + "position": 24, + "title": "My Favorite Mistake" + }, + { + "artist": "BLACKstreet", + "position": 25, + "title": "Take Me There" + }, + { + "artist": "Alanis Morissette", + "position": 26, + "title": "Thank U" + }, + { + "artist": "Barenaked Ladies", + "position": 27, + "title": "One Week" + }, + { + "artist": "Sarah McLachlan", + "position": 28, + "title": "Angel" + }, + { + "artist": "Aaliyah", + "position": 29, + "title": "Are You That Somebody?" + }, + { + "artist": "Will Smith", + "position": 30, + "title": "Miami" + }, + { + "artist": "Eve 6", + "position": 31, + "title": "Inside Out" + }, + { + "artist": "Next", + "position": 32, + "title": "Too Close" + }, + { + "artist": "Monifah", + "position": 33, + "title": "Touch It" + }, + { + "artist": "N Sync", + "position": 34, + "title": "(God Must Have Spent) A Little More Time On You" + }, + { + "artist": "Jay-Z", + "position": 35, + "title": "Hard Knock Life (Ghetto Anthem)" + }, + { + "artist": "Dru Hill", + "position": 36, + "title": "These Are The Times" + }, + { + "artist": "Monica", + "position": 37, + "title": "Angel Of Mine" + }, + { + "artist": "2Pac", + "position": 38, + "title": "Changes" + }, + { + "artist": "Clay Walker", + "position": 39, + "title": "You re Beginning To Get To Me" + }, + { + "artist": "Collin Raye", + "position": 40, + "title": "Someone You Used To Know" + }, + { + "artist": "Madonna", + "position": 41, + "title": "The Power Of Good-Bye" + }, + { + "artist": "Ice Cube Featuring Mr. Short Khop", + "position": 42, + "title": "Pushin Weight" + }, + { + "artist": "Brian McKnight Featuring Tone", + "position": 43, + "title": "Hold Me" + }, + { + "artist": "Terri Clark", + "position": 44, + "title": "You re Easy On The Eyes" + }, + { + "artist": "Aaron Hall", + "position": 45, + "title": "All The Places (I Will Kiss You)" + }, + { + "artist": "Mo Thugs Family Featuring Bone Thugs-N-Harmony", + "position": 46, + "title": "Ghetto Cowboy" + }, + { + "artist": "Mark Chesnutt", + "position": 47, + "title": "I Don t Want To Miss A Thing" + }, + { + "artist": "Blackhawk", + "position": 48, + "title": "There You Have It" + }, + { + "artist": "Martina McBride", + "position": 49, + "title": "Wrong Again" + }, + { + "artist": "Brooks", + "position": 50, + "title": "Husbands And Wives" + }, + { + "artist": "Alan Jackson", + "position": 51, + "title": "Right On The Money" + }, + { + "artist": "New Radicals", + "position": 52, + "title": "You Get What You Give" + }, + { + "artist": "Lenny Kravitz", + "position": 53, + "title": "Fly Away" + }, + { + "artist": "Aaron Tippin", + "position": 54, + "title": "For You I Will" + }, + { + "artist": "Faith Hill", + "position": 55, + "title": "Let Me Let Go" + }, + { + "artist": "Whitney Houston", + "position": 56, + "title": "When You Believe" + }, + { + "artist": "Randy Travis", + "position": 57, + "title": "Spirit Of A Boy, Wisdom Of A Man" + }, + { + "artist": "OutKast", + "position": 58, + "title": "Rosa Parks" + }, + { + "artist": "The Offspring", + "position": 59, + "title": "Pretty Fly (For A White Guy)" + }, + { + "artist": "Tim McGraw", + "position": 60, + "title": "For A Little While" + }, + { + "artist": "TQ", + "position": 61, + "title": "Westside" + }, + { + "artist": "Keith Sweat Featuring Snoop Dogg", + "position": 62, + "title": "Come And Get With Me" + }, + { + "artist": "Ty Herndon", + "position": 63, + "title": "It Must Be Love" + }, + { + "artist": "George Strait", + "position": 64, + "title": "We Really Shouldn t Be Doing This" + }, + { + "artist": "Jo Dee Messina", + "position": 65, + "title": "Stand Beside Me" + }, + { + "artist": "Sara Evans", + "position": 66, + "title": "No Place That Far" + }, + { + "artist": "Dixie Chicks", + "position": 67, + "title": "Wide Open Spaces" + }, + { + "artist": "John Michael Montgomery", + "position": 68, + "title": "Hold On To Me" + }, + { + "artist": "U2", + "position": 69, + "title": "Sweetest Thing" + }, + { + "artist": "R. Kelly Featuring Keith Murray", + "position": 70, + "title": "Home Alone" + }, + { + "artist": "Voices Of Theory", + "position": 71, + "title": "Wherever You Go" + }, + { + "artist": "Aerosmith", + "position": 72, + "title": "I Don t Want To Miss A Thing" + }, + { + "artist": "Reba", + "position": 73, + "title": "Wrong Night" + }, + { + "artist": "Barenaked Ladies", + "position": 74, + "title": "It s All Been Done" + }, + { + "artist": "The Wilkinsons", + "position": 75, + "title": "Fly (The Angel Song)" + }, + { + "artist": "Diamond Rio", + "position": 76, + "title": "Unbelievable" + }, + { + "artist": "Cher", + "position": 77, + "title": "Believe" + }, + { + "artist": "Everclear", + "position": 78, + "title": "Father Of Mine" + }, + { + "artist": "R. Kelly", + "position": 79, + "title": "When A Woman s Fed Up" + }, + { + "artist": "Everlast", + "position": 80, + "title": "What It s Like" + }, + { + "artist": "Cake", + "position": 81, + "title": "Never There" + }, + { + "artist": "Brandy", + "position": 82, + "title": "Angel In Disguise" + }, + { + "artist": "Shaggy Featuring Janet", + "position": 83, + "title": "Luv Me, Luv Me" + }, + { + "artist": "Whitney Houston Feat. Faith Evans", + "position": 84, + "title": "Heartbreak Hotel" + }, + { + "artist": "matchbox 20", + "position": 85, + "title": "Back 2 Good" + }, + { + "artist": "Case", + "position": 86, + "title": "Faded Pictures" + }, + { + "artist": "Everything", + "position": 87, + "title": "Hooch" + }, + { + "artist": "Fastball", + "position": 88, + "title": "Fire Escape" + }, + { + "artist": "Xscape", + "position": 89, + "title": "My Little Secret" + }, + { + "artist": "Tim McGraw", + "position": 90, + "title": "Where The Green Grass Grows" + }, + { + "artist": "Five", + "position": 91, + "title": "It s The Things You Do" + }, + { + "artist": "Kirk Franklin Feat. Mary J. Blige, Bono, R. Kelly, Crystal Lewis", + "position": 92, + "title": "Lean On Me" + }, + { + "artist": "Garth Brooks", + "position": 93, + "title": "It s Your Song" + }, + { + "artist": "Hole", + "position": 94, + "title": "Celebrity Skin" + }, + { + "artist": "Mark Wills", + "position": 95, + "title": "Don t Laugh At Me" + }, + { + "artist": "Lee Ann Womack", + "position": 96, + "title": "A Little Past Little Rock" + }, + { + "artist": "Willie Max Featuring Raphael Saadiq", + "position": 97, + "title": "Can t Get Enough" + }, + { + "artist": "Alabama", + "position": 98, + "title": "How Do You Fall In Love" + }, + { + "artist": "Timbaland Featuring Missy \"Misdemeanor\" Elliott", + "position": 99, + "title": "Here We Come" + }, + { + "artist": "Travis Tritt", + "position": 100, + "title": "If I Lost You" + } + ], + "title": "1998 - Hot 100" + }, + { + "songs": [ + { + "artist": "Garth Brooks", + "position": 1, + "title": "Longneck Bottle" + }, + { + "artist": "Martina McBride", + "position": 2, + "title": "A Broken Wing" + }, + { + "artist": "Alan Jackson", + "position": 3, + "title": "Between The Devil And Me" + }, + { + "artist": "Michael Peterson", + "position": 4, + "title": "From Here To Eternity" + }, + { + "artist": "Trace Adkins", + "position": 5, + "title": "The Rest Of Mine" + }, + { + "artist": "Pam Tillis", + "position": 6, + "title": "Land Of The Living" + }, + { + "artist": "Toby Keith With Sting", + "position": 7, + "title": "I'm So Happy I Can't Stop Crying" + }, + { + "artist": "John Michael Montgomery", + "position": 8, + "title": "Angel In My Eyes" + }, + { + "artist": "Brooks & Dunn", + "position": 9, + "title": "He's Got You" + }, + { + "artist": "Tim McGraw", + "position": 10, + "title": "Just To See You Smile" + }, + { + "artist": "Sammy Kershaw", + "position": 11, + "title": "Love Of My Life" + }, + { + "artist": "Shania Twain", + "position": 12, + "title": "Love Gets Me Every Time" + }, + { + "artist": "LeAnn Rimes", + "position": 13, + "title": "On The Side Of Angels" + }, + { + "artist": "Lonestar", + "position": 14, + "title": "You Walked In" + }, + { + "artist": "Diamond Rio", + "position": 15, + "title": "Imagine That" + }, + { + "artist": "Patty Loveless", + "position": 16, + "title": "You Don't Seem To Miss Me" + }, + { + "artist": "Ty Herndon", + "position": 17, + "title": "I Have To Surrender" + }, + { + "artist": "Shania Twain", + "position": 18, + "title": "Don't Be Stupid (You Know I Love You)" + }, + { + "artist": "Lila McCann", + "position": 19, + "title": "I Wanna Fall In Love" + }, + { + "artist": "Lee Ann Womack", + "position": 20, + "title": "You've Got To Talk To Me" + }, + { + "artist": "George Strait", + "position": 21, + "title": "Today My World Slipped Away" + }, + { + "artist": "Anita Cochran (Duet With Steve Wariner)", + "position": 22, + "title": "What If I Said" + }, + { + "artist": "Alabama", + "position": 23, + "title": "Of Course I'm Alright" + }, + { + "artist": "Kenny Chesney", + "position": 24, + "title": "A Chance" + }, + { + "artist": "Clint Black", + "position": 25, + "title": "Something That We Do" + } + ], + "title": "1997 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Elton John", + "position": 1, + "title": "Candle In The Wind 1997/Something About The Way You Look Tonight" + }, + { + "artist": "LeAnn Rimes", + "position": 2, + "title": "How Do I Live" + }, + { + "artist": "Usher", + "position": 3, + "title": "You Make Me Wanna..." + }, + { + "artist": "Janet", + "position": 4, + "title": "Together Again" + }, + { + "artist": "Puff Daddy & The Family (Feat. The Notorious B.I.G. & Mase)", + "position": 5, + "title": "Been Around The World" + }, + { + "artist": "LSG", + "position": 6, + "title": "My Body" + }, + { + "artist": "Mase", + "position": 7, + "title": "Feel So Good" + }, + { + "artist": "Robyn", + "position": 8, + "title": "Show Me Love" + }, + { + "artist": "Savage Garden", + "position": 9, + "title": "Truly Madly Deeply" + }, + { + "artist": "Somethin' For The People Featuring Trina & Tamara", + "position": 10, + "title": "My Love Is The Shhh!" + }, + { + "artist": "Chumbawamba", + "position": 11, + "title": "Tubthumping" + }, + { + "artist": "Boyz II Men", + "position": 12, + "title": "A Song For Mama" + }, + { + "artist": "Hanson", + "position": 13, + "title": "I Will Come To You" + }, + { + "artist": "Paula Cole", + "position": 14, + "title": "I Don't Want To Wait" + }, + { + "artist": "Aaliyah", + "position": 15, + "title": "The One I Gave My Heart To" + }, + { + "artist": "Dru Hill", + "position": 16, + "title": "We're Not Making Love No More" + }, + { + "artist": "Allure Featuring 112", + "position": 17, + "title": "All Cried Out" + }, + { + "artist": "Spice Girls", + "position": 18, + "title": "Spice Up Your Life" + }, + { + "artist": "Next", + "position": 19, + "title": "Butta Love" + }, + { + "artist": "Uncle Sam", + "position": 20, + "title": "I Don't Ever Want To See You Again" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring Da Brat", + "position": 21, + "title": "Sock It 2 Me" + }, + { + "artist": "Jewel", + "position": 22, + "title": "Foolish Games/You Were Meant For Me" + }, + { + "artist": "Lisa Loeb", + "position": 23, + "title": "I Do" + }, + { + "artist": "Boyz II Men", + "position": 24, + "title": "4 Seasons Of Loneliness" + }, + { + "artist": "Third Eye Blind", + "position": 25, + "title": "Semi-Charmed Life" + }, + { + "artist": "Backstreet Boys", + "position": 26, + "title": "Quit Playing Games (With My Heart)" + }, + { + "artist": "Third Eye Blind", + "position": 27, + "title": "How's It Going To Be" + }, + { + "artist": "Total", + "position": 28, + "title": "What About Us" + }, + { + "artist": "Aqua", + "position": 29, + "title": "Lollipop (Candyman)" + }, + { + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Mase", + "position": 30, + "title": "Mo Money Mo Problems" + }, + { + "artist": "Fiona Apple", + "position": 31, + "title": "Criminal" + }, + { + "artist": "She Moves", + "position": 32, + "title": "Breaking All The Rules" + }, + { + "artist": "Nu Flavor", + "position": 33, + "title": "Heaven" + }, + { + "artist": "Sister Hazel", + "position": 34, + "title": "All For You" + }, + { + "artist": "Destiny's Child", + "position": 35, + "title": "No, No, No" + }, + { + "artist": "Sarah McLachlan", + "position": 36, + "title": "Building A Mystery" + }, + { + "artist": "The Notorious B.I.G.", + "position": 37, + "title": "Going Back To Cali" + }, + { + "artist": "H-Town", + "position": 38, + "title": "They Like It Slow" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 39, + "title": "If I Could Teach The World" + }, + { + "artist": "Puff Daddy & Faith Evans Featuring 112", + "position": 40, + "title": "I'll Be Missing You" + }, + { + "artist": "Mariah Carey", + "position": 41, + "title": "Honey" + }, + { + "artist": "Los Umbrellos", + "position": 42, + "title": "No Tengo Dinero" + }, + { + "artist": "Metallica", + "position": 43, + "title": "The Memory Remains" + }, + { + "artist": "98 Degrees", + "position": 44, + "title": "Invisible Man" + }, + { + "artist": "Spice Girls", + "position": 45, + "title": "2 Become 1" + }, + { + "artist": "Shawn Colvin", + "position": 46, + "title": "Sunny Came Home" + }, + { + "artist": "Mary J. Blige", + "position": 47, + "title": "Everything" + }, + { + "artist": "Shania Twain", + "position": 48, + "title": "Don't Be Stupid (You Know I Love You)" + }, + { + "artist": "Milestone", + "position": 49, + "title": "I Care 'Bout You" + }, + { + "artist": "Gary Barlow", + "position": 50, + "title": "So Help Me Girl" + }, + { + "artist": "Richard Marx & Donna Lewis", + "position": 51, + "title": "At The Beginning" + }, + { + "artist": "Billie Myers", + "position": 52, + "title": "Kiss The Rain" + }, + { + "artist": "Shania Twain", + "position": 53, + "title": "Love Gets Me Every Time" + }, + { + "artist": "Imani Coppola", + "position": 54, + "title": "Legend Of A Cowgirl" + }, + { + "artist": "Master P Featuring Pimp C And The Shocker", + "position": 55, + "title": "I Miss My Homies" + }, + { + "artist": "Alana Davis", + "position": 56, + "title": "32 Flavors" + }, + { + "artist": "Bee Gees", + "position": 57, + "title": "Still Waters (Run Deep)" + }, + { + "artist": "WC From Westside Connection", + "position": 58, + "title": "Just Clownin'" + }, + { + "artist": "LeAnn Rimes", + "position": 59, + "title": "You Light Up My Life" + }, + { + "artist": "Davina", + "position": 60, + "title": "So Good" + }, + { + "artist": "Mack 10", + "position": 61, + "title": "Backyard Boogie" + }, + { + "artist": "Big Punisher", + "position": 62, + "title": "I'm Not A Player" + }, + { + "artist": "Reba McEntire", + "position": 63, + "title": "What If" + }, + { + "artist": "Olive", + "position": 64, + "title": "You're Not Alone" + }, + { + "artist": "Sting & The Police", + "position": 65, + "title": "Roxanne `97 - Puff Daddy Remix" + }, + { + "artist": "David Bowie", + "position": 66, + "title": "I'm Afraid Of Americans" + }, + { + "artist": "Insane Clown Posse", + "position": 67, + "title": "Santa's A Fat Bitch" + }, + { + "artist": "Kimberly Scott", + "position": 68, + "title": "Tuck Me In" + }, + { + "artist": "Brian McKnight Featuring Mase", + "position": 69, + "title": "You Should Be Mine (Don't Waste Your Time)" + }, + { + "artist": "K-Ci & JoJo", + "position": 70, + "title": "Last Night's Letter" + }, + { + "artist": "Diana King", + "position": 71, + "title": "L-L-Lies" + }, + { + "artist": "Amber", + "position": 72, + "title": "One More Night" + }, + { + "artist": "Playa", + "position": 73, + "title": "Don't Stop The Music" + }, + { + "artist": "Martina McBride With Jim Brickman", + "position": 74, + "title": "Valentine" + }, + { + "artist": "LL Cool J Featuring Method Man, Redman, DMX, Canibus And Master P", + "position": 75, + "title": "4, 3, 2, 1" + }, + { + "artist": "Clint Black", + "position": 76, + "title": "Something That We Do" + }, + { + "artist": "Naughty By Nature", + "position": 77, + "title": "Mourn You Til I Join You" + }, + { + "artist": "KAI", + "position": 78, + "title": "Say You'll Stay" + }, + { + "artist": "2Pac", + "position": 79, + "title": "I Wonder If Heaven Got A Ghetto" + }, + { + "artist": "Lord Tariq & Peter Gunz", + "position": 80, + "title": "Deja Vu [Uptown Baby]" + }, + { + "artist": "Daft Punk", + "position": 81, + "title": "Around The World" + }, + { + "artist": "En Vogue", + "position": 82, + "title": "Too Gone, Too Long" + }, + { + "artist": "BeBe Winans", + "position": 83, + "title": "In Harm's Way" + }, + { + "artist": "Trace Adkins", + "position": 84, + "title": "The Rest Of Mine" + }, + { + "artist": "4.0", + "position": 85, + "title": "Have A Little Mercy" + }, + { + "artist": "K.P. & Envyi", + "position": 86, + "title": "Swing My Way" + }, + { + "artist": "Changing Faces (Featuring Jay-Z)", + "position": 87, + "title": "All Of My Days" + }, + { + "artist": "Gang Starr", + "position": 88, + "title": "You Know My Steez" + }, + { + "artist": "Queen Pen Featuring Teddy Riley", + "position": 89, + "title": "Man Behind The Music" + }, + { + "artist": "Prodigy", + "position": 90, + "title": "Smack My Bitch Up" + }, + { + "artist": "Deana Carter", + "position": 91, + "title": "Did I Shave My Legs For This?" + }, + { + "artist": "Sammy Kershaw", + "position": 92, + "title": "Love Of My Life" + }, + { + "artist": "LL Cool J", + "position": 93, + "title": "Phenomenon" + }, + { + "artist": "Le Click Featuring Kayo", + "position": 94, + "title": "Don't Go" + }, + { + "artist": "Ultra Nate", + "position": 95, + "title": "Free" + }, + { + "artist": "Sublime", + "position": 96, + "title": "Doin' Time" + }, + { + "artist": "Toby Keith With Sting", + "position": 97, + "title": "I'm So Happy I Can't Stop Crying" + }, + { + "artist": "Yvette Michele", + "position": 98, + "title": "DJ Keep Playin' (Get Your Music On)" + }, + { + "artist": "Billy Lawrence", + "position": 99, + "title": "Up & Down" + }, + { + "artist": "Barenaked Ladies", + "position": 100, + "title": "Brian Wilson" + } + ], + "title": "1997 - Hot 100" + }, + { + "songs": [ + { + "artist": "LeAnn Rimes", + "position": 1, + "title": "One Way Ticket (Because I Can)" + }, + { + "artist": "Alan Jackson", + "position": 2, + "title": "Little Bitty" + }, + { + "artist": "Reba McEntire", + "position": 3, + "title": "The Fear Of Being Alone" + }, + { + "artist": "Garth Brooks", + "position": 4, + "title": "That Ol' Wind" + }, + { + "artist": "Tracy Byrd", + "position": 5, + "title": "Big Love" + }, + { + "artist": "Kevin Sharp", + "position": 6, + "title": "Nobody Knows" + }, + { + "artist": "Trace Adkins", + "position": 7, + "title": "Every Light In The House" + }, + { + "artist": "John Michael Montgomery", + "position": 8, + "title": "Friends" + }, + { + "artist": "Tim McGraw", + "position": 9, + "title": "Maybe We Should Just Sleep On It" + }, + { + "artist": "Gary Allan", + "position": 10, + "title": "Her Man" + }, + { + "artist": "Tracy Lawrence", + "position": 11, + "title": "Is That A Tear" + }, + { + "artist": "Mary Chapin Carpenter", + "position": 12, + "title": "Let Me Into Your Heart" + }, + { + "artist": "Trisha Yearwood", + "position": 13, + "title": "Everybody Knows" + }, + { + "artist": "Mark Chesnutt", + "position": 14, + "title": "It's A Little Too Late" + }, + { + "artist": "Vince Gill", + "position": 15, + "title": "Pretty Little Adriana" + }, + { + "artist": "David Kersh", + "position": 16, + "title": "Goodnight Sweetheart" + }, + { + "artist": "Faith Hill", + "position": 17, + "title": "I Can't Do That Anymore" + }, + { + "artist": "Clint Black", + "position": 18, + "title": "Half Way Up" + }, + { + "artist": "Bryan White", + "position": 19, + "title": "That's Another Song" + }, + { + "artist": "Deana Carter", + "position": 20, + "title": "Strawberry Wine" + }, + { + "artist": "Brooks & Dunn", + "position": 21, + "title": "A Man This Lonely" + }, + { + "artist": "Rick Trevino", + "position": 22, + "title": "Running Out Of Reasons To Run" + }, + { + "artist": "Daryle Singletary", + "position": 23, + "title": "Amen Kind Of Love" + }, + { + "artist": "Mindy McCready (Featuring Lonestar's Richie McDonald)", + "position": 24, + "title": "Maybe He'll Notice Her Now" + }, + { + "artist": "Randy Travis", + "position": 25, + "title": "Would I" + } + ], + "title": "1996 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Toni Braxton", + "position": 1, + "title": "Un-Break My Heart" + }, + { + "artist": "R. Kelly", + "position": 2, + "title": "I Believe I Can Fly (From \"Space Jam\")" + }, + { + "artist": "En Vogue", + "position": 3, + "title": "Don't Let Go (Love) (From \"Set It Off\")" + }, + { + "artist": "BLACKstreet (Featuring Dr. Dre)", + "position": 4, + "title": "No Diggity" + }, + { + "artist": "Keith Sweat Featuring Athena Cage", + "position": 5, + "title": "Nobody" + }, + { + "artist": "Merril Bainbridge", + "position": 6, + "title": "Mouth" + }, + { + "artist": "Whitney Houston", + "position": 7, + "title": "I Believe In You And Me (From \"The Preacher's Wife\")" + }, + { + "artist": "Celine Dion", + "position": 8, + "title": "It's All Coming Back To Me Now" + }, + { + "artist": "New Edition", + "position": 9, + "title": "I'm Still In Love With You" + }, + { + "artist": "Barbra Streisand & Bryan Adams", + "position": 10, + "title": "I Finally Found Someone (From \"The Mirror Has Two Faces\")" + }, + { + "artist": "Ginuwine", + "position": 11, + "title": "Pony" + }, + { + "artist": "Los Del Rio", + "position": 12, + "title": "Macarena (Bayside Boys Mix)" + }, + { + "artist": "No Mercy", + "position": 13, + "title": "Where Do You Go" + }, + { + "artist": "Sheryl Crow", + "position": 14, + "title": "If It Makes You Happy" + }, + { + "artist": "Journey", + "position": 15, + "title": "When You Love A Woman" + }, + { + "artist": "Az Yet", + "position": 16, + "title": "Last Night (From \"The Nutty Professor\")" + }, + { + "artist": "Seal", + "position": 17, + "title": "Fly Like An Eagle (From \"Space Jam\")" + }, + { + "artist": "Donna Lewis", + "position": 18, + "title": "I Love You Always Forever" + }, + { + "artist": "Mint Condition", + "position": 19, + "title": "What Kind Of Man Would I Be" + }, + { + "artist": "Lil' Kim Featuring Puff Daddy", + "position": 20, + "title": "No Time" + }, + { + "artist": "Babyface Feat. LL Cool J, Howard Hewett, Jody Watley & Jef", + "position": 21, + "title": "This Is For The Lover In You" + }, + { + "artist": "Montell Jordan", + "position": 22, + "title": "Falling" + }, + { + "artist": "Keith Sweat", + "position": 23, + "title": "Twisted" + }, + { + "artist": "Dru Hill", + "position": 24, + "title": "Tell Me (From \"Eddie\")" + }, + { + "artist": "Eric Clapton", + "position": 25, + "title": "Change The World (From \"Phenomenon\")" + }, + { + "artist": "Amber", + "position": 26, + "title": "This Is Your Night" + }, + { + "artist": "Nas", + "position": 27, + "title": "Street Dreams" + }, + { + "artist": "Madonna", + "position": 28, + "title": "You Must Love Me (From \"Evita\")" + }, + { + "artist": "dc Talk", + "position": 29, + "title": "Just Between You And Me" + }, + { + "artist": "Toni Braxton", + "position": 30, + "title": "You're Makin' Me High/Let It Flow" + }, + { + "artist": "MC Lyte", + "position": 31, + "title": "Cold Rock A Party" + }, + { + "artist": "Dishwalla", + "position": 32, + "title": "Counting Blue Cars" + }, + { + "artist": "Jewel", + "position": 33, + "title": "Foolish Games/You Were Meant For Me" + }, + { + "artist": "Gina G", + "position": 34, + "title": "Ooh Aah... Just A Little Bit" + }, + { + "artist": "John Mellencamp", + "position": 35, + "title": "Key West Intermezzo (I Saw You First)" + }, + { + "artist": "702", + "position": 36, + "title": "Steelo" + }, + { + "artist": "Alanis Morissette", + "position": 37, + "title": "You Learn/You Oughta Know" + }, + { + "artist": "Ghost Town DJ's", + "position": 38, + "title": "My Boo" + }, + { + "artist": "112", + "position": 39, + "title": "Come See Me" + }, + { + "artist": "OutKast", + "position": 40, + "title": "ATLiens" + }, + { + "artist": "Nate Dogg Featuring Snoop Doggy Dogg", + "position": 41, + "title": "Never Leave Me Alone" + }, + { + "artist": "Bryan Adams", + "position": 42, + "title": "Let's Make A Night To Remember" + }, + { + "artist": "LL Cool J", + "position": 43, + "title": "Loungin" + }, + { + "artist": "The Cranberries", + "position": 44, + "title": "When You're Gone/Free To Decide" + }, + { + "artist": "Westside Connection", + "position": 45, + "title": "Bow Down" + }, + { + "artist": "Quad City DJ's", + "position": 46, + "title": "C'mon N' Ride It (The Train)" + }, + { + "artist": "Mack 10 & Tha Dogg Pound", + "position": 47, + "title": "Nothin' But The Cavi Hit (From \"Rhyme & Reason\")" + }, + { + "artist": "Tracy Chapman", + "position": 48, + "title": "Give Me One Reason" + }, + { + "artist": "The Smashing Pumpkins", + "position": 49, + "title": "Thirty-Three" + }, + { + "artist": "Jocelyn Enriquez", + "position": 50, + "title": "Do You Miss Me" + }, + { + "artist": "Donell Jones", + "position": 51, + "title": "Knocks Me Off My Feet" + }, + { + "artist": "Donna Lewis", + "position": 52, + "title": "Without Love" + }, + { + "artist": "Aaliyah", + "position": 53, + "title": "If Your Girl Only Knew" + }, + { + "artist": "Brandy, Tamia, Gladys Knight & Chaka Khan", + "position": 54, + "title": "Missing You (From \"Set It Off\")" + }, + { + "artist": "Rod Stewart", + "position": 55, + "title": "If We Fall In Love Tonight" + }, + { + "artist": "Quad City DJ's", + "position": 56, + "title": "Space Jam (From \"Space Jam\")" + }, + { + "artist": "Gloria Estefan", + "position": 57, + "title": "I'm Not Giving You Up" + }, + { + "artist": "K-Ci & JoJo", + "position": 58, + "title": "How Could You (From \"Bulletproof\")" + }, + { + "artist": "The Blackout Allstars", + "position": 59, + "title": "I Like It" + }, + { + "artist": "Alan Jackson", + "position": 60, + "title": "Little Bitty" + }, + { + "artist": "Total", + "position": 61, + "title": "When Boy Meets Girl" + }, + { + "artist": "Duncan Sheik", + "position": 62, + "title": "Barely Breathing" + }, + { + "artist": "Johnny Gill Featuring Roger Troutman", + "position": 63, + "title": "It's Your Body" + }, + { + "artist": "Better Than Ezra", + "position": 64, + "title": "Desperately Wanting" + }, + { + "artist": "Rockell", + "position": 65, + "title": "I Fell In Love" + }, + { + "artist": "Los Del Rio", + "position": 66, + "title": "Macarena Christmas" + }, + { + "artist": "Da Brat", + "position": 67, + "title": "Sittin' On Top Of The World" + }, + { + "artist": "The Braids", + "position": 68, + "title": "Bohemian Rhapsody (From \"High School High\")" + }, + { + "artist": "Kenny G", + "position": 69, + "title": "The Moment" + }, + { + "artist": "R.E.M.", + "position": 70, + "title": "Bittersweet Me" + }, + { + "artist": "The Original", + "position": 71, + "title": "I Luv U Baby" + }, + { + "artist": "Crush", + "position": 72, + "title": "Jellyhead" + }, + { + "artist": "Metallica", + "position": 73, + "title": "Hero Of The Day" + }, + { + "artist": "Richie Rich", + "position": 74, + "title": "Let's Ride" + }, + { + "artist": "The Isley Brothers Featuring Angela Winbush", + "position": 75, + "title": "Floatin' On Your Love" + }, + { + "artist": "Le Click", + "position": 76, + "title": "Tonight Is The Night" + }, + { + "artist": "Melissa Etheridge", + "position": 77, + "title": "Nowhere To Go" + }, + { + "artist": "Goodfellaz", + "position": 78, + "title": "Sugar Honey Ice Tea" + }, + { + "artist": "Luscious Jackson", + "position": 79, + "title": "Naked Eye" + }, + { + "artist": "Shania Twain", + "position": 80, + "title": "God Bless The Child" + }, + { + "artist": "Wild Orchid", + "position": 81, + "title": "At Night I Pray" + }, + { + "artist": "Susanna Hoffs", + "position": 82, + "title": "All I Want" + }, + { + "artist": "Luther Vandross", + "position": 83, + "title": "I Can Make It Better" + }, + { + "artist": "Phil Collins", + "position": 84, + "title": "Dance Into The Light" + }, + { + "artist": "The Wonders", + "position": 85, + "title": "That Thing You Do! (From \"That Thing You Do!\")" + }, + { + "artist": "Trace Adkins", + "position": 86, + "title": "Every Light In The House" + }, + { + "artist": "New Edition", + "position": 87, + "title": "Hit Me Off" + }, + { + "artist": "Robert Miles Featuring Maria Nayler", + "position": 88, + "title": "One And One" + }, + { + "artist": "John Michael Montgomery", + "position": 89, + "title": "Friends" + }, + { + "artist": "Elton John", + "position": 90, + "title": "You Can Make History (Young Again)" + }, + { + "artist": "Warren G Featuring Adina Howard", + "position": 91, + "title": "What's Love Got To Do With It (From \"Supercop\")" + }, + { + "artist": "The Tony Rich Project", + "position": 92, + "title": "Leavin'" + }, + { + "artist": "Johnny Gill", + "position": 93, + "title": "Let's Get The Mood Right" + }, + { + "artist": "Amanda Marshall", + "position": 94, + "title": "Birmingham" + }, + { + "artist": "Redman Featuring K-Solo", + "position": 95, + "title": "That's How It Is (It's Like That)" + }, + { + "artist": "dog's eye view", + "position": 96, + "title": "Everything Falls Apart/Small Wonders" + }, + { + "artist": "SWV", + "position": 97, + "title": "Use Your Heart" + }, + { + "artist": "LL Cool J", + "position": 98, + "title": "Ain't Nobody (From \"Beavis And Butt-Head Do America\")" + }, + { + "artist": "Angelina", + "position": 99, + "title": "I Don't Need Your Love" + }, + { + "artist": "Lost Boyz", + "position": 100, + "title": "Music Makes Me High" + } + ], + "title": "1996 - Hot 100" + }, + { + "songs": [ + { + "artist": "Aaron Tippin", + "position": 1, + "title": "That's As Close As I'll Get To Loving You" + }, + { + "artist": "Tim McGraw", + "position": 2, + "title": "Can't Be Really Gone" + }, + { + "artist": "Bryan White", + "position": 3, + "title": "Rebecca Lynn" + }, + { + "artist": "Clint Black", + "position": 4, + "title": "Life Gets Away" + }, + { + "artist": "Jeff Carson", + "position": 5, + "title": "The Car" + }, + { + "artist": "Faith Hill", + "position": 6, + "title": "It Matters To Me" + }, + { + "artist": "Pam Tillis", + "position": 7, + "title": "Deep Down" + }, + { + "artist": "Alan Jackson", + "position": 8, + "title": "Tall, Tall Trees" + }, + { + "artist": "Tracy Byrd", + "position": 9, + "title": "Love Lessons" + }, + { + "artist": "George Strait", + "position": 10, + "title": "Check Yes Or No" + }, + { + "artist": "John Michael Montgomery", + "position": 11, + "title": "Cowboy Love" + }, + { + "artist": "Shania Twain", + "position": 12, + "title": "(If You're Not In It For Love) I'm Outta Here!" + }, + { + "artist": "Terri Clark", + "position": 13, + "title": "When Boy Meets Girl" + }, + { + "artist": "Lee Roy Parnell", + "position": 14, + "title": "When A Woman Loves A Man" + }, + { + "artist": "Doug Stone", + "position": 15, + "title": "Born In The Dark" + }, + { + "artist": "Reba McEntire", + "position": 16, + "title": "Ring On Her Finger, Time On Her Hands" + }, + { + "artist": "Joe Diffie", + "position": 17, + "title": "Bigger Than The Beatles" + }, + { + "artist": "Doug Supernaw", + "position": 18, + "title": "Not Enough Hours In The Night" + }, + { + "artist": "Alabama", + "position": 19, + "title": "In Pictures" + }, + { + "artist": "Dwight Yoakam", + "position": 20, + "title": "Nothing" + }, + { + "artist": "Blackhawk", + "position": 21, + "title": "Like There Ain't No Yesterday" + }, + { + "artist": "Collin Raye", + "position": 22, + "title": "Not That Different" + }, + { + "artist": "Wade Hayes", + "position": 23, + "title": "What I Meant To Say" + }, + { + "artist": "Clay Walker", + "position": 24, + "title": "Who Needs You Baby" + }, + { + "artist": "John Berry", + "position": 25, + "title": "If I Had Any Pride Left At All" + } + ], + "title": "1995 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Mariah Carey & Boyz II Men", + "position": 1, + "title": "One Sweet Day" + }, + { + "artist": "Whitney Houston", + "position": 2, + "title": "Exhale (Shoop Shoop) (From \"Waiting To Exhale\")" + }, + { + "artist": "LL Cool J", + "position": 3, + "title": "Hey Lover" + }, + { + "artist": "Coolio Featuring L.V.", + "position": 4, + "title": "Gangsta's Paradise (From \"Dangerous Minds\")" + }, + { + "artist": "TLC", + "position": 5, + "title": "Diggin' On You" + }, + { + "artist": "Mariah Carey", + "position": 6, + "title": "Fantasy" + }, + { + "artist": "Monica", + "position": 7, + "title": "Before You Walk Out Of My Life/Like This And Like That" + }, + { + "artist": "Deep Blue Something", + "position": 8, + "title": "Breakfast At Tiffany's" + }, + { + "artist": "Goo Goo Dolls", + "position": 9, + "title": "Name" + }, + { + "artist": "The Beatles", + "position": 10, + "title": "Free As A Bird" + }, + { + "artist": "Madonna", + "position": 11, + "title": "You'll See" + }, + { + "artist": "Everything But The Girl", + "position": 12, + "title": "Missing" + }, + { + "artist": "Pearl Jam", + "position": 13, + "title": "I Got Id/Long Road" + }, + { + "artist": "Janet Jackson", + "position": 14, + "title": "Runaway" + }, + { + "artist": "Joan Osborne", + "position": 15, + "title": "One Of Us" + }, + { + "artist": "R. Kelly", + "position": 16, + "title": "You Remind Me Of Something" + }, + { + "artist": "Ace Of Base", + "position": 17, + "title": "Beautiful Life" + }, + { + "artist": "Groove Theory", + "position": 18, + "title": "Tell Me" + }, + { + "artist": "Take That", + "position": 19, + "title": "Back For Good" + }, + { + "artist": "Sophie B. Hawkins", + "position": 20, + "title": "As I Lay Me Down" + }, + { + "artist": "Kris Kross", + "position": 21, + "title": "Tonite's Tha Night" + }, + { + "artist": "Faith Evans", + "position": 22, + "title": "Soon As I Get Home" + }, + { + "artist": "Hootie & The Blowfish", + "position": 23, + "title": "Only Wanna Be With You" + }, + { + "artist": "3T", + "position": 24, + "title": "Anything" + }, + { + "artist": "Seal", + "position": 25, + "title": "Kiss From A Rose (From \"Batman Forever\")" + }, + { + "artist": "The Smashing Pumpkins", + "position": 26, + "title": "Bullet With Butterfly Wings" + }, + { + "artist": "Hootie & The Blowfish", + "position": 27, + "title": "Time" + }, + { + "artist": "Xscape", + "position": 28, + "title": "Who Can I Run To" + }, + { + "artist": "Natalie Merchant", + "position": 29, + "title": "Carnival" + }, + { + "artist": "Selena", + "position": 30, + "title": "Dreaming Of You" + }, + { + "artist": "Del Amitri", + "position": 31, + "title": "Roll To Me" + }, + { + "artist": "La Bouche", + "position": 32, + "title": "Be My Lover" + }, + { + "artist": "Jodeci", + "position": 33, + "title": "Love U 4 Life" + }, + { + "artist": "Planet Soul", + "position": 34, + "title": "Set U Free" + }, + { + "artist": "Coolio", + "position": 35, + "title": "Too Hot" + }, + { + "artist": "Blues Traveler", + "position": 36, + "title": "Run-Around" + }, + { + "artist": "Meat Loaf", + "position": 37, + "title": "I'd Lie For You (And That's The Truth)" + }, + { + "artist": "Elton John", + "position": 38, + "title": "Blessed" + }, + { + "artist": "Blues Traveler", + "position": 39, + "title": "Hook" + }, + { + "artist": "Collective Soul", + "position": 40, + "title": "The World I Know" + }, + { + "artist": "Natalie Merchant", + "position": 41, + "title": "Wonder" + }, + { + "artist": "Folk Implosion", + "position": 42, + "title": "Natural One (From \"Kids\")" + }, + { + "artist": "Total", + "position": 43, + "title": "No One Else" + }, + { + "artist": "TLC", + "position": 44, + "title": "Waterfalls" + }, + { + "artist": "Collective Soul", + "position": 45, + "title": "December" + }, + { + "artist": "Brandy", + "position": 46, + "title": "Sittin' Up In My Room (From \"Waiting To Exhale\")" + }, + { + "artist": "Eazy-E", + "position": 47, + "title": "Just Tah Let U Know" + }, + { + "artist": "All-4-One", + "position": 48, + "title": "I Can Love You Like That" + }, + { + "artist": "The Tony Rich Project", + "position": 49, + "title": "Nobody Knows" + }, + { + "artist": "Big Mountain", + "position": 50, + "title": "Get Together" + }, + { + "artist": "Goodie Mob.", + "position": 51, + "title": "Cell Therapy" + }, + { + "artist": "Jon B", + "position": 52, + "title": "Pretty Girl" + }, + { + "artist": "D'Angelo", + "position": 53, + "title": "Cruisin'" + }, + { + "artist": "Blahzay Blahzay", + "position": 54, + "title": "Danger" + }, + { + "artist": "Terry Ellis", + "position": 55, + "title": "Where Ever You Are" + }, + { + "artist": "Boyz II Men", + "position": 56, + "title": "I Remember" + }, + { + "artist": "Michael Jackson", + "position": 57, + "title": "You Are Not Alone" + }, + { + "artist": "The Rembrandts", + "position": 58, + "title": "I'll Be There For You/This House Is Not A Home" + }, + { + "artist": "Def Leppard", + "position": 59, + "title": "When Love & Hate Collide" + }, + { + "artist": "L.A.D.", + "position": 60, + "title": "Ridin' Low" + }, + { + "artist": "Bush", + "position": 61, + "title": "Comedown" + }, + { + "artist": "Lisa Loeb & Nine Stories", + "position": 62, + "title": "Do You Sleep?" + }, + { + "artist": "Brandy", + "position": 63, + "title": "Brokenhearted" + }, + { + "artist": "Shai", + "position": 64, + "title": "Come With Me" + }, + { + "artist": "Immature (Featuring Smooth)", + "position": 65, + "title": "We Got It" + }, + { + "artist": "Tim McGraw", + "position": 66, + "title": "I Like It, I Love It" + }, + { + "artist": "Sarah McLachlan", + "position": 67, + "title": "I Will Remember You (Live)" + }, + { + "artist": "Los Del Rio", + "position": 68, + "title": "Macarena (Bayside Boys Mix)" + }, + { + "artist": "Monifah", + "position": 69, + "title": "I Miss You (Come Back Home) (From \"New York Undercover\")" + }, + { + "artist": "Max-A-Million", + "position": 70, + "title": "Sexual Healing" + }, + { + "artist": "L.V.", + "position": 71, + "title": "Throw Your Hands Up" + }, + { + "artist": "Raekwon", + "position": 72, + "title": "Incarcerated Scarfaces/Ice Cream" + }, + { + "artist": "The Mighty Dub Katz", + "position": 73, + "title": "Magic Carpet Ride" + }, + { + "artist": "Silk", + "position": 74, + "title": "Hooked On You" + }, + { + "artist": "The Pharcyde", + "position": 75, + "title": "Runnin'" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 76, + "title": "East 1999" + }, + { + "artist": "The Click", + "position": 77, + "title": "Hurricane" + }, + { + "artist": "No Doubt", + "position": 78, + "title": "Just A Girl" + }, + { + "artist": "Better Than Ezra", + "position": 79, + "title": "Rosealia" + }, + { + "artist": "The Outhere Brothers", + "position": 80, + "title": "Boom Boom Boom" + }, + { + "artist": "Shania Twain", + "position": 81, + "title": "(If You're Not In It For Love) I'm Outta Here!/The Woman In Me" + }, + { + "artist": "Salt-N-Pepa", + "position": 82, + "title": "Ain't Nuthin' But A She Thing" + }, + { + "artist": "Cypress Hill", + "position": 83, + "title": "Throw Your Set In The Air" + }, + { + "artist": "Kool G Rap", + "position": 84, + "title": "Fast Life" + }, + { + "artist": "Deborah Cox", + "position": 85, + "title": "Sentimental" + }, + { + "artist": "Real McCoy", + "position": 86, + "title": "Automatic Lover (Call For Love)" + }, + { + "artist": "Faith Hill", + "position": 87, + "title": "It Matters To Me" + }, + { + "artist": "Edwin McCain", + "position": 88, + "title": "Solitude" + }, + { + "artist": "Fugees", + "position": 89, + "title": "Fu-Gee-La" + }, + { + "artist": "L.B.C. Crew Feat. Tray D & South Sentrell", + "position": 90, + "title": "Beware Of My Crew (From \"A Thin Line Between Love And Hate\")" + }, + { + "artist": "Artie The 1 Man Party", + "position": 91, + "title": "A Mover La Colita" + }, + { + "artist": "Frost", + "position": 92, + "title": "East Side Rendezvous" + }, + { + "artist": "Backstreet Boys", + "position": 93, + "title": "We've Got It Goin' On" + }, + { + "artist": "Capleton", + "position": 94, + "title": "Wings Of The Morning" + }, + { + "artist": "P.M. Dawn", + "position": 95, + "title": "Sometimes I Miss You So Much (Dedicated To The Christ Consciousness)" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 96, + "title": "1st Of Tha Month" + }, + { + "artist": "Genius/GZA Featuring Inspektah Deck", + "position": 97, + "title": "Cold World" + }, + { + "artist": "Quincy Jones Introducing Tamia", + "position": 98, + "title": "You Put A Move On My Heart" + }, + { + "artist": "Method Man", + "position": 99, + "title": "The Riddler (From \"Batman Forever\")" + }, + { + "artist": "Prince", + "position": 100, + "title": "Gold" + } + ], + "title": "1995 - Hot 100" + }, + { + "songs": [ + { + "artist": "Joe Diffie", + "position": 1, + "title": "Pickup Man" + }, + { + "artist": "Tim McGraw", + "position": 2, + "title": "Not A Moment Too Soon" + }, + { + "artist": "Faith Hill", + "position": 3, + "title": "Take Me As I Am" + }, + { + "artist": "Mark Chesnutt", + "position": 4, + "title": "Goin Through The Big D" + }, + { + "artist": "Randy Travis", + "position": 5, + "title": "This Is Me" + }, + { + "artist": "Rick Trevino", + "position": 6, + "title": "Doctor Time" + }, + { + "artist": "Reba McEntire", + "position": 7, + "title": "Till You Love Me" + }, + { + "artist": "Alan Jackson", + "position": 8, + "title": "Gone Country" + }, + { + "artist": "Vince Gill", + "position": 9, + "title": "When Love Finds You" + }, + { + "artist": "Brooks", + "position": 10, + "title": "I ll Never Forgive My Heart" + }, + { + "artist": "Pam Tillis", + "position": 11, + "title": "Mi Vida Loca (My Crazy Life)" + }, + { + "artist": "Lari White", + "position": 12, + "title": "Now I Know" + }, + { + "artist": "Diamond Rio", + "position": 13, + "title": "Night Is Fallin In My Heart" + }, + { + "artist": "Mark Collie", + "position": 14, + "title": "Hard Lovin Woman" + }, + { + "artist": "John Berry", + "position": 15, + "title": "You And Only You" + }, + { + "artist": "Aaron Tippin", + "position": 16, + "title": "I Got It Honest" + }, + { + "artist": "Sawyer Brown", + "position": 17, + "title": "This Time" + }, + { + "artist": "John Michael Montgomery", + "position": 18, + "title": "If You ve Got Love" + }, + { + "artist": "Doug Stone", + "position": 19, + "title": "Little Houses" + }, + { + "artist": "Tracy Byrd", + "position": 20, + "title": "The First Step" + }, + { + "artist": "David Ball", + "position": 21, + "title": "When The Thought Of You Catches Up With Me" + }, + { + "artist": "Patty Loveless", + "position": 22, + "title": "Here I Am" + }, + { + "artist": "Clint Black", + "position": 23, + "title": "Untanglin My Mind" + }, + { + "artist": "Collin Raye", + "position": 24, + "title": "My Kind Of Girl" + }, + { + "artist": "George Strait", + "position": 25, + "title": "The Big One" + } + ], + "title": "1994 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Boyz II Men", + "position": 1, + "title": "On Bended Knee" + }, + { + "artist": "Ini Kamoze", + "position": 2, + "title": "Here Comes The Hotstepper (From \"Ready To Wear\")" + }, + { + "artist": "Real McCoy", + "position": 3, + "title": "Another Night" + }, + { + "artist": "TLC", + "position": 4, + "title": "Creep" + }, + { + "artist": "Bon Jovi", + "position": 5, + "title": "Always" + }, + { + "artist": "Brandy", + "position": 6, + "title": "I Wanna Be Down" + }, + { + "artist": "Boyz II Men", + "position": 7, + "title": "I ll Make Love To You" + }, + { + "artist": "BLACKstreet", + "position": 8, + "title": "Before I Let You Go" + }, + { + "artist": "69 Boyz", + "position": 9, + "title": "Tootsee Roll" + }, + { + "artist": "Melissa Etheridge", + "position": 10, + "title": "I m The Only One" + }, + { + "artist": "Janet Jackson", + "position": 11, + "title": "You Want This/70 s Love Groove" + }, + { + "artist": "Madonna", + "position": 12, + "title": "Secret" + }, + { + "artist": "4PM", + "position": 13, + "title": "Sukiyaki" + }, + { + "artist": "Madonna", + "position": 14, + "title": "Take A Bow" + }, + { + "artist": "20 Fingers Featuring Gillette", + "position": 15, + "title": "Short Dick Man" + }, + { + "artist": "Des ree", + "position": 16, + "title": "You Gotta Be" + }, + { + "artist": "Sheryl Crow", + "position": 17, + "title": "All I Wanna Do" + }, + { + "artist": "Gloria Estefan", + "position": 18, + "title": "Turn The Beat Around (From \"The Specialist\")" + }, + { + "artist": "Barry White", + "position": 19, + "title": "Practice What You Preach" + }, + { + "artist": "Pretenders", + "position": 20, + "title": "I ll Stand By You" + }, + { + "artist": "Crystal Waters", + "position": 21, + "title": "100% Pure Love" + }, + { + "artist": "Corona", + "position": 22, + "title": "The Rhythm Of The Night" + }, + { + "artist": "Vanessa Williams", + "position": 23, + "title": "The Sweetest Days" + }, + { + "artist": "Tom Petty", + "position": 24, + "title": "You Don t Know How It Feels" + }, + { + "artist": "Hootie", + "position": 25, + "title": "Hold My Hand" + }, + { + "artist": "Four Seasons", + "position": 26, + "title": "December 1963 (Oh, What A Night)" + }, + { + "artist": "Ace Of Base", + "position": 27, + "title": "Living In Danger" + }, + { + "artist": "Jade", + "position": 28, + "title": "Every Day Of The Week" + }, + { + "artist": "Immature", + "position": 29, + "title": "Constantly" + }, + { + "artist": "Immature", + "position": 30, + "title": "Never Lie" + }, + { + "artist": "Deadeye Dick", + "position": 31, + "title": "New Age Girl (From \"Dumb And Dumber\")" + }, + { + "artist": "R.E.M.", + "position": 32, + "title": "What s The Frequency, Kenneth?" + }, + { + "artist": "Toni Braxton", + "position": 33, + "title": "I Belong To You/How Many Ways" + }, + { + "artist": "Mary J. Blige", + "position": 34, + "title": "Be Happy" + }, + { + "artist": "Craig Mack", + "position": 35, + "title": "Flava In Ya Ear" + }, + { + "artist": "Babyface", + "position": 36, + "title": "When Can I See You" + }, + { + "artist": "John Mellencamp With Me Shell Ndegeocello", + "position": 37, + "title": "Wild Night" + }, + { + "artist": "Zhane", + "position": 38, + "title": "Shame (From \"A Low Down Dirty Shame\")" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 39, + "title": "Thuggish Ruggish Bone" + }, + { + "artist": "Scarface", + "position": 40, + "title": "I Never Seen A Man Cry (aka I Seen A Man Die)" + }, + { + "artist": "Brownstone", + "position": 41, + "title": "If You Love Me" + }, + { + "artist": "Rappin 4-Tay", + "position": 42, + "title": "Playaz Club" + }, + { + "artist": "Sting", + "position": 43, + "title": "When We Dance" + }, + { + "artist": "N II U", + "position": 44, + "title": "I Miss You" + }, + { + "artist": "Method Man", + "position": 45, + "title": "Bring The Pain" + }, + { + "artist": "Jon Secada", + "position": 46, + "title": "Mental Picture" + }, + { + "artist": "Changing Faces", + "position": 47, + "title": "Foolin Around" + }, + { + "artist": "Aerosmith", + "position": 48, + "title": "Blind Man" + }, + { + "artist": "B.M.U. (Black Men United)", + "position": 49, + "title": "U Will Know (From \"Jason s Lyric\")" + }, + { + "artist": "Candlebox", + "position": 50, + "title": "Far Behind" + }, + { + "artist": "Warren G", + "position": 51, + "title": "Do You See" + }, + { + "artist": "Da Brat", + "position": 52, + "title": "Fa All Y all" + }, + { + "artist": "Keith Murray", + "position": 53, + "title": "The Most Beautifullest Thing In This World" + }, + { + "artist": "John Mellencamp", + "position": 54, + "title": "Dance Naked" + }, + { + "artist": "Elton John", + "position": 55, + "title": "Circle Of Life (From \"The Lion King\")" + }, + { + "artist": "Amy Grant With Vince Gill", + "position": 56, + "title": "House Of Love" + }, + { + "artist": "Lucas", + "position": 57, + "title": "Lucas With The Lid Off" + }, + { + "artist": "Toad The Wet Sprocket", + "position": 58, + "title": "Something s Always Wrong" + }, + { + "artist": "Luther Vandross", + "position": 59, + "title": "Always And Forever" + }, + { + "artist": "Heavy D", + "position": 60, + "title": "Black Coffee" + }, + { + "artist": "Hole", + "position": 61, + "title": "Doll Parts" + }, + { + "artist": "Guns N Roses", + "position": 62, + "title": "Sympathy For The Devil (\"Interview With The Vampire\")" + }, + { + "artist": "The Notorious B.I.G.", + "position": 63, + "title": "Juicy/Unbelievable" + }, + { + "artist": "Andru Donalds", + "position": 64, + "title": "Mishale" + }, + { + "artist": "2 Unlimited", + "position": 65, + "title": "Get Ready For This" + }, + { + "artist": "69 Boyz", + "position": 66, + "title": "Kitty Kitty" + }, + { + "artist": "Aaliyah", + "position": 67, + "title": "At Your Best (You Are Love)" + }, + { + "artist": "Joe Diffie", + "position": 68, + "title": "Pickup Man" + }, + { + "artist": "Urge Overkill", + "position": 69, + "title": "Girl, You ll Be A Woman Soon (From \"Pulp Fiction\")" + }, + { + "artist": "Luther Vandross", + "position": 70, + "title": "Endless Love" + }, + { + "artist": "Harry Connick, Jr.", + "position": 71, + "title": "(I Could Only) Whisper Your Name" + }, + { + "artist": "Eagles", + "position": 72, + "title": "Get Over It" + }, + { + "artist": "Craig Mack", + "position": 73, + "title": "Get Down" + }, + { + "artist": "Keith Sweat (Featuring Kut Klose)", + "position": 74, + "title": "Get Up On It" + }, + { + "artist": "Martin Page", + "position": 75, + "title": "In The House Of Stone And Light" + }, + { + "artist": "Silk", + "position": 76, + "title": "I Can Go Deep (From \"A Low Down Dirty Shame\")" + }, + { + "artist": "Mazzy Star", + "position": 77, + "title": "Fade Into You" + }, + { + "artist": "Lords Of The Underground", + "position": 78, + "title": "Tic Toc" + }, + { + "artist": "The Rolling Stones", + "position": 79, + "title": "Out Of Tears" + }, + { + "artist": "Reba McEntire", + "position": 80, + "title": "Till You Love Me" + }, + { + "artist": "Sheryl Crow", + "position": 81, + "title": "Strong Enough" + }, + { + "artist": "Steve Perry", + "position": 82, + "title": "Missing You" + }, + { + "artist": "The Flaming Lips", + "position": 83, + "title": "She Don t Use Jelly" + }, + { + "artist": "Huey Lewis", + "position": 84, + "title": "But It s Alright" + }, + { + "artist": "Tevin Campbell", + "position": 85, + "title": "Don t Say Goodbye Girl" + }, + { + "artist": "Shaquille O Neal", + "position": 86, + "title": "Biological Didn t Bother" + }, + { + "artist": "Anita Baker", + "position": 87, + "title": "I Apologize" + }, + { + "artist": "Joshua Kadison", + "position": 88, + "title": "Picture Postcards From L.A." + }, + { + "artist": "Nine", + "position": 89, + "title": "Whutcha Want?" + }, + { + "artist": "Lil Suzy", + "position": 90, + "title": "Promise Me" + }, + { + "artist": "Jeff Foxworthy", + "position": 91, + "title": "Redneck Stomp" + }, + { + "artist": "Freedy Johnston", + "position": 92, + "title": "Bad Reputation" + }, + { + "artist": "Dru Down", + "position": 93, + "title": "Pimp Of The Year" + }, + { + "artist": "The Murmurs", + "position": 94, + "title": "You Suck" + }, + { + "artist": "Liz Phair", + "position": 95, + "title": "Supernova" + }, + { + "artist": "Fu-Schnickens", + "position": 96, + "title": "Breakdown" + }, + { + "artist": "Weezer", + "position": 97, + "title": "Undone - The Sweater Song" + }, + { + "artist": "Tracy Lawrence", + "position": 98, + "title": "I See It Now" + }, + { + "artist": "Anita Baker", + "position": 99, + "title": "Body" + }, + { + "artist": "Doctor Dre", + "position": 100, + "title": "Back Up Off Me!" + } + ], + "title": "1994 - Hot 100" + }, + { + "songs": [ + { + "artist": "Doug Supernaw", + "position": 1, + "title": "I Don't Call Him Daddy" + }, + { + "artist": "Trisha Yearwood", + "position": 2, + "title": "The Song Remembers When" + }, + { + "artist": "Dwight Yoakam", + "position": 3, + "title": "Fast As You" + }, + { + "artist": "Tanya Tucker", + "position": 4, + "title": "Soon" + }, + { + "artist": "Sawyer Brown", + "position": 5, + "title": "The Boys & Me" + }, + { + "artist": "Faith Hill", + "position": 6, + "title": "Wild One" + }, + { + "artist": "Doug Stone", + "position": 7, + "title": "I Never Knew Love" + }, + { + "artist": "Wynonna", + "position": 8, + "title": "Is It Over Yet" + }, + { + "artist": "Billy Ray Cyrus", + "position": 9, + "title": "Somebody New" + }, + { + "artist": "Clay Walker", + "position": 10, + "title": "Live Until I Die" + }, + { + "artist": "Shenandoah", + "position": 11, + "title": "I Want To Be Loved Like That" + }, + { + "artist": "Little Texas", + "position": 12, + "title": "God Blessed Texas" + }, + { + "artist": "Clint Black", + "position": 13, + "title": "State Of Mind" + }, + { + "artist": "Joe Diffie", + "position": 14, + "title": "John Deere Green" + }, + { + "artist": "Sammy Kershaw", + "position": 15, + "title": "Queen Of My Double Wide Trailer" + }, + { + "artist": "John Michael Montgomery", + "position": 16, + "title": "I Swear" + }, + { + "artist": "Toby Keith", + "position": 17, + "title": "A Little Less Talk And A Lot More Action" + }, + { + "artist": "Boy Howdy", + "position": 18, + "title": "She'd Give Anything" + }, + { + "artist": "Patty Loveless", + "position": 19, + "title": "You Will" + }, + { + "artist": "Aaron Tippin", + "position": 20, + "title": "The Call Of The Wild" + }, + { + "artist": "Tracy Lawrence", + "position": 21, + "title": "My Second Home" + }, + { + "artist": "John Berry", + "position": 22, + "title": "Kiss Me In The Car" + }, + { + "artist": "Garth Brooks", + "position": 23, + "title": "American Honky-Tonk Bar Association" + }, + { + "artist": "Hal Ketchum", + "position": 24, + "title": "Someplace Far Away (Careful What You're Dreaming)" + }, + { + "artist": "Billy Dean", + "position": 25, + "title": "We Just Disagree" + } + ], + "title": "1993 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Mariah Carey", + "position": 1, + "title": "Hero" + }, + { + "artist": "Janet Jackson", + "position": 2, + "title": "Again" + }, + { + "artist": "Ace Of Base", + "position": 3, + "title": "All That She Wants" + }, + { + "artist": "Meat Loaf", + "position": 4, + "title": "I'd Do Anything For Love (But I Won't Do That)" + }, + { + "artist": "Bryan Adams/Rod Stewart/Sting", + "position": 5, + "title": "All For Love" + }, + { + "artist": "DRS", + "position": 6, + "title": "Gangsta Lean" + }, + { + "artist": "Salt-N-Pepa", + "position": 7, + "title": "Shoop" + }, + { + "artist": "Toni Braxton", + "position": 8, + "title": "Breathe Again" + }, + { + "artist": "Snoop Dogg", + "position": 9, + "title": "What's My Name?" + }, + { + "artist": "Michael Bolton", + "position": 10, + "title": "Said I Loved You...But I Lied" + }, + { + "artist": "Bryan Adams", + "position": 11, + "title": "Please Forgive Me" + }, + { + "artist": "Tevin Campbell", + "position": 12, + "title": "Can We Talk" + }, + { + "artist": "Tag Team", + "position": 13, + "title": "Whoomp! (There It Is)" + }, + { + "artist": "Xscape", + "position": 14, + "title": "Just Kickin' It" + }, + { + "artist": "2Pac", + "position": 15, + "title": "Keep Ya Head Up" + }, + { + "artist": "The Cranberries", + "position": 16, + "title": "Linger" + }, + { + "artist": "Zhane", + "position": 17, + "title": "Hey Mr. D.J." + }, + { + "artist": "10,000 Maniacs", + "position": 18, + "title": "Because The Night" + }, + { + "artist": "Domino", + "position": 19, + "title": "Getto Jam" + }, + { + "artist": "Culture Beat", + "position": 20, + "title": "Mr. Vain" + }, + { + "artist": "Babyface", + "position": 21, + "title": "Never Keeping Secrets" + }, + { + "artist": "Haddaway", + "position": 22, + "title": "What Is Love" + }, + { + "artist": "Jodeci", + "position": 23, + "title": "Cry For You" + }, + { + "artist": "Jimmy Cliff", + "position": 24, + "title": "I Can See Clearly Now (From \"Cool Runnings\")" + }, + { + "artist": "K7", + "position": 25, + "title": "Come Baby Come" + }, + { + "artist": "Mariah Carey", + "position": 26, + "title": "Dreamlover" + }, + { + "artist": "R. Kelly", + "position": 27, + "title": "Sex Me (Parts I & II)" + }, + { + "artist": "Celine Dion", + "position": 28, + "title": "The Power Of Love" + }, + { + "artist": "Billy Joel", + "position": 29, + "title": "All About Soul" + }, + { + "artist": "Hi-Five", + "position": 30, + "title": "Never Should've Let You Go (From \"Sister Act 2\")" + }, + { + "artist": "Color Me Badd", + "position": 31, + "title": "Time And Chance" + }, + { + "artist": "Gabrielle", + "position": 32, + "title": "Dreams" + }, + { + "artist": "Joshua Kadison", + "position": 33, + "title": "Jessie" + }, + { + "artist": "Queen Latifah", + "position": 34, + "title": "U.N.I.T.Y." + }, + { + "artist": "Aerosmith", + "position": 35, + "title": "Cryin'" + }, + { + "artist": "Tony Toni Tone", + "position": 36, + "title": "Anniversary" + }, + { + "artist": "Phil Collins", + "position": 37, + "title": "Both Sides Of The Story" + }, + { + "artist": "Billy Joel", + "position": 38, + "title": "The River Of Dreams" + }, + { + "artist": "Shaquille O'Neal", + "position": 39, + "title": "(I Know I Got) Skillz" + }, + { + "artist": "Inner Circle", + "position": 40, + "title": "Sweat (A La La La La Long)" + }, + { + "artist": "Blind Melon", + "position": 41, + "title": "No Rain" + }, + { + "artist": "Xscape", + "position": 42, + "title": "Understanding" + }, + { + "artist": "Janet Jackson", + "position": 43, + "title": "If" + }, + { + "artist": "Zapp & Roger", + "position": 44, + "title": "Slow And Easy" + }, + { + "artist": "Aerosmith", + "position": 45, + "title": "Amazing" + }, + { + "artist": "Gin Blossoms", + "position": 46, + "title": "Found Out About You" + }, + { + "artist": "Mr. Big", + "position": 47, + "title": "Wild World" + }, + { + "artist": "Toni Braxton", + "position": 48, + "title": "Another Sad Love Song" + }, + { + "artist": "Eazy-E", + "position": 49, + "title": "Real Muthaphuckkin G's" + }, + { + "artist": "Def Leppard", + "position": 50, + "title": "Two Steps Behind (From \"Last Action Hero\")" + }, + { + "artist": "UB40", + "position": 51, + "title": "Higher Ground" + }, + { + "artist": "Rod Stewart", + "position": 52, + "title": "Reason To Believe" + }, + { + "artist": "Boyz II Men", + "position": 53, + "title": "Let It Snow" + }, + { + "artist": "US 3", + "position": 54, + "title": "Cantaloop (Flip Fantasia)" + }, + { + "artist": "A Tribe Called Quest", + "position": 55, + "title": "Award Tour" + }, + { + "artist": "Elton John & Kiki Dee", + "position": 56, + "title": "True Love" + }, + { + "artist": "Intro", + "position": 57, + "title": "Come Inside" + }, + { + "artist": "Lisette Melendez", + "position": 58, + "title": "Goody Goody" + }, + { + "artist": "Def Leppard", + "position": 59, + "title": "Miss You In A Heartbeat" + }, + { + "artist": "Collage", + "position": 60, + "title": "I'll Be Loving You" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 61, + "title": "Soul To Squeeze (From \"Coneheads\")" + }, + { + "artist": "Rick Astley", + "position": 62, + "title": "Hopelessly" + }, + { + "artist": "Das EFX", + "position": 63, + "title": "Freakit" + }, + { + "artist": "R.E.M.", + "position": 64, + "title": "Everybody Hurts" + }, + { + "artist": "Little Texas", + "position": 65, + "title": "God Blessed Texas" + }, + { + "artist": "U2", + "position": 66, + "title": "Stay (Faraway, So Close!)" + }, + { + "artist": "The Lemonheads", + "position": 67, + "title": "Into Your Arms" + }, + { + "artist": "Expose", + "position": 68, + "title": "As Long As I Can Dream" + }, + { + "artist": "The Breeders", + "position": 69, + "title": "Cannonball" + }, + { + "artist": "Shai", + "position": 70, + "title": "Yours" + }, + { + "artist": "The Goodmen", + "position": 71, + "title": "Give It Up" + }, + { + "artist": "Kenny G", + "position": 72, + "title": "Sentimental" + }, + { + "artist": "Mista Grimm", + "position": 73, + "title": "Indo Smoke (From \"Poetic Justice\")" + }, + { + "artist": "Ice Cube", + "position": 74, + "title": "Really Doe" + }, + { + "artist": "Wu-Tang Clan", + "position": 75, + "title": "Method Man" + }, + { + "artist": "Jade", + "position": 76, + "title": "Looking For Mr. Do Right" + }, + { + "artist": "Taylor Dayne", + "position": 77, + "title": "Send Me A Lover" + }, + { + "artist": "Dr. Dre", + "position": 78, + "title": "Let Me Ride" + }, + { + "artist": "Lisa Keith", + "position": 79, + "title": "Better Than You" + }, + { + "artist": "Dwight Yoakam", + "position": 80, + "title": "Fast As You" + }, + { + "artist": "Souls Of Mischief", + "position": 81, + "title": "93 'Til Infinity" + }, + { + "artist": "Jazzy Jeff & The Fresh Prince", + "position": 82, + "title": "I'm Looking For The One (To Be With Me)" + }, + { + "artist": "Haddaway", + "position": 83, + "title": "Life (Everybody Needs Somebody To Love)" + }, + { + "artist": "Chantay Savage", + "position": 84, + "title": "Betcha'll Never Find" + }, + { + "artist": "Trisha Yearwood", + "position": 85, + "title": "The Song Remembers When" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 86, + "title": "Mary Jane's Last Dance" + }, + { + "artist": "Heart", + "position": 87, + "title": "Will You Be There (In The Morning)" + }, + { + "artist": "Kate Bush", + "position": 88, + "title": "Rubberband Girl" + }, + { + "artist": "Rozalla", + "position": 89, + "title": "I Love Music (From \"Carlito's Way\")" + }, + { + "artist": "Robin S.", + "position": 90, + "title": "Love For Love" + }, + { + "artist": "Joe Diffie", + "position": 91, + "title": "John Deere Green" + }, + { + "artist": "Kris Kross", + "position": 92, + "title": "I'm Real" + }, + { + "artist": "Reality", + "position": 93, + "title": "Yolanda" + }, + { + "artist": "RAab", + "position": 94, + "title": "Foreplay" + }, + { + "artist": "Bell Biv Devoe", + "position": 95, + "title": "Something In Your Eyes" + }, + { + "artist": "Nightcrawlers", + "position": 96, + "title": "Push The Feeling On" + }, + { + "artist": "Clay Walker", + "position": 97, + "title": "What's It To You" + }, + { + "artist": "Lords Of The Underground", + "position": 98, + "title": "Here Come The Lords" + }, + { + "artist": "Inner Circle", + "position": 99, + "title": "Rock With You" + }, + { + "artist": "MC Ren", + "position": 100, + "title": "Same Ol' Shit" + } + ], + "title": "1993 - Hot 100" + }, + { + "songs": [ + { + "artist": "Vince Gill", + "position": 1, + "title": "Don t Let Our Love Start Slippin Away" + }, + { + "artist": "Alan Jackson", + "position": 2, + "title": "She s Got The Rhythm (And I Got The Blues)" + }, + { + "artist": "Garth Brooks", + "position": 3, + "title": "Somewhere Other Than The Night" + }, + { + "artist": "Hal Ketchum", + "position": 4, + "title": "Sure Love" + }, + { + "artist": "Clint Black", + "position": 5, + "title": "Burn One Down" + }, + { + "artist": "George Strait", + "position": 6, + "title": "I Cross My Heart" + }, + { + "artist": "Trisha Yearwood", + "position": 7, + "title": "Walkaway Joe" + }, + { + "artist": "Brooks", + "position": 8, + "title": "Lost And Found" + }, + { + "artist": "Restless Heart", + "position": 9, + "title": "When She Cries" + }, + { + "artist": "Tracy Lawrence", + "position": 10, + "title": "Somebody Paints The Wall" + }, + { + "artist": "Randy Travis", + "position": 11, + "title": "Look Heart, No Hands" + }, + { + "artist": "Lee Roy Parnell", + "position": 12, + "title": "Love Without Mercy" + }, + { + "artist": "Reba McEntire", + "position": 13, + "title": "Take It Back" + }, + { + "artist": "Sammy Kershaw", + "position": 14, + "title": "Anywhere But Here" + }, + { + "artist": "John Michael Montgomery", + "position": 15, + "title": "Life s A Dance" + }, + { + "artist": "Ricky Van Shelton", + "position": 16, + "title": "Wild Man" + }, + { + "artist": "Doug Stone", + "position": 17, + "title": "Too Busy Being In Love" + }, + { + "artist": "Tanya Tucker", + "position": 18, + "title": "Two Sparrows In A Hurricane" + }, + { + "artist": "Alabama", + "position": 19, + "title": "I m In A Hurry (And Don t Know Why)" + }, + { + "artist": "Diamond Rio", + "position": 20, + "title": "In A Week Or Two" + }, + { + "artist": "Little Texas", + "position": 21, + "title": "What Were You Thinkin" + }, + { + "artist": "Travis Tritt", + "position": 22, + "title": "Can I Trust You With My Heart" + }, + { + "artist": "Chris LeDoux", + "position": 23, + "title": "Cadillac Ranch" + }, + { + "artist": "John Anderson", + "position": 24, + "title": "Let Go Of The Stone" + }, + { + "artist": "Wynonna", + "position": 25, + "title": "My Strongest Weakness" + } + ], + "title": "1992 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Whitney Houston", + "position": 1, + "title": "I Will Always Love You (From \"The Bodyguard\")" + }, + { + "artist": "Wreckx-N-Effect", + "position": 2, + "title": "Rump Shaker" + }, + { + "artist": "Shai", + "position": 3, + "title": "If I Ever Fall In Love" + }, + { + "artist": "Boyz II Men", + "position": 4, + "title": "In The Still Of The Nite (From \"The Jacksons\")" + }, + { + "artist": "P.M. Dawn", + "position": 5, + "title": "I d Die Without You (From \"Boomerang\")" + }, + { + "artist": "Snap", + "position": 6, + "title": "Rhythm Is A Dancer" + }, + { + "artist": "Bobby Brown", + "position": 7, + "title": "Good Enough" + }, + { + "artist": "Shanice", + "position": 8, + "title": "Saving Forever For You (From \"Beverly Hills, 90210\")" + }, + { + "artist": "The Heights", + "position": 9, + "title": "How Do You Talk To An Angel" + }, + { + "artist": "Mary J. Blige", + "position": 10, + "title": "Real Love" + }, + { + "artist": "TLC", + "position": 11, + "title": "What About Your Friends" + }, + { + "artist": "Michael Bolton", + "position": 12, + "title": "To Love Somebody" + }, + { + "artist": "Madonna", + "position": 13, + "title": "Deeper And Deeper" + }, + { + "artist": "Saigon Kick", + "position": 14, + "title": "Love Is On The Way" + }, + { + "artist": "Jon Secada", + "position": 15, + "title": "Do You Believe In Us" + }, + { + "artist": "Eric Clapton", + "position": 16, + "title": "Layla" + }, + { + "artist": "Spin Doctors", + "position": 17, + "title": "Little Miss Can t Be Wrong" + }, + { + "artist": "Restless Heart", + "position": 18, + "title": "When She Cries" + }, + { + "artist": "Go West", + "position": 19, + "title": "Faithful" + }, + { + "artist": "Annie Lennox", + "position": 20, + "title": "Walking On Broken Glass" + }, + { + "artist": "Boyz II Men", + "position": 21, + "title": "End Of The Road (From \"Boomerang\")" + }, + { + "artist": "Mad Cobra", + "position": 22, + "title": "Flex" + }, + { + "artist": "Damn Yankees", + "position": 23, + "title": "Where You Goin Now" + }, + { + "artist": "N2Deep", + "position": 24, + "title": "Back To The Hotel" + }, + { + "artist": "Genesis", + "position": 25, + "title": "Never A Time" + }, + { + "artist": "Elton John", + "position": 26, + "title": "The Last Song" + }, + { + "artist": "Charles", + "position": 27, + "title": "Would I Lie To You?" + }, + { + "artist": "R.E.M.", + "position": 28, + "title": "Drive" + }, + { + "artist": "Prince And The New Power Generation", + "position": 29, + "title": "7" + }, + { + "artist": "Patty Smyth", + "position": 30, + "title": "Sometimes Love Just Ain t Enough" + }, + { + "artist": "Portrait", + "position": 31, + "title": "Here We Go Again!" + }, + { + "artist": "House Of Pain", + "position": 32, + "title": "Jump Around" + }, + { + "artist": "Expose", + "position": 33, + "title": "I Wish The Phone Would Ring" + }, + { + "artist": "Toad The Wet Sprocket", + "position": 34, + "title": "Walk On The Ocean" + }, + { + "artist": "U2", + "position": 35, + "title": "Who s Gonna Ride Your Wild Horses" + }, + { + "artist": "Arrested Development", + "position": 36, + "title": "People Everyday" + }, + { + "artist": "Bon Jovi", + "position": 37, + "title": "Keep The Faith" + }, + { + "artist": "En Vogue", + "position": 38, + "title": "Give It Up, Turn It Loose" + }, + { + "artist": "Lo-Key?", + "position": 39, + "title": "I Got A Thang 4 Ya!" + }, + { + "artist": "En Vogue", + "position": 40, + "title": "Free Your Mind" + }, + { + "artist": "Bell Biv Devoe", + "position": 41, + "title": "Gangsta" + }, + { + "artist": "Peabo Bryson", + "position": 42, + "title": "A Whole New World (Aladdin s Theme)" + }, + { + "artist": "The S.O.U.L. S.Y.S.T.E.M.", + "position": 43, + "title": "It s Gonna Be A Lovely Day" + }, + { + "artist": "TLC", + "position": 44, + "title": "Baby-Baby-Baby" + }, + { + "artist": "Shabba Ranks (Featuring Johnny Gill)", + "position": 45, + "title": "Slow And Sexy" + }, + { + "artist": "Toni Braxton", + "position": 46, + "title": "Love Shoulda Brought You Home (From \"Boomerang\")" + }, + { + "artist": "Trey Lorenz", + "position": 47, + "title": "Someone To Hold" + }, + { + "artist": "Jon Secada", + "position": 48, + "title": "Just Another Day" + }, + { + "artist": "Sade", + "position": 49, + "title": "No Ordinary Love" + }, + { + "artist": "Celine Dion", + "position": 50, + "title": "Love Can Move Mountains" + }, + { + "artist": "Def Leppard", + "position": 51, + "title": "Have You Ever Needed Someone So Bad" + }, + { + "artist": "Dan Baird", + "position": 52, + "title": "I Love You Period" + }, + { + "artist": "Arrested Development", + "position": 53, + "title": "Mr. Wendal" + }, + { + "artist": "Michael Jackson", + "position": 54, + "title": "Heal The World" + }, + { + "artist": "After 7", + "position": 55, + "title": "Baby I m For Real/Natural High" + }, + { + "artist": "Hi-Five", + "position": 56, + "title": "Quality Time" + }, + { + "artist": "Mary J. Blige", + "position": 57, + "title": "Reminisce" + }, + { + "artist": "Shakespear s Sister", + "position": 58, + "title": "I Don t Care" + }, + { + "artist": "Madonna", + "position": 59, + "title": "Erotica" + }, + { + "artist": "Def Leppard", + "position": 60, + "title": "Stand Up (Kick Love Into Motion)" + }, + { + "artist": "Father M.C.", + "position": 61, + "title": "Everything s Gonna Be Alright" + }, + { + "artist": "Paperboy", + "position": 62, + "title": "Ditty" + }, + { + "artist": "Michael W. Smith", + "position": 63, + "title": "I Will Be Here For You" + }, + { + "artist": "Color Me Badd", + "position": 64, + "title": "Forever Love (From \"Mo Money\")" + }, + { + "artist": "Peter Gabriel", + "position": 65, + "title": "Steam" + }, + { + "artist": "10,000 Maniacs", + "position": 66, + "title": "These Are Days" + }, + { + "artist": "House Of Pain", + "position": 67, + "title": "Shamrocks And Shenanigans (Boom Shalock Lock Boom)" + }, + { + "artist": "Lighter Shade Of Brown", + "position": 68, + "title": "Homies" + }, + { + "artist": "The Soup Dragons", + "position": 69, + "title": "Pleasure" + }, + { + "artist": "Chuckii Booker", + "position": 70, + "title": "Games" + }, + { + "artist": "Firehouse", + "position": 71, + "title": "When I Look Into Your Eyes" + }, + { + "artist": "Positive K", + "position": 72, + "title": "I Got A Man" + }, + { + "artist": "George LaMond", + "position": 73, + "title": "Baby, I Believe In You" + }, + { + "artist": "Goddess", + "position": 74, + "title": "Sexual" + }, + { + "artist": "Classic Example", + "position": 75, + "title": "It s Alright (From \"South Central\")" + }, + { + "artist": "Jade", + "position": 76, + "title": "Don t Walk Away" + }, + { + "artist": "Richard Marx", + "position": 77, + "title": "Chains Around My Heart" + }, + { + "artist": "Al B. Sure!", + "position": 78, + "title": "Right Now" + }, + { + "artist": "Jeremy Jordan", + "position": 79, + "title": "The Right Kind Of Love (From \"Beverly Hills, 90210\")" + }, + { + "artist": "Kenny G", + "position": 80, + "title": "Forever In Love" + }, + { + "artist": "Kris Kross", + "position": 81, + "title": "I Missed The Bus" + }, + { + "artist": "Ice Cube", + "position": 82, + "title": "Wicked" + }, + { + "artist": "Smart E s", + "position": 83, + "title": "Sesame s Treet" + }, + { + "artist": "Wynonna", + "position": 84, + "title": "No One Else On Earth" + }, + { + "artist": "Megadeth", + "position": 85, + "title": "Symphony Of Destruction" + }, + { + "artist": "Guns N Roses", + "position": 86, + "title": "Yesterdays" + }, + { + "artist": "Bad Company", + "position": 87, + "title": "This Could Be The One" + }, + { + "artist": "Sound Factory", + "position": 88, + "title": "Understand This Groove" + }, + { + "artist": "Billy Ray Cyrus", + "position": 89, + "title": "Could ve Been Me" + }, + { + "artist": "Home Team", + "position": 90, + "title": "Pick It Up" + }, + { + "artist": "Cathy Dennis", + "position": 91, + "title": "Irresistible" + }, + { + "artist": "Chante Moore", + "position": 92, + "title": "Love s Taken Over" + }, + { + "artist": "Patty Smyth", + "position": 93, + "title": "No Mistakes" + }, + { + "artist": "Firehouse", + "position": 94, + "title": "Sleeping With You" + }, + { + "artist": "R. Kelly", + "position": 95, + "title": "Slow Dance (Hey Mr. DJ)" + }, + { + "artist": "Grand Puba", + "position": 96, + "title": "360 Degrees (What Goes Around)" + }, + { + "artist": "CeCe Peniston", + "position": 97, + "title": "Crazy Love" + }, + { + "artist": "AB Logic", + "position": 98, + "title": "Get Up (Move Boy Move)" + }, + { + "artist": "Arrested Development", + "position": 99, + "title": "Revolution (From \"Malcolm X\")" + }, + { + "artist": "Tevin Campbell", + "position": 100, + "title": "Alone With You" + } + ], + "title": "1992 - Hot 100" + }, + { + "songs": [ + { + "artist": "Brooks", + "position": 1, + "title": "My Next Broken Heart" + }, + { + "artist": "Reba McEntire", + "position": 2, + "title": "For My Broken Heart" + }, + { + "artist": "Collin Raye", + "position": 3, + "title": "Love, Me" + }, + { + "artist": "Restless Heart", + "position": 4, + "title": "You Can Depend On Me" + }, + { + "artist": "George Strait", + "position": 5, + "title": "The Chill Of An Early Fall" + }, + { + "artist": "Vince Gill", + "position": 6, + "title": "Look At Us" + }, + { + "artist": "Steve Wariner", + "position": 7, + "title": "Leave Him Out Of This" + }, + { + "artist": "Billy Dean", + "position": 8, + "title": "You Don t Count The Cost" + }, + { + "artist": "Tanya Tucker", + "position": 9, + "title": "(Without You) What Do I Do With Me" + }, + { + "artist": "Tracy Lawrence", + "position": 10, + "title": "Sticks And Stones" + }, + { + "artist": "Sammy Kershaw", + "position": 11, + "title": "Cadillac Style" + }, + { + "artist": "Garth Brooks", + "position": 12, + "title": "Shameless" + }, + { + "artist": "Little Texas", + "position": 13, + "title": "Some Guys Have All The Love" + }, + { + "artist": "The Remingtons", + "position": 14, + "title": "A Long Time Ago" + }, + { + "artist": "Doug Stone", + "position": 15, + "title": "A Jukebox With A Country Song" + }, + { + "artist": "Alabama", + "position": 16, + "title": "Then Again" + }, + { + "artist": "Randy Travis", + "position": 17, + "title": "Forever Together" + }, + { + "artist": "Mary Chapin Carpenter", + "position": 18, + "title": "Going Out Tonight" + }, + { + "artist": "Hal Ketchum", + "position": 19, + "title": "I Know Where Love Lives" + }, + { + "artist": "Sawyer Brown", + "position": 20, + "title": "The Dirt Road" + }, + { + "artist": "Suzy Bogguss", + "position": 21, + "title": "Someday Soon" + }, + { + "artist": "Mark Chesnutt", + "position": 22, + "title": "Broken Promise Land" + }, + { + "artist": "Travis Tritt With Marty Stuart", + "position": 23, + "title": "The Whiskey Ain t Workin" + }, + { + "artist": "Rob Crosby", + "position": 24, + "title": "Still Burnin For You" + }, + { + "artist": "Travis Tritt", + "position": 25, + "title": "Anymore" + } + ], + "title": "1991 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Michael Jackson", + "position": 1, + "title": "Black Or White" + }, + { + "artist": "Boyz II Men", + "position": 2, + "title": "It s So Hard To Say Goodbye To Yesterday" + }, + { + "artist": "Color Me Badd", + "position": 3, + "title": "All 4 Love" + }, + { + "artist": "P.M. Dawn", + "position": 4, + "title": "Set Adrift On Memory Bliss" + }, + { + "artist": "Michael Bolton", + "position": 5, + "title": "When A Man Loves A Woman" + }, + { + "artist": "Mariah Carey", + "position": 6, + "title": "Can t Let Go" + }, + { + "artist": "Paula Abdul", + "position": 7, + "title": "Blowing Kisses In The Wind" + }, + { + "artist": "CeCe Peniston", + "position": 8, + "title": "Finally" + }, + { + "artist": "M.C. Hammer", + "position": 9, + "title": "2 Legit 2 Quit" + }, + { + "artist": "Marky Mark", + "position": 10, + "title": "Wildside" + }, + { + "artist": "Amy Grant", + "position": 11, + "title": "That s What Love Is For" + }, + { + "artist": "Richard Marx", + "position": 12, + "title": "Keep Coming Back" + }, + { + "artist": "Genesis", + "position": 13, + "title": "No Son Of Mine" + }, + { + "artist": "Prince And The N.P.G.", + "position": 14, + "title": "Cream" + }, + { + "artist": "Naughty By Nature", + "position": 15, + "title": "O.P.P." + }, + { + "artist": "Salt-N-Pepa", + "position": 16, + "title": "Let s Talk About Sex" + }, + { + "artist": "Nirvana", + "position": 17, + "title": "Smells Like Teen Spirit" + }, + { + "artist": "Guns N Roses", + "position": 18, + "title": "Don t Cry" + }, + { + "artist": "George Michael/Elton John", + "position": 19, + "title": "Don t Let The Sun Go Down On Me" + }, + { + "artist": "M.C. Hammer", + "position": 20, + "title": "Addams Groove" + }, + { + "artist": "Bryan Adams", + "position": 21, + "title": "Can t Stop This Thing We Started" + }, + { + "artist": "Gloria Estefan", + "position": 22, + "title": "Live For Loving You" + }, + { + "artist": "Roberta Flack With Maxi Priest", + "position": 23, + "title": "Set The Night To Music" + }, + { + "artist": "Rod Stewart", + "position": 24, + "title": "Broken Arrow" + }, + { + "artist": "Shanice", + "position": 25, + "title": "I Love Your Smile" + }, + { + "artist": "U2", + "position": 26, + "title": "Mysterious Ways" + }, + { + "artist": "Natural Selection", + "position": 27, + "title": "Do Anything" + }, + { + "artist": "Jodeci", + "position": 28, + "title": "Forever My Lady" + }, + { + "artist": "Karyn White", + "position": 29, + "title": "Romantic" + }, + { + "artist": "Prince And The N.P.G.", + "position": 30, + "title": "Diamonds And Pearls" + }, + { + "artist": "Lisa Stansfield", + "position": 31, + "title": "Change" + }, + { + "artist": "Tevin Campbell", + "position": 32, + "title": "Tell Me What You Want Me To Do" + }, + { + "artist": "Nia Peeples", + "position": 33, + "title": "Street Of Dreams" + }, + { + "artist": "Roxette", + "position": 34, + "title": "Spending My Time" + }, + { + "artist": "Karyn White", + "position": 35, + "title": "The Way I Feel About You" + }, + { + "artist": "Stacy Earl", + "position": 36, + "title": "Love Me All Up" + }, + { + "artist": "Mariah Carey", + "position": 37, + "title": "Emotions" + }, + { + "artist": "Angelica", + "position": 38, + "title": "Angel Baby" + }, + { + "artist": "Geto Boys", + "position": 39, + "title": "Mind Playing Tricks On Me" + }, + { + "artist": "Cher", + "position": 40, + "title": "Save Up All Your Tears" + }, + { + "artist": "Keith Sweat", + "position": 41, + "title": "Keep It Comin" + }, + { + "artist": "Tracie Spencer", + "position": 42, + "title": "Tender Kisses" + }, + { + "artist": "Vanessa Williams", + "position": 43, + "title": "Running Back To You" + }, + { + "artist": "Motley Crue", + "position": 44, + "title": "Home Sweet Home" + }, + { + "artist": "The Storm", + "position": 45, + "title": "I ve Got A Lot To Learn About Love" + }, + { + "artist": "Curtis Stigers", + "position": 46, + "title": "I Wonder Why" + }, + { + "artist": "Metallica", + "position": 47, + "title": "Enter Sandman" + }, + { + "artist": "Van Halen", + "position": 48, + "title": "Top Of The World" + }, + { + "artist": "Shabba Ranks/Maxi Priest", + "position": 49, + "title": "Housecall" + }, + { + "artist": "Heavy D", + "position": 50, + "title": "Is It Good To You" + }, + { + "artist": "Kym Sims", + "position": 51, + "title": "Too Blind To See It" + }, + { + "artist": "D.J. Jazzy Jeff", + "position": 52, + "title": "Ring My Bell" + }, + { + "artist": "Metallica", + "position": 53, + "title": "The Unforgiven" + }, + { + "artist": "Lita Ford", + "position": 54, + "title": "Shot Of Poison" + }, + { + "artist": "The Party", + "position": 55, + "title": "In My Dreams" + }, + { + "artist": "Bonnie Raitt", + "position": 56, + "title": "I Can t Make You Love Me" + }, + { + "artist": "Scorpions", + "position": 57, + "title": "Send Me An Angel" + }, + { + "artist": "Public Enemy", + "position": 58, + "title": "Can t Truss It" + }, + { + "artist": "Natural Selection", + "position": 59, + "title": "Hearts Don t Think (They Feel)" + }, + { + "artist": "Firehouse", + "position": 60, + "title": "All She Wrote" + }, + { + "artist": "Icy Blu", + "position": 61, + "title": "I Wanna Be Your Girl" + }, + { + "artist": "Kid N Play", + "position": 62, + "title": "Ain t Gonna Hurt Nobody" + }, + { + "artist": "Lighter Shade Of Brown", + "position": 63, + "title": "On A Sunday Afternoon" + }, + { + "artist": "Digital Underground", + "position": 64, + "title": "Kiss You Back" + }, + { + "artist": "C+C Music Factory Presents Zelma Davis", + "position": 65, + "title": "Just A Touch Of Love" + }, + { + "artist": "The Farm", + "position": 66, + "title": "Groovy Train" + }, + { + "artist": "Right Said Fred", + "position": 67, + "title": "I m Too Sexy" + }, + { + "artist": "Lisette Melendez", + "position": 68, + "title": "A Day In My Life (Without You)" + }, + { + "artist": "M.C. Breed", + "position": 69, + "title": "Ain t No Future In Yo Fronting" + }, + { + "artist": "Vanessa Williams", + "position": 70, + "title": "The Comfort Zone" + }, + { + "artist": "Jody Watley", + "position": 71, + "title": "I Want You" + }, + { + "artist": "The 2 Live Crew", + "position": 72, + "title": "Pop That Coochie" + }, + { + "artist": "Ozzy Osbourne", + "position": 73, + "title": "No More Tears" + }, + { + "artist": "Corina", + "position": 74, + "title": "Whispers" + }, + { + "artist": "Atlantic Starr", + "position": 75, + "title": "Love Crazy" + }, + { + "artist": "Laissez Faire", + "position": 76, + "title": "In Paradise" + }, + { + "artist": "Voyce", + "position": 77, + "title": "Within My Heart" + }, + { + "artist": "Boyz II Men", + "position": 78, + "title": "Uhh Ahh" + }, + { + "artist": "John Mellencamp", + "position": 79, + "title": "Get A Leg Up" + }, + { + "artist": "Tone-Loc", + "position": 80, + "title": "All Through The Night" + }, + { + "artist": "Kenny Loggins", + "position": 81, + "title": "Conviction Of The Heart" + }, + { + "artist": "Mr. Big", + "position": 82, + "title": "To Be With You" + }, + { + "artist": "Big Audio", + "position": 83, + "title": "Rush" + }, + { + "artist": "Jesus Jones", + "position": 84, + "title": "Real Real Real" + }, + { + "artist": "Eddie Money", + "position": 85, + "title": "I ll Get By" + }, + { + "artist": "Bette Midler", + "position": 86, + "title": "Every Road Leads Back To You" + }, + { + "artist": "Bryan Adams", + "position": 87, + "title": "There Will Never Be Another Tonight" + }, + { + "artist": "Prince And The N.P.G.", + "position": 88, + "title": "Insatiable" + }, + { + "artist": "The Shamen", + "position": 89, + "title": "Move Any Mountain" + }, + { + "artist": "Damian Dame", + "position": 90, + "title": "Right Down To It" + }, + { + "artist": "U2", + "position": 91, + "title": "The Fly" + }, + { + "artist": "The KLF", + "position": 92, + "title": "What Time Is Love?" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 93, + "title": "Give It Away" + }, + { + "artist": "Simply Red", + "position": 94, + "title": "Something Got Me Started" + }, + { + "artist": "Guns N Roses", + "position": 95, + "title": "Live And Let Die" + }, + { + "artist": "Cathy Dennis", + "position": 96, + "title": "Everybody Move" + }, + { + "artist": "UB40", + "position": 97, + "title": "Groovin" + }, + { + "artist": "Hi-Five", + "position": 98, + "title": "Just Another Girlfriend" + }, + { + "artist": "EMF", + "position": 99, + "title": "Lies" + }, + { + "artist": "Blue Train", + "position": 100, + "title": "All I Need Is You" + } + ], + "title": "1991 - Hot 100" + }, + { + "songs": [ + { + "artist": "George Strait", + "position": 1, + "title": "I ve Come To Expect It From You" + }, + { + "artist": "Garth Brooks", + "position": 2, + "title": "Unanswered Prayers" + }, + { + "artist": "Vince Gill", + "position": 3, + "title": "Never Knew Lonely" + }, + { + "artist": "Alan Jackson", + "position": 4, + "title": "Chasin That Neon Rainbow" + }, + { + "artist": "Shenandoah", + "position": 5, + "title": "Ghost In This House" + }, + { + "artist": "Clint Black", + "position": 6, + "title": "Put Yourself In My Shoes" + }, + { + "artist": "Alabama", + "position": 7, + "title": "Forever s As Far As I ll Go" + }, + { + "artist": "Ricky Van Shelton", + "position": 8, + "title": "Life s Little Ups And Downs" + }, + { + "artist": "Conway Twitty", + "position": 9, + "title": "Crazy In Love" + }, + { + "artist": "K.T. Oslin", + "position": 10, + "title": "Come Next Monday" + }, + { + "artist": "Tanya Tucker", + "position": 11, + "title": "It Won t Be Me" + }, + { + "artist": "Carlene Carter", + "position": 12, + "title": "Come On Back" + }, + { + "artist": "Reba McEntire", + "position": 13, + "title": "Rumor Has It" + }, + { + "artist": "Paul Overstreet", + "position": 14, + "title": "Daddy s Come Around" + }, + { + "artist": "Kathy Mattea", + "position": 15, + "title": "A Few Good Things Remain" + }, + { + "artist": "Dwight Yoakam", + "position": 16, + "title": "Turn It On, Turn It Up, Turn Me Loose" + }, + { + "artist": "Don Williams", + "position": 17, + "title": "Back In My Younger Days" + }, + { + "artist": "Mary Chapin Carpenter", + "position": 18, + "title": "You Win Again" + }, + { + "artist": "Mark Chesnutt", + "position": 19, + "title": "Brother Jukebox" + }, + { + "artist": "Joe Diffie", + "position": 20, + "title": "Home" + }, + { + "artist": "Doug Stone", + "position": 21, + "title": "These Lips Don t Know How To Say Goodbye" + }, + { + "artist": "Holly Dunn", + "position": 22, + "title": "You Really Had Me Going" + }, + { + "artist": "Rodney Crowell", + "position": 23, + "title": "Now That We re Alone" + }, + { + "artist": "Lee Greenwood", + "position": 24, + "title": "We ve Got It Made" + }, + { + "artist": "Highway 101", + "position": 25, + "title": "Someone Else s Trouble Now" + } + ], + "title": "1990 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Stevie B", + "position": 1, + "title": "Because I Love You (The Postman Song)" + }, + { + "artist": "Madonna", + "position": 2, + "title": "Justify My Love" + }, + { + "artist": "Bette Midler", + "position": 3, + "title": "From A Distance" + }, + { + "artist": "Wilson Phillips", + "position": 4, + "title": "Impulsive" + }, + { + "artist": "DNA Featuring Suzanne Vega", + "position": 5, + "title": "Tom s Diner" + }, + { + "artist": "Damn Yankees", + "position": 6, + "title": "High Enough" + }, + { + "artist": "Whitney Houston", + "position": 7, + "title": "I m Your Baby Tonight" + }, + { + "artist": "George Michael", + "position": 8, + "title": "Freedom" + }, + { + "artist": "UB40", + "position": 9, + "title": "The Way You Do The Things You Do" + }, + { + "artist": "Ralph Tresvant", + "position": 10, + "title": "Sensitivity" + }, + { + "artist": "Janet Jackson", + "position": 11, + "title": "Love Will Never Do (Without You)" + }, + { + "artist": "Jon Bon Jovi", + "position": 12, + "title": "Miracle (From \"Young Guns II\")" + }, + { + "artist": "Poison", + "position": 13, + "title": "Something To Believe In" + }, + { + "artist": "Mariah Carey", + "position": 14, + "title": "Love Takes Time" + }, + { + "artist": "Deee-Lite", + "position": 15, + "title": "Groove Is In The Heart" + }, + { + "artist": "Surface", + "position": 16, + "title": "The First Time" + }, + { + "artist": "Winger", + "position": 17, + "title": "Miles Away" + }, + { + "artist": "Steve Winwood", + "position": 18, + "title": "One And Only Man" + }, + { + "artist": "2 In A Room", + "position": 19, + "title": "Wiggle It" + }, + { + "artist": "Nelson", + "position": 20, + "title": "After The Rain" + }, + { + "artist": "C+C Music Factory", + "position": 21, + "title": "Gonna Make You Sweat" + }, + { + "artist": "Tony Toni Tone", + "position": 22, + "title": "Feels Good" + }, + { + "artist": "Vanilla Ice", + "position": 23, + "title": "Play That Funky Music" + }, + { + "artist": "Cathy Dennis", + "position": 24, + "title": "Just Another Dream" + }, + { + "artist": "Will To Power", + "position": 25, + "title": "I m Not In Love" + }, + { + "artist": "The Outfield", + "position": 26, + "title": "For You" + }, + { + "artist": "Phil Collins", + "position": 27, + "title": "Hang In Long Enough" + }, + { + "artist": "Alias", + "position": 28, + "title": "More Than Words Can Say" + }, + { + "artist": "Elisa Fiorillo", + "position": 29, + "title": "On The Way Up" + }, + { + "artist": "Heart", + "position": 30, + "title": "Stranded" + }, + { + "artist": "Johnny Gill", + "position": 31, + "title": "Fairweather Friend" + }, + { + "artist": "Debbie Gibson", + "position": 32, + "title": "Anything Is Possible" + }, + { + "artist": "Robert Palmer", + "position": 33, + "title": "You re Amazing" + }, + { + "artist": "Dino", + "position": 34, + "title": "Gentle" + }, + { + "artist": "Vanilla Ice", + "position": 35, + "title": "Ice Ice Baby" + }, + { + "artist": "Keith Sweat", + "position": 36, + "title": "I ll Give All My Love To You" + }, + { + "artist": "Donny Osmond", + "position": 37, + "title": "My Love Is A Fire" + }, + { + "artist": "Candyman", + "position": 38, + "title": "Knockin Boots" + }, + { + "artist": "INXS", + "position": 39, + "title": "Disappear" + }, + { + "artist": "Righteous Brothers", + "position": 40, + "title": "Unchained Melody" + }, + { + "artist": "LL Cool J", + "position": 41, + "title": "Around The Way Girl" + }, + { + "artist": "Daryl Hall John Oates", + "position": 42, + "title": "So Close" + }, + { + "artist": "Breathe Featuring David Glasper", + "position": 43, + "title": "Does She Love That Man?" + }, + { + "artist": "Too Short", + "position": 44, + "title": "The Ghetto" + }, + { + "artist": "Elton John", + "position": 45, + "title": "You Gotta Love Someone" + }, + { + "artist": "Warrant", + "position": 46, + "title": "I Saw Red" + }, + { + "artist": "M.C. Hammer", + "position": 47, + "title": "Pray" + }, + { + "artist": "Don Henley", + "position": 48, + "title": "New York Minute" + }, + { + "artist": "Cher", + "position": 49, + "title": "The Shoop Shoop Song (It s In His Kiss)" + }, + { + "artist": "The Black Crowes", + "position": 50, + "title": "Hard To Handle" + }, + { + "artist": "Celine Dion", + "position": 51, + "title": "Where Does My Heart Beat Now" + }, + { + "artist": "Depeche Mode", + "position": 52, + "title": "World In My Eyes" + }, + { + "artist": "Whitney Houston", + "position": 53, + "title": "All The Man That I Need" + }, + { + "artist": "Soho", + "position": 54, + "title": "Hippychick" + }, + { + "artist": "Pebbles", + "position": 55, + "title": "Love Makes Things Happen" + }, + { + "artist": "Bad Company", + "position": 56, + "title": "If You Needed Somebody" + }, + { + "artist": "Bell Biv Devoe", + "position": 57, + "title": "B.B.D. (I Thought It Was Me)?" + }, + { + "artist": "George LaMond (Duet With Brenda K. Starr)", + "position": 58, + "title": "No Matter What" + }, + { + "artist": "James Ingram", + "position": 59, + "title": "I Don t Have The Heart" + }, + { + "artist": "AC/DC", + "position": 60, + "title": "Moneytalks" + }, + { + "artist": "Iggy Pop With Kate Pierson", + "position": 61, + "title": "Candy" + }, + { + "artist": "After 7", + "position": 62, + "title": "Heat Of The Moment" + }, + { + "artist": "Maxi Priest", + "position": 63, + "title": "Close To You" + }, + { + "artist": "Chris Isaak", + "position": 64, + "title": "Wicked Game" + }, + { + "artist": "Guy", + "position": 65, + "title": "I Wanna Get With U" + }, + { + "artist": "Tony Toni Tone", + "position": 66, + "title": "It Never Rains (In Southern California)" + }, + { + "artist": "Cinderella", + "position": 67, + "title": "Shelter Me" + }, + { + "artist": "Black Box", + "position": 68, + "title": "I Don t Know Anybody Else" + }, + { + "artist": "After 7", + "position": 69, + "title": "Can t Stop" + }, + { + "artist": "Joey B. Ellis", + "position": 70, + "title": "Go For It! (Heart And Fire)" + }, + { + "artist": "Jude Cole", + "position": 71, + "title": "House Full Of Reasons" + }, + { + "artist": "Information Society", + "position": 72, + "title": "Think" + }, + { + "artist": "Trixter", + "position": 73, + "title": "Give It To Me Good" + }, + { + "artist": "Styx", + "position": 74, + "title": "Show Me The Way" + }, + { + "artist": "Tevin Campbell", + "position": 75, + "title": "Round And Round" + }, + { + "artist": "Pebbles", + "position": 76, + "title": "Giving You The Benefit" + }, + { + "artist": "Maxi Priest", + "position": 77, + "title": "Just A Little Bit Longer" + }, + { + "artist": "Urban Dance Squad", + "position": 78, + "title": "Deeper Shade Of Soul" + }, + { + "artist": "Oleta Adams", + "position": 79, + "title": "Get Here" + }, + { + "artist": "Billy Joel", + "position": 80, + "title": "And So It Goes" + }, + { + "artist": "Warrant", + "position": 81, + "title": "Cherry Pie" + }, + { + "artist": "TKA Featuring Michelle Visage", + "position": 82, + "title": "Crash (Have Some Fun)" + }, + { + "artist": "Concrete Blonde", + "position": 83, + "title": "Joey" + }, + { + "artist": "Pat", + "position": 84, + "title": "Use It Up And Wear It Out" + }, + { + "artist": "Candyman", + "position": 85, + "title": "Melt In Your Mouth" + }, + { + "artist": "2nu", + "position": 86, + "title": "This Is Ponderous" + }, + { + "artist": "David Cassidy", + "position": 87, + "title": "Lyin To Myself" + }, + { + "artist": "Al B. Sure!", + "position": 88, + "title": "Missunderstanding" + }, + { + "artist": "Tracie Spencer", + "position": 89, + "title": "This House" + }, + { + "artist": "Notorious", + "position": 90, + "title": "The Swalk" + }, + { + "artist": "The Party", + "position": 91, + "title": "I Found Love" + }, + { + "artist": "Timmy T.", + "position": 92, + "title": "One More Try" + }, + { + "artist": "Paul Simon", + "position": 93, + "title": "The Obvious Child" + }, + { + "artist": "Nelson", + "position": 94, + "title": "(Can t Live Without Your) Love And Affection" + }, + { + "artist": "Cheap Trick", + "position": 95, + "title": "Wherever Would I Be" + }, + { + "artist": "Slaughter", + "position": 96, + "title": "Spend My Life" + }, + { + "artist": "Righteous Brothers", + "position": 97, + "title": "Unchained Melody" + }, + { + "artist": "Janet Jackson", + "position": 98, + "title": "Black Cat" + }, + { + "artist": "Special Generation", + "position": 99, + "title": "Love Me Just For Me" + }, + { + "artist": "Phil Collins", + "position": 100, + "title": "Something Happened On The Way To Heaven" + } + ], + "title": "1990 - Hot 100" + }, + { + "songs": [ + { + "artist": "Highway 101", + "position": 1, + "title": "Who s Lonely Now" + }, + { + "artist": "Lorrie Morgan", + "position": 2, + "title": "Out Of Your Shoes" + }, + { + "artist": "Billy Joe Royal", + "position": 3, + "title": "Till I Can t Take It Anymore" + }, + { + "artist": "Keith Whitley", + "position": 4, + "title": "It Ain t Nothin" + }, + { + "artist": "Rodney Crowell", + "position": 5, + "title": "Many A Long" + }, + { + "artist": "Glen Campbell", + "position": 6, + "title": "She s Gone, Gone, Gone" + }, + { + "artist": "Vern Gosdin", + "position": 7, + "title": "That Just About Does It" + }, + { + "artist": "Skip Ewing", + "position": 8, + "title": "It s You Again" + }, + { + "artist": "Tanya Tucker", + "position": 9, + "title": "My Arms Stay Open All Night" + }, + { + "artist": "Willie Nelson", + "position": 10, + "title": "There You Are" + }, + { + "artist": "Clint Black", + "position": 11, + "title": "Nobody s Home" + }, + { + "artist": "The Charlie Daniels Band", + "position": 12, + "title": "Simple Man" + }, + { + "artist": "The Nitty Gritty Dirt Band", + "position": 13, + "title": "When It s Gone" + }, + { + "artist": "Steve Wariner", + "position": 14, + "title": "When I Could Come Home To You" + }, + { + "artist": "Ronnie Milsap", + "position": 15, + "title": "A Woman In Love" + }, + { + "artist": "Lionel Cartwright", + "position": 16, + "title": "In My Eyes" + }, + { + "artist": "The Desert Rose Band", + "position": 17, + "title": "Start All Over Again" + }, + { + "artist": "Ricky Van Shelton", + "position": 18, + "title": "Statue Of A Fool" + }, + { + "artist": "The Judds", + "position": 19, + "title": "One Man Woman" + }, + { + "artist": "Baillie And The Boys", + "position": 20, + "title": "I Can t Turn The Tide" + }, + { + "artist": "Kathy Mattea", + "position": 21, + "title": "Where ve You Been" + }, + { + "artist": "Alabama", + "position": 22, + "title": "Southern Star" + }, + { + "artist": "Shenandoah", + "position": 23, + "title": "Two Dozen Roses" + }, + { + "artist": "Holly Dunn", + "position": 24, + "title": "There Goes My Heart Again" + }, + { + "artist": "George Strait", + "position": 25, + "title": "Overnight Success" + } + ], + "title": "1989 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Phil Collins", + "position": 1, + "title": "Another Day In Paradise" + }, + { + "artist": "Janet Jackson", + "position": 2, + "title": "Rhythm Nation" + }, + { + "artist": "Linda Ronstadt (Featuring Aaron Neville)", + "position": 3, + "title": "Don t Know Much" + }, + { + "artist": "Technotronic", + "position": 4, + "title": "Pump Up The Jam" + }, + { + "artist": "Taylor Dayne", + "position": 5, + "title": "With Every Beat Of My Heart" + }, + { + "artist": "Michael Bolton", + "position": 6, + "title": "How Am I Supposed To Live Without You" + }, + { + "artist": "New Kids On The Block", + "position": 7, + "title": "This One s For The Children" + }, + { + "artist": "Cher", + "position": 8, + "title": "Just Like Jesse James" + }, + { + "artist": "Billy Joel", + "position": 9, + "title": "We Didn t Start The Fire" + }, + { + "artist": "Jody Watley", + "position": 10, + "title": "Everything" + }, + { + "artist": "Soul II Soul", + "position": 11, + "title": "Back To Life" + }, + { + "artist": "Jive Bunny", + "position": 12, + "title": "Swing The Mood" + }, + { + "artist": "Lou Gramm", + "position": 13, + "title": "Just Between You And Me" + }, + { + "artist": "Tom Petty", + "position": 14, + "title": "Free Fallin" + }, + { + "artist": "Tesla", + "position": 15, + "title": "Love Song" + }, + { + "artist": "Rod Stewart", + "position": 16, + "title": "Downtown Train" + }, + { + "artist": "Joe Cocker", + "position": 17, + "title": "When The Night Comes" + }, + { + "artist": "Seduction", + "position": 18, + "title": "Two To Make It Right" + }, + { + "artist": "Bon Jovi", + "position": 19, + "title": "Living In Sin" + }, + { + "artist": "Madonna", + "position": 20, + "title": "Oh Father" + }, + { + "artist": "Milli Vanilli", + "position": 21, + "title": "Blame It On The Rain" + }, + { + "artist": "Skid Row", + "position": 22, + "title": "I Remember You" + }, + { + "artist": "The Rolling Stones", + "position": 23, + "title": "Rock And A Hard Place" + }, + { + "artist": "Aerosmith", + "position": 24, + "title": "Janie s Got A Gun" + }, + { + "artist": "Quincy Jones Featuring Ray Charles", + "position": 25, + "title": "I ll Be Good To You" + }, + { + "artist": "Babyface", + "position": 26, + "title": "Tender Lover" + }, + { + "artist": "Eddie Money", + "position": 27, + "title": "Peace In Our Time" + }, + { + "artist": "The B-52 s", + "position": 28, + "title": "Love Shack" + }, + { + "artist": "Chicago", + "position": 29, + "title": "What Kind Of Man Would I Be?" + }, + { + "artist": "Kix", + "position": 30, + "title": "Don t Close Your Eyes" + }, + { + "artist": "Expose", + "position": 31, + "title": "Tell Me Why" + }, + { + "artist": "Paula Abdul (Duet With The Wild Pair)", + "position": 32, + "title": "Opposites Attract" + }, + { + "artist": "Paula Abdul", + "position": 33, + "title": "(It s Just) The Way That You Love Me" + }, + { + "artist": "Michael Damian", + "position": 34, + "title": "Was It Nothing At All" + }, + { + "artist": "Young MC", + "position": 35, + "title": "Principal s Office" + }, + { + "artist": "Young MC", + "position": 36, + "title": "Bust A Move" + }, + { + "artist": "Motley Crue", + "position": 37, + "title": "Kickstart My Heart" + }, + { + "artist": "Bad English", + "position": 38, + "title": "When I See You Smile" + }, + { + "artist": "Tina Turner", + "position": 39, + "title": "Steamy Windows" + }, + { + "artist": "Roxette", + "position": 40, + "title": "Dangerous" + }, + { + "artist": "Shana", + "position": 41, + "title": "I Want You" + }, + { + "artist": "Sybil", + "position": 42, + "title": "Don t Make Me Over" + }, + { + "artist": "Poco", + "position": 43, + "title": "Nothin To Hide" + }, + { + "artist": "Gloria Estefan", + "position": 44, + "title": "Here We Are" + }, + { + "artist": "The Cover Girls", + "position": 45, + "title": "We Can t Go Wrong" + }, + { + "artist": "Whitesnake", + "position": 46, + "title": "Fool For Your Loving" + }, + { + "artist": "Don Henley", + "position": 47, + "title": "The Last Worthless Evening" + }, + { + "artist": "Michel le", + "position": 48, + "title": "No More Lies" + }, + { + "artist": "Richard Marx", + "position": 49, + "title": "Angelia" + }, + { + "artist": "The 2 Live Crew", + "position": 50, + "title": "Me So Horny" + }, + { + "artist": "Milli Vanilli", + "position": 51, + "title": "All Or Nothing" + }, + { + "artist": "Jaya", + "position": 52, + "title": "If You Leave Me Now" + }, + { + "artist": "Bad English", + "position": 53, + "title": "Price Of Love" + }, + { + "artist": "Tears For Fears", + "position": 54, + "title": "Woman In Chains" + }, + { + "artist": "Belinda Carlisle", + "position": 55, + "title": "Leave A Light On" + }, + { + "artist": "Fiona (Duet With Kip Winger)", + "position": 56, + "title": "Everything You Do (You re Sexing Me)" + }, + { + "artist": "Alice Cooper", + "position": 57, + "title": "Poison" + }, + { + "artist": "Bonham", + "position": 58, + "title": "Wait For You" + }, + { + "artist": "Marcia Griffiths", + "position": 59, + "title": "Electric Boogie" + }, + { + "artist": "Paul Carrack", + "position": 60, + "title": "I Live By The Groove" + }, + { + "artist": "D-Mob With Cathy Dennis", + "position": 61, + "title": "C Mon And Get My Love" + }, + { + "artist": "SaFire", + "position": 62, + "title": "I Will Survive (From \"She-Devil\")" + }, + { + "artist": "Prince (With Sheena Easton)", + "position": 63, + "title": "The Arms Of Orion" + }, + { + "artist": "Jermaine Jackson", + "position": 64, + "title": "Don t Take It Personal" + }, + { + "artist": "Kevin Paige", + "position": 65, + "title": "Don t Shut Me Out" + }, + { + "artist": "Great White", + "position": 66, + "title": "The Angel Song" + }, + { + "artist": "Depeche Mode", + "position": 67, + "title": "Personal Jesus" + }, + { + "artist": "Pajama Party", + "position": 68, + "title": "Over And Over" + }, + { + "artist": "Luther Vandross", + "position": 69, + "title": "Here And Now" + }, + { + "artist": "The B-52 s", + "position": 70, + "title": "Roam" + }, + { + "artist": "Kenny G", + "position": 71, + "title": "Going Home" + }, + { + "artist": "Eric Clapton", + "position": 72, + "title": "Pretending" + }, + { + "artist": "Neneh Cherry", + "position": 73, + "title": "Heart" + }, + { + "artist": "Dino", + "position": 74, + "title": "Never 2 Much Of U" + }, + { + "artist": "Roxette", + "position": 75, + "title": "Listen To Your Heart" + }, + { + "artist": "Christopher Max", + "position": 76, + "title": "Serious Kinda Girl" + }, + { + "artist": "The Smithereens", + "position": 77, + "title": "A Girl Like You" + }, + { + "artist": "New Kids On The Block", + "position": 78, + "title": "Didn t I (Blow Your Mind)" + }, + { + "artist": "Bobby Brown", + "position": 79, + "title": "Rock Wit cha" + }, + { + "artist": "Gloria Estefan", + "position": 80, + "title": "Get On Your Feet" + }, + { + "artist": "Warrant", + "position": 81, + "title": "Sometimes She Cries" + }, + { + "artist": "The Cure", + "position": 82, + "title": "Lullaby" + }, + { + "artist": "Kiss", + "position": 83, + "title": "Hide Your Heart" + }, + { + "artist": "Loverboy", + "position": 84, + "title": "Too Hot" + }, + { + "artist": "Michael Penn", + "position": 85, + "title": "No Myth" + }, + { + "artist": "Alannah Myles", + "position": 86, + "title": "Black Velvet" + }, + { + "artist": "Diving For Pearls", + "position": 87, + "title": "Gimme Your Good Lovin" + }, + { + "artist": "Lil Louis", + "position": 88, + "title": "French Kiss" + }, + { + "artist": "Abstrac", + "position": 89, + "title": "Right And Hype" + }, + { + "artist": "Michael Morales", + "position": 90, + "title": "I Don t Know" + }, + { + "artist": "Stevie B", + "position": 91, + "title": "Girl I Am Searching For You" + }, + { + "artist": "Janet Jackson", + "position": 92, + "title": "Miss You Much" + }, + { + "artist": "Starship", + "position": 93, + "title": "I Didn t Mean To Stay All Night" + }, + { + "artist": "Sharon Bryant", + "position": 94, + "title": "Foolish Heart" + }, + { + "artist": "Christopher Williams", + "position": 95, + "title": "Talk To Myself" + }, + { + "artist": "After 7", + "position": 96, + "title": "Heat Of The Moment" + }, + { + "artist": "New Kids On The Block", + "position": 97, + "title": "Cover Girl" + }, + { + "artist": "Hooters", + "position": 98, + "title": "500 Miles" + }, + { + "artist": "Saraya", + "position": 99, + "title": "Back To The Bullet" + }, + { + "artist": "Chunky A", + "position": 100, + "title": "Owwww!" + } + ], + "title": "1989 - Hot 100" + }, + { + "songs": [ + { + "artist": "Keith Whitley", + "position": 1, + "title": "When You Say Nothing At All" + }, + { + "artist": "K.T. Oslin", + "position": 2, + "title": "Hold Me" + }, + { + "artist": "Paul Overstreet", + "position": 3, + "title": "Love Helps Those" + }, + { + "artist": "The Judds", + "position": 4, + "title": "Change Of Heart" + }, + { + "artist": "Shenandoah", + "position": 5, + "title": "Mama Knows" + }, + { + "artist": "Rodney Crowell", + "position": 6, + "title": "She s Crazy For Leaving" + }, + { + "artist": "Eddie Rabbitt", + "position": 7, + "title": "We Must Be Doin Somethin Right" + }, + { + "artist": "Baillie And The Boys", + "position": 8, + "title": "Long Shot" + }, + { + "artist": "Patty Loveless", + "position": 9, + "title": "Blue Side Of Town" + }, + { + "artist": "Randy Travis", + "position": 10, + "title": "Deeper Than The Holler" + }, + { + "artist": "Restless Heart", + "position": 11, + "title": "A Tender Lie" + }, + { + "artist": "Highway 101", + "position": 12, + "title": "All The Reasons Why" + }, + { + "artist": "Steve Wariner", + "position": 13, + "title": "Hold On (A Little Longer)" + }, + { + "artist": "The Statler Brothers", + "position": 14, + "title": "Let s Get Started If We re Gonna Break My Heart" + }, + { + "artist": "Skip Ewing", + "position": 15, + "title": "Burnin A Hole In My Heart" + }, + { + "artist": "Earl Thomas Conley", + "position": 16, + "title": "What I d Say" + }, + { + "artist": "Alabama", + "position": 17, + "title": "Song Of The South" + }, + { + "artist": "Hank Williams Jr.", + "position": 18, + "title": "Early In The Morning And Late At Night" + }, + { + "artist": "Dan Seals", + "position": 19, + "title": "Big Wheels In The Moonlight" + }, + { + "artist": "Dwight Yoakam", + "position": 20, + "title": "I Sang Dixie" + }, + { + "artist": "Kathy Mattea", + "position": 21, + "title": "Life As We Knew It" + }, + { + "artist": "The Shooters", + "position": 22, + "title": "Borderline" + }, + { + "artist": "The Forester Sisters", + "position": 23, + "title": "Sincerely" + }, + { + "artist": "Holly Dunn", + "position": 24, + "title": "(It s Always Gonna Be) Someday" + }, + { + "artist": "Gene Watson", + "position": 25, + "title": "Don t Waste It On The Blues" + } + ], + "title": "1988 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Poison", + "position": 1, + "title": "Every Rose Has Its Thorn" + }, + { + "artist": "Bobby Brown", + "position": 2, + "title": "My Prerogative" + }, + { + "artist": "Chicago", + "position": 3, + "title": "Look Away" + }, + { + "artist": "Anita Baker", + "position": 4, + "title": "Giving You The Best That I Got" + }, + { + "artist": "Boy Meets Girl", + "position": 5, + "title": "Waiting For A Star To Fall" + }, + { + "artist": "Phil Collins", + "position": 6, + "title": "Two Hearts" + }, + { + "artist": "Guns N Roses", + "position": 7, + "title": "Welcome To The Jungle" + }, + { + "artist": "Bangles", + "position": 8, + "title": "In Your Room" + }, + { + "artist": "Eddie Money", + "position": 9, + "title": "Walk On Water" + }, + { + "artist": "Taylor Dayne", + "position": 10, + "title": "Don t Rush Me" + }, + { + "artist": "Will To Power", + "position": 11, + "title": "Baby, I Love Your Way/Freebird Medley" + }, + { + "artist": "Def Leppard", + "position": 12, + "title": "Armageddon It" + }, + { + "artist": "Michael Jackson", + "position": 13, + "title": "Smooth Criminal" + }, + { + "artist": "Boys Club", + "position": 14, + "title": "I Remember Holding You" + }, + { + "artist": "Duran Duran", + "position": 15, + "title": "I Don t Want Your Love" + }, + { + "artist": "Kenny G", + "position": 16, + "title": "Silhouette" + }, + { + "artist": "Breathe", + "position": 17, + "title": "How Can I Fall?" + }, + { + "artist": "When In Rome", + "position": 18, + "title": "The Promise" + }, + { + "artist": "Annie Lennox", + "position": 19, + "title": "Put A Little Love In Your Heart" + }, + { + "artist": "Van Halen", + "position": 20, + "title": "Finish What Ya Started" + }, + { + "artist": "Was (Not Was)", + "position": 21, + "title": "Spy In The House Of Love" + }, + { + "artist": "Karyn White", + "position": 22, + "title": "The Way You Love Me" + }, + { + "artist": "Robert Palmer", + "position": 23, + "title": "Early In The Morning" + }, + { + "artist": "Tiffany", + "position": 24, + "title": "All This Time" + }, + { + "artist": "White Lion", + "position": 25, + "title": "When The Children Cry" + }, + { + "artist": "Bon Jovi", + "position": 26, + "title": "Born To Be My Baby" + }, + { + "artist": "Sheriff", + "position": 27, + "title": "When I m With You" + }, + { + "artist": "Joan Jett And The Blackhearts", + "position": 28, + "title": "Little Liar" + }, + { + "artist": "Steve Winwood", + "position": 29, + "title": "Holding On" + }, + { + "artist": "Maxi Priest", + "position": 30, + "title": "Wild World" + }, + { + "artist": "Samantha Fox", + "position": 31, + "title": "I Wanna Have Some Fun" + }, + { + "artist": "Cheryl \"Pepsii\" Riley", + "position": 32, + "title": "Thanks For My Child" + }, + { + "artist": "Cheap Trick", + "position": 33, + "title": "Ghost Town" + }, + { + "artist": "Sheena Easton", + "position": 34, + "title": "The Lover In Me" + }, + { + "artist": "Paula Abdul", + "position": 35, + "title": "Straight Up" + }, + { + "artist": "U2", + "position": 36, + "title": "Desire" + }, + { + "artist": "Tone-Loc", + "position": 37, + "title": "Wild Thing" + }, + { + "artist": "The Beach Boys", + "position": 38, + "title": "Kokomo (From The \"Cocktail\" Soundtrack)" + }, + { + "artist": "The Escape Club", + "position": 39, + "title": "Wild, Wild West" + }, + { + "artist": "The Art Of Noise Featuring Tom Jones", + "position": 40, + "title": "Kiss" + }, + { + "artist": "Information Society", + "position": 41, + "title": "Walking Away" + }, + { + "artist": "Robbie Nevil", + "position": 42, + "title": "Back On Holiday" + }, + { + "artist": "Bon Jovi", + "position": 43, + "title": "Bad Medicine" + }, + { + "artist": "Rick Astley", + "position": 44, + "title": "She Wants To Dance With Me" + }, + { + "artist": "Edie Brickell", + "position": 45, + "title": "What I Am" + }, + { + "artist": "The Boys", + "position": 46, + "title": "Dial My Heart" + }, + { + "artist": "New Kids On The Block", + "position": 47, + "title": "You Got It (The Right Stuff)" + }, + { + "artist": "Tracy Chapman", + "position": 48, + "title": "Baby Can I Hold You" + }, + { + "artist": "Ivan Neville", + "position": 49, + "title": "Not Just Another Girl" + }, + { + "artist": "Kylie Minogue", + "position": 50, + "title": "The Loco-Motion" + }, + { + "artist": "U2", + "position": 51, + "title": "Angel Of Harlem" + }, + { + "artist": "Judson Spence", + "position": 52, + "title": "Yeah, Yeah, Yeah" + }, + { + "artist": "Erasure", + "position": 53, + "title": "A Little Respect" + }, + { + "artist": "Cinderella", + "position": 54, + "title": "Don t Know What You Got (Till It s Gone)" + }, + { + "artist": "Phil Collins", + "position": 55, + "title": "Groovy Kind Of Love" + }, + { + "artist": "Fleetwood Mac", + "position": 56, + "title": "As Long As You Follow" + }, + { + "artist": "The Escape Club", + "position": 57, + "title": "Shake For The Sheik" + }, + { + "artist": "George Michael", + "position": 58, + "title": "Kissing A Fool" + }, + { + "artist": "Traveling Wilburys", + "position": 59, + "title": "Handle With Care" + }, + { + "artist": "Eighth Wonder", + "position": 60, + "title": "Cross My Heart" + }, + { + "artist": "Rod Stewart", + "position": 61, + "title": "My Heart Can t Tell You No" + }, + { + "artist": "Kylie Minogue", + "position": 62, + "title": "It s No Secret" + }, + { + "artist": "Siouxsie and The Banshees", + "position": 63, + "title": "Peek-A-Boo" + }, + { + "artist": "The Georgia Satellites", + "position": 64, + "title": "Hippy Hippy Shake (From \"Cocktail\")" + }, + { + "artist": "Alphaville", + "position": 65, + "title": "Forever Young" + }, + { + "artist": "Tracie Spencer", + "position": 66, + "title": "Symptoms Of True Love" + }, + { + "artist": "Basia", + "position": 67, + "title": "New Day For You" + }, + { + "artist": "UB40", + "position": 68, + "title": "Red Red Wine" + }, + { + "artist": "D.J. Jazzy Jeff", + "position": 69, + "title": "Girls Ain t Nothing But Trouble" + }, + { + "artist": "Pet Shop Boys", + "position": 70, + "title": "Domino Dancing" + }, + { + "artist": "Rod Stewart", + "position": 71, + "title": "Forever Young" + }, + { + "artist": "Vixen", + "position": 72, + "title": "Edge Of A Broken Heart" + }, + { + "artist": "Bobby McFerrin", + "position": 73, + "title": "Don t Worry, Be Happy (From \"Cocktail\")" + }, + { + "artist": "Randy Newman", + "position": 74, + "title": "It s Money That Matters" + }, + { + "artist": "Giant Steps", + "position": 75, + "title": "Another Lover" + }, + { + "artist": "Michelle Shocked", + "position": 76, + "title": "Anchorage" + }, + { + "artist": "Tommy Conwell And The Young Rumblers", + "position": 77, + "title": "If We Never Meet Again" + }, + { + "artist": "Mike", + "position": 78, + "title": "Nobody s Perfect" + }, + { + "artist": "Barbra Streisand", + "position": 79, + "title": "Till I Loved You" + }, + { + "artist": "Ann Wilson", + "position": 80, + "title": "Surrender To Me (From \"Tequila Sunrise\")" + }, + { + "artist": "Starship", + "position": 81, + "title": "Wild Again (From \"Cocktail\")" + }, + { + "artist": "Al B. Sure!", + "position": 82, + "title": "Killing Me Softly" + }, + { + "artist": "The Timelords", + "position": 83, + "title": "Doctorin The Tardis" + }, + { + "artist": "INXS", + "position": 84, + "title": "Never Tear Us Apart" + }, + { + "artist": "Duran Duran", + "position": 85, + "title": "All She Wants Is" + }, + { + "artist": "Fairground Attraction", + "position": 86, + "title": "Perfect" + }, + { + "artist": "Kon Kan", + "position": 87, + "title": "I Beg Your Pardon" + }, + { + "artist": "Bobby Brown", + "position": 88, + "title": "Don t Be Cruel" + }, + { + "artist": "SaFire", + "position": 89, + "title": "Boy, I ve Been Told" + }, + { + "artist": "Def Leppard", + "position": 90, + "title": "Love Bites" + }, + { + "artist": "Martika", + "position": 91, + "title": "More Than You Know" + }, + { + "artist": "J.J. Fad", + "position": 92, + "title": "Is It Love" + }, + { + "artist": "Taylor Dayne", + "position": 93, + "title": "I ll Always Love You" + }, + { + "artist": "New Kids On The Block", + "position": 94, + "title": "Please Don t Go Girl" + }, + { + "artist": "Sir Mix-A-Lot", + "position": 95, + "title": "Posse On Broadway" + }, + { + "artist": "Luther Vandross", + "position": 96, + "title": "Any Love" + }, + { + "artist": "L Trimm", + "position": 97, + "title": "Cars With The Boom" + }, + { + "artist": "Camouflage", + "position": 98, + "title": "The Great Commandment" + }, + { + "artist": "Information Society", + "position": 99, + "title": "What s On Your Mind (Pure Energy)" + }, + { + "artist": "Whitney Houston", + "position": 100, + "title": "One Moment In Time" + } + ], + "title": "1988 - Hot 100" + }, + { + "songs": [ + { + "artist": "Highway 101", + "position": 1, + "title": "Somewhere Tonight" + }, + { + "artist": "Kenny Rogers", + "position": 2, + "title": "I Prefer The Moonlight" + }, + { + "artist": "Exile", + "position": 3, + "title": "I Can't Get Close Enough" + }, + { + "artist": "Dan Seals", + "position": 4, + "title": "One Friend" + }, + { + "artist": "Hank Williams Jr.", + "position": 5, + "title": "Heaven Can't Be Found" + }, + { + "artist": "Ronnie Milsap", + "position": 6, + "title": "Where Do The Nights Go" + }, + { + "artist": "Kathy Mattea", + "position": 7, + "title": "Goin' Gone" + }, + { + "artist": "Glen Campbell", + "position": 8, + "title": "Still Within The Sound Of My Voice" + }, + { + "artist": "K.T. Oslin", + "position": 9, + "title": "Do Ya'" + }, + { + "artist": "Restless Heart", + "position": 10, + "title": "Wheels" + }, + { + "artist": "Michael Johnson", + "position": 11, + "title": "Crying Shame" + }, + { + "artist": "The O'Kanes", + "position": 12, + "title": "Just Lovin' You" + }, + { + "artist": "Lyle Lovett", + "position": 13, + "title": "Give Back My Heart" + }, + { + "artist": "Billy Joe Royal", + "position": 14, + "title": "I'll Pin A Note On Your Pillow" + }, + { + "artist": "Crystal Gayle", + "position": 15, + "title": "Only Love Can Save Me Now" + }, + { + "artist": "Don Williams", + "position": 16, + "title": "I Wouldn't Be A Man" + }, + { + "artist": "The Desert Rose Band", + "position": 17, + "title": "One Step Forward" + }, + { + "artist": "Rosanne Cash", + "position": 18, + "title": "Tennessee Flat Top Box" + }, + { + "artist": "Ricky Skaggs", + "position": 19, + "title": "I'm Tired" + }, + { + "artist": "The Forester Sisters", + "position": 20, + "title": "Lyin' In His Arms Again" + }, + { + "artist": "T.G. Sheppard", + "position": 21, + "title": "One For The Money" + }, + { + "artist": "Merle Haggard", + "position": 22, + "title": "Twinkle, Twinkle Lucky Star" + }, + { + "artist": "Waylon Jennings", + "position": 23, + "title": "Rough And Rowdy Days" + }, + { + "artist": "Foster & Lloyd", + "position": 24, + "title": "Sure Thing" + }, + { + "artist": "Dwight Yoakam", + "position": 25, + "title": "Please Please Baby" + } + ], + "title": "1987 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "George Michael", + "position": 1, + "title": "Faith" + }, + { + "artist": "Whitney Houston", + "position": 2, + "title": "So Emotional" + }, + { + "artist": "Whitesnake", + "position": 3, + "title": "Is This Love" + }, + { + "artist": "George Harrison", + "position": 4, + "title": "Got My Mind Set On You" + }, + { + "artist": "Debbie Gibson", + "position": 5, + "title": "Shake Your Love" + }, + { + "artist": "Jody Watley", + "position": 6, + "title": "Don't You Want Me" + }, + { + "artist": "Michael Jackson", + "position": 7, + "title": "The Way You Make Me Feel" + }, + { + "artist": "Pretty Poison", + "position": 8, + "title": "Catch Me (I'm Falling) (From The Film \"Hiding Out\")" + }, + { + "artist": "John Mellencamp", + "position": 9, + "title": "Cherry Bomb" + }, + { + "artist": "INXS", + "position": 10, + "title": "Need You Tonight" + }, + { + "artist": "Steve Winwood", + "position": 11, + "title": "Valerie" + }, + { + "artist": "Taylor Dayne", + "position": 12, + "title": "Tell It To My Heart" + }, + { + "artist": "Elton John", + "position": 13, + "title": "Candle In The Wind" + }, + { + "artist": "Aerosmith", + "position": 14, + "title": "Dude (Looks Like A Lady)" + }, + { + "artist": "Bangles", + "position": 15, + "title": "Hazy Shade Of Winter" + }, + { + "artist": "Tiffany", + "position": 16, + "title": "Could've Been" + }, + { + "artist": "Belinda Carlisle", + "position": 17, + "title": "Heaven Is A Place On Earth" + }, + { + "artist": "Heart", + "position": 18, + "title": "There's The Girl" + }, + { + "artist": "Def Leppard", + "position": 19, + "title": "Animal" + }, + { + "artist": "Expose", + "position": 20, + "title": "Seasons Change" + }, + { + "artist": "Bill Medley & Jennifer Warnes", + "position": 21, + "title": "(I've Had) The Time Of My Life" + }, + { + "artist": "Icehouse", + "position": 22, + "title": "Crazy" + }, + { + "artist": "Prince", + "position": 23, + "title": "I Could Never Take The Place Of Your Man" + }, + { + "artist": "Michael Bolton", + "position": 24, + "title": "That's What Love Is All About" + }, + { + "artist": "Eric Carmen", + "position": 25, + "title": "Hungry Eyes (From \"Dirty Dancing\")" + }, + { + "artist": "Roger", + "position": 26, + "title": "I Want To Be Your Man" + }, + { + "artist": "Laura Branigan", + "position": 27, + "title": "Power Of Love" + }, + { + "artist": "Sting", + "position": 28, + "title": "We'll Be Together" + }, + { + "artist": "Richard Marx", + "position": 29, + "title": "Should've Known Better" + }, + { + "artist": "Bruce Springsteen", + "position": 30, + "title": "Tunnel Of Love" + }, + { + "artist": "Natalie Cole", + "position": 31, + "title": "I Live For Your Love" + }, + { + "artist": "New Order", + "position": 32, + "title": "True Faith" + }, + { + "artist": "Foreigner", + "position": 33, + "title": "Say You Will" + }, + { + "artist": "Paul Carrack", + "position": 34, + "title": "Don't Shed A Tear" + }, + { + "artist": "Men Without Hats", + "position": 35, + "title": "Pop Goes The World" + }, + { + "artist": "Stryper", + "position": 36, + "title": "Honestly" + }, + { + "artist": "The Kane Gang", + "position": 37, + "title": "Motortown" + }, + { + "artist": "Fleetwood Mac", + "position": 38, + "title": "Everywhere" + }, + { + "artist": "Pet Shop Boys & Dusty Springfield", + "position": 39, + "title": "What Have I Done To Deserve This?" + }, + { + "artist": "Salt-N-Pepa", + "position": 40, + "title": "Push It" + }, + { + "artist": "The Cure", + "position": 41, + "title": "Just Like Heaven" + }, + { + "artist": "R.E.M.", + "position": 42, + "title": "The One I Love" + }, + { + "artist": "Tiffany", + "position": 43, + "title": "I Think We're Alone Now" + }, + { + "artist": "Cher", + "position": 44, + "title": "I Found Someone" + }, + { + "artist": "Gloria Estefan & Miami Sound Machine", + "position": 45, + "title": "Can't Stay Away From You" + }, + { + "artist": "M/A/R/R/S", + "position": 46, + "title": "Pump Up The Volume" + }, + { + "artist": "Bourgeois Tagg", + "position": 47, + "title": "I Don't Mind At All" + }, + { + "artist": "Bananarama", + "position": 48, + "title": "I Can't Help It" + }, + { + "artist": "Stevie Wonder", + "position": 49, + "title": "Skeletons" + }, + { + "artist": "The Jets", + "position": 50, + "title": "I Do You" + }, + { + "artist": "The Cover Girls", + "position": 51, + "title": "Because Of You" + }, + { + "artist": "Billy Idol", + "position": 52, + "title": "Mony Mony" + }, + { + "artist": "U2", + "position": 53, + "title": "In God's Country" + }, + { + "artist": "Deja", + "position": 54, + "title": "You And Me Tonight" + }, + { + "artist": "Patrick Swayze (Featuring Wendy Fraser)", + "position": 55, + "title": "She's Like The Wind" + }, + { + "artist": "Squeeze", + "position": 56, + "title": "853-5937" + }, + { + "artist": "Cutting Crew", + "position": 57, + "title": "I've Been In Love Before" + }, + { + "artist": "Shanice Wilson", + "position": 58, + "title": "(Baby Tell Me) Can You Dance" + }, + { + "artist": "Georgio", + "position": 59, + "title": "Lover's Lane" + }, + { + "artist": "Billy Idol", + "position": 60, + "title": "Hot In The City" + }, + { + "artist": "Rick Astley", + "position": 61, + "title": "Never Gonna Give You Up" + }, + { + "artist": "Squeeze", + "position": 62, + "title": "Hourglass" + }, + { + "artist": "Powersource (Solo...Sharon)", + "position": 63, + "title": "Dear Mr. Jesus" + }, + { + "artist": "Yes", + "position": 64, + "title": "Rhythm Of Love" + }, + { + "artist": "Dan Hill", + "position": 65, + "title": "Never Thought (That I Could Love)" + }, + { + "artist": "Earth, Wind & Fire", + "position": 66, + "title": "System Of Survival" + }, + { + "artist": "Buster Poindexter & His Banshees Of Blue", + "position": 67, + "title": "Hot Hot Hot" + }, + { + "artist": "Kiss", + "position": 68, + "title": "Reason To Live" + }, + { + "artist": "Poison", + "position": 69, + "title": "I Won't Forget You" + }, + { + "artist": "Eurythmics", + "position": 70, + "title": "I Need A Man" + }, + { + "artist": "Fleetwood Mac", + "position": 71, + "title": "Little Lies" + }, + { + "artist": "Swing Out Sister", + "position": 72, + "title": "Breakout" + }, + { + "artist": "Yes", + "position": 73, + "title": "Love Will Find A Way" + }, + { + "artist": "Alexander O'Neal", + "position": 74, + "title": "Criticize" + }, + { + "artist": "Prince", + "position": 75, + "title": "U Got The Look" + }, + { + "artist": "Swing Out Sister", + "position": 76, + "title": "Twilight World" + }, + { + "artist": "Mick Jagger", + "position": 77, + "title": "Throwaway" + }, + { + "artist": "Bruce Springsteen", + "position": 78, + "title": "Brilliant Disguise" + }, + { + "artist": "REO Speedwagon", + "position": 79, + "title": "In My Dreams" + }, + { + "artist": "Boy George", + "position": 80, + "title": "Live My Life (From The Film \"Hiding Out\")" + }, + { + "artist": "The Alarm", + "position": 81, + "title": "Rain In The Summertime" + }, + { + "artist": "Dokken", + "position": 82, + "title": "Burning Like A Flame" + }, + { + "artist": "Tony Terry", + "position": 83, + "title": "She's Fly" + }, + { + "artist": "Noel", + "position": 84, + "title": "Silent Morning" + }, + { + "artist": "Europe", + "position": 85, + "title": "Cherokee" + }, + { + "artist": "Lisa Lisa & Cult Jam Featuring Full Force", + "position": 86, + "title": "Someone To Love Me For Me" + }, + { + "artist": "Glenn Jones", + "position": 87, + "title": "We've Only Just Begun (The Romance Is Not Over)" + }, + { + "artist": "Glenn Medeiros", + "position": 88, + "title": "Lonely Won't Leave Me Alone" + }, + { + "artist": "Expose", + "position": 89, + "title": "Let Me Be The One" + }, + { + "artist": "Smokey Robinson", + "position": 90, + "title": "What's Too Much" + }, + { + "artist": "Motley Crue", + "position": 91, + "title": "You're All I Need" + }, + { + "artist": "Kool & The Gang", + "position": 92, + "title": "Special Way" + }, + { + "artist": "Sammy Hagar", + "position": 93, + "title": "Eagles Fly" + }, + { + "artist": "Pet Shop Boys", + "position": 94, + "title": "It's A Sin" + }, + { + "artist": "Heart", + "position": 95, + "title": "Who Will You Run To" + }, + { + "artist": "Depeche Mode", + "position": 96, + "title": "Never Let Me Down Again" + }, + { + "artist": "Madonna", + "position": 97, + "title": "Causing A Commotion" + }, + { + "artist": "Whitesnake", + "position": 98, + "title": "Here I Go Again" + }, + { + "artist": "Martha Davis", + "position": 99, + "title": "Don't Tell Me The Time" + }, + { + "artist": "Kenny G. (Vocal By Lenny Williams)", + "position": 100, + "title": "Don't Make Me Wait For Love" + } + ], + "title": "1987 - Hot 100" + }, + { + "songs": [ + { + "artist": "Hank Williams Jr.", + "position": 1, + "title": "Mind Your Own Business" + }, + { + "artist": "Michael Johnson", + "position": 2, + "title": "Give Me Wings" + }, + { + "artist": "Reba McEntire", + "position": 3, + "title": "What Am I Gonna Do About You" + }, + { + "artist": "Ricky Skaggs", + "position": 4, + "title": "Love s Gonna Get You Someday" + }, + { + "artist": "The Judds", + "position": 5, + "title": "Cry Myself To Sleep" + }, + { + "artist": "Don Williams", + "position": 6, + "title": "Then It s Love" + }, + { + "artist": "Conway Twitty", + "position": 7, + "title": "Fallin For You For Years" + }, + { + "artist": "T.G. Sheppard", + "position": 8, + "title": "Half Past Forever (Till I m Blue In The Heart)" + }, + { + "artist": "Dan Seals", + "position": 9, + "title": "You Still Move Me" + }, + { + "artist": "The O Kanes", + "position": 10, + "title": "Oh Darlin" + }, + { + "artist": "Judy Rodman", + "position": 11, + "title": "She Thinks That She ll Marry" + }, + { + "artist": "Pake McEntire", + "position": 12, + "title": "Bad Love" + }, + { + "artist": "John Conlee", + "position": 13, + "title": "The Carpenter" + }, + { + "artist": "Gary Morris", + "position": 14, + "title": "Leave Me Lonely" + }, + { + "artist": "Lionel Richie", + "position": 15, + "title": "Deep River Woman" + }, + { + "artist": "Bellamy Brothers With the Forester Sisters", + "position": 16, + "title": "Too Much Is Not Enough" + }, + { + "artist": "Eddie Rabbitt", + "position": 17, + "title": "Gotta Have You" + }, + { + "artist": "Lyle Lovett", + "position": 18, + "title": "Cowboy Man" + }, + { + "artist": "Tanya Tucker", + "position": 19, + "title": "I ll Come Back As Another Woman" + }, + { + "artist": "Ronnie Milsap", + "position": 20, + "title": "How Do I Turn You On" + }, + { + "artist": "Crystal Gayle", + "position": 21, + "title": "Straight To The Heart" + }, + { + "artist": "The Nitty Gritty Dirt Band", + "position": 22, + "title": "Fire In The Sky" + }, + { + "artist": "Keith Whitley", + "position": 23, + "title": "Homecoming 63" + }, + { + "artist": "Eddy Raven", + "position": 24, + "title": "Right Hand Man" + }, + { + "artist": "Mel McDaniel", + "position": 25, + "title": "Stand On It" + } + ], + "title": "1986 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Bangles", + "position": 1, + "title": "Walk Like An Egyptian" + }, + { + "artist": "Wang Chung", + "position": 2, + "title": "Everybody Have Fun Tonight" + }, + { + "artist": "Duran Duran", + "position": 3, + "title": "Notorious" + }, + { + "artist": "Gregory Abbott", + "position": 4, + "title": "Shake You Down" + }, + { + "artist": "Bruce Hornsby", + "position": 5, + "title": "The Way It Is" + }, + { + "artist": "Robbie Nevil", + "position": 6, + "title": "C est La Vie" + }, + { + "artist": "Janet Jackson", + "position": 7, + "title": "Control" + }, + { + "artist": "Bruce Springsteen", + "position": 8, + "title": "War" + }, + { + "artist": "Ben E. King", + "position": 9, + "title": "Stand By Me" + }, + { + "artist": "Pretenders", + "position": 10, + "title": "Don't Get Me Wrong" + }, + { + "artist": "Billy Idol", + "position": 11, + "title": "To Be A Lover" + }, + { + "artist": "Survivor", + "position": 12, + "title": "Is This Love" + }, + { + "artist": "Genesis", + "position": 13, + "title": "Land Of Confusion" + }, + { + "artist": "Kool", + "position": 14, + "title": "Victory" + }, + { + "artist": "Billy Vera", + "position": 15, + "title": "At This Moment" + }, + { + "artist": "John Berry", + "position": 16, + "title": "Love Is Forever" + }, + { + "artist": "Howard Jones", + "position": 17, + "title": "You Know I Love You ... Don t You?" + }, + { + "artist": "Glass Tiger", + "position": 18, + "title": "Someday" + }, + { + "artist": "Timbuk 3", + "position": 19, + "title": "The Future s So Bright, I Gotta Wear Shades" + }, + { + "artist": "Huey Lewis", + "position": 20, + "title": "Hip To Be Square" + }, + { + "artist": "Peter Cetera With Amy Grant", + "position": 21, + "title": "The Next Time I Fall" + }, + { + "artist": "Madonna", + "position": 22, + "title": "Open Your Heart" + }, + { + "artist": "Kansas", + "position": 23, + "title": "All I Wanted" + }, + { + "artist": "Bon Jovi", + "position": 24, + "title": "You Give Love A Bad Name" + }, + { + "artist": "Carly Simon", + "position": 25, + "title": "Coming Around Again" + }, + { + "artist": "Cyndi Lauper", + "position": 26, + "title": "Change Of Heart" + }, + { + "artist": "Samantha Fox", + "position": 27, + "title": "Touch Me (I Want Your Body)" + }, + { + "artist": "Gloria Estefan", + "position": 28, + "title": "Falling In Love (Uh-Oh)" + }, + { + "artist": "Run-D.M.C.", + "position": 29, + "title": "You Be Illin" + }, + { + "artist": "The Georgia Satellites", + "position": 30, + "title": "Keep Your Hands To Yourself" + }, + { + "artist": "Tina Turner", + "position": 31, + "title": "Two People" + }, + { + "artist": "Nancy Martinez", + "position": 32, + "title": "For Tonight" + }, + { + "artist": "Cameo", + "position": 33, + "title": "Word Up" + }, + { + "artist": "Billy Joel", + "position": 34, + "title": "This Is The Time" + }, + { + "artist": "Boston", + "position": 35, + "title": "We re Ready" + }, + { + "artist": "Chicago", + "position": 36, + "title": "Will You Still Love Me?" + }, + { + "artist": "Chico DeBarge", + "position": 37, + "title": "Talk To Me" + }, + { + "artist": "The Human League", + "position": 38, + "title": "Human" + }, + { + "artist": "Ready For The World", + "position": 39, + "title": "Love You Down" + }, + { + "artist": "Luther Vandross", + "position": 40, + "title": "Stop To Love" + }, + { + "artist": "Lionel Richie", + "position": 41, + "title": "Love Will Conquer All" + }, + { + "artist": "The Jets", + "position": 42, + "title": "You Got It All" + }, + { + "artist": "Lionel Richie", + "position": 43, + "title": "Ballerina Girl" + }, + { + "artist": "Benjamin Orr", + "position": 44, + "title": "Stay The Night" + }, + { + "artist": "The Pointer Sisters", + "position": 45, + "title": "Goldmine" + }, + { + "artist": "Cinderella", + "position": 46, + "title": "Nobody s Fool" + }, + { + "artist": "Freddie Jackson", + "position": 47, + "title": "Tasty Love" + }, + { + "artist": "Bon Jovi", + "position": 48, + "title": "Livin On A Prayer" + }, + { + "artist": "Journey", + "position": 49, + "title": "I ll Be Alright Without You" + }, + { + "artist": "Peter Gabriel", + "position": 50, + "title": "Big Time" + }, + { + "artist": "Talking Heads", + "position": 51, + "title": "Wild Wild Life" + }, + { + "artist": "Aretha Franklin", + "position": 52, + "title": "Jimmy Lee" + }, + { + "artist": "Jesse Johnson (Featuring Sly Stone)", + "position": 53, + "title": "Crazay" + }, + { + "artist": "The Human League", + "position": 54, + "title": "I Need Your Loving" + }, + { + "artist": "Anita Baker", + "position": 55, + "title": "Caught Up In The Rapture" + }, + { + "artist": "Don Johnson", + "position": 56, + "title": "Heartache Away" + }, + { + "artist": "Madonna", + "position": 57, + "title": "True Blue" + }, + { + "artist": "Boston", + "position": 58, + "title": "Amanda" + }, + { + "artist": "Eddie Money", + "position": 59, + "title": "Take Me Home Tonight" + }, + { + "artist": "Corey Hart", + "position": 60, + "title": "Can t Help Falling In Love" + }, + { + "artist": "Debbie Harry", + "position": 61, + "title": "French Kissin" + }, + { + "artist": "Jeff Lorber", + "position": 62, + "title": "Facts Of Love" + }, + { + "artist": "Dead Or Alive", + "position": 63, + "title": "Brand New Lover" + }, + { + "artist": "Toto", + "position": 64, + "title": "I ll Be Over You" + }, + { + "artist": "Eddie Money", + "position": 65, + "title": "I Wanna Go Back" + }, + { + "artist": "Ann Wilson", + "position": 66, + "title": "The Best Man In The World" + }, + { + "artist": "Linda Ronstadt", + "position": 67, + "title": "Somewhere Out There (From \"An American Tail\")" + }, + { + "artist": "Beastie Boys", + "position": 68, + "title": "(You Gotta) Fight For Your Right (To Party!)" + }, + { + "artist": "Orchestral Manoeuvres In The Dark", + "position": 69, + "title": "(Forever) Live And Die" + }, + { + "artist": "Grace Jones", + "position": 70, + "title": "I m Not Perfect (But I m Perfect For You)" + }, + { + "artist": "Oran Juice Jones", + "position": 71, + "title": "The Rain" + }, + { + "artist": "Bobby Brown", + "position": 72, + "title": "Girlfriend" + }, + { + "artist": "Stacey Q", + "position": 73, + "title": "We Connect" + }, + { + "artist": "Paul Young", + "position": 74, + "title": "Some People" + }, + { + "artist": "Commodores", + "position": 75, + "title": "Goin To The Bank" + }, + { + "artist": "Pet Shop Boys", + "position": 76, + "title": "Suburbia" + }, + { + "artist": "Toto", + "position": 77, + "title": "Without Your Love" + }, + { + "artist": "David", + "position": 78, + "title": "Welcome To The Boomtown" + }, + { + "artist": "Robert Palmer", + "position": 79, + "title": "I Didn t Mean To Turn You On" + }, + { + "artist": "Cameo", + "position": 80, + "title": "Candy" + }, + { + "artist": "Ric Ocasek", + "position": 81, + "title": "True To You" + }, + { + "artist": "Paul Simon", + "position": 82, + "title": "Graceland" + }, + { + "artist": "Bob Geldof", + "position": 83, + "title": "This Is The World Calling" + }, + { + "artist": "Lisa Lisa", + "position": 84, + "title": "All Cried Out" + }, + { + "artist": "Daryl Hall", + "position": 85, + "title": "Foolish Pride" + }, + { + "artist": "Ric Ocasek", + "position": 86, + "title": "Emotion In Motion" + }, + { + "artist": "The Communards", + "position": 87, + "title": "Don't Leave Me This Way" + }, + { + "artist": "Bob Seger", + "position": 88, + "title": "Miami" + }, + { + "artist": "John Parr", + "position": 89, + "title": "Blame It On The Radio" + }, + { + "artist": "El DeBarge", + "position": 90, + "title": "Someone" + }, + { + "artist": "Secret Ties", + "position": 91, + "title": "Dancin In My Sleep" + }, + { + "artist": "Uptown", + "position": 92, + "title": "(I Know) I m Losing You" + }, + { + "artist": "Bananarama", + "position": 93, + "title": "A Trick Of The Night" + }, + { + "artist": "Stacy Lattisaw", + "position": 94, + "title": "Nail It To The Wall" + }, + { + "artist": "Eurythmics", + "position": 95, + "title": "Thorn In My Side" + }, + { + "artist": "Five Star", + "position": 96, + "title": "If I Say Yes" + }, + { + "artist": "Cyndi Lauper", + "position": 97, + "title": "True Colors" + }, + { + "artist": "Anita Baker", + "position": 98, + "title": "Sweet Love" + }, + { + "artist": "Steve Winwood", + "position": 99, + "title": "Freedom Overspill" + }, + { + "artist": "Rod Stewart", + "position": 100, + "title": "Every Beat Of My Heart" + } + ], + "title": "1986 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Judds", + "position": 1, + "title": "Have Mercy" + }, + { + "artist": "Kenny Rogers", + "position": 2, + "title": "Morning Desire" + }, + { + "artist": "Dan Seals", + "position": 3, + "title": "Bop" + }, + { + "artist": "Rosanne Cash", + "position": 4, + "title": "Never Be You" + }, + { + "artist": "Reba McEntire", + "position": 5, + "title": "Only In My Mind" + }, + { + "artist": "The Nitty Gritty Dirt Band", + "position": 6, + "title": "Home Again In My Heart" + }, + { + "artist": "Janie Frickie", + "position": 7, + "title": "Somebody Else s Fire" + }, + { + "artist": "Gene Watson", + "position": 8, + "title": "Memories To Burn" + }, + { + "artist": "The Forester Sisters", + "position": 9, + "title": "Just In Case" + }, + { + "artist": "Eddie Rabbitt", + "position": 10, + "title": "A World Without Love" + }, + { + "artist": "Restless Heart", + "position": 11, + "title": "(Back To The) Heartbreak Kid" + }, + { + "artist": "Juice Newton", + "position": 12, + "title": "Hurt" + }, + { + "artist": "John Conlee", + "position": 13, + "title": "Old School" + }, + { + "artist": "George Strait", + "position": 14, + "title": "The Chair" + }, + { + "artist": "Crystal Gayle And Gary Morris", + "position": 15, + "title": "Makin Up For Lost Time" + }, + { + "artist": "T. Graham Brown", + "position": 16, + "title": "I Tell It Like It Used To Be" + }, + { + "artist": "Sawyer Brown", + "position": 17, + "title": "Betty s Bein Bad" + }, + { + "artist": "Marie Osmond", + "position": 18, + "title": "There s No Stopping Your Heart" + }, + { + "artist": "Conway Twitty", + "position": 19, + "title": "The Legend And The Man" + }, + { + "artist": "Billy Joe Royal", + "position": 20, + "title": "Burned Like A Rocket" + }, + { + "artist": "Steve Wariner", + "position": 21, + "title": "You Can Dream Of Me" + }, + { + "artist": "The Oak Ridge Boys", + "position": 22, + "title": "Come On In (You Did The Best You Could)" + }, + { + "artist": "George Jones", + "position": 23, + "title": "The One I Loved Back Then (The Corvette Song)" + }, + { + "artist": "Waylon Jennings", + "position": 24, + "title": "The Devil s On The Loose" + }, + { + "artist": "Glen Campbell", + "position": 25, + "title": "It s Just A Matter Of Time" + } + ], + "title": "1985 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Lionel Richie", + "position": 1, + "title": "Say You, Say Me (Title Song From White Nights)" + }, + { + "artist": "Eddie Murphy", + "position": 2, + "title": "Party All The Time" + }, + { + "artist": "Simple Minds", + "position": 3, + "title": "Alive And Kicking" + }, + { + "artist": "Dionne", + "position": 4, + "title": "That s What Friends Are For" + }, + { + "artist": "Klymaxx", + "position": 5, + "title": "I Miss You" + }, + { + "artist": "John Mellencamp", + "position": 6, + "title": "Small Town" + }, + { + "artist": "Mr. Mister", + "position": 7, + "title": "Broken Wings" + }, + { + "artist": "Phil Collins/Marilyn Martin", + "position": 8, + "title": "Separate Lives (Theme From White Nights)" + }, + { + "artist": "The Cars", + "position": 9, + "title": "Tonight She Comes" + }, + { + "artist": "Arcadia", + "position": 10, + "title": "Election Day" + }, + { + "artist": "Stevie Nicks", + "position": 11, + "title": "Talk To Me" + }, + { + "artist": "ZZ Top", + "position": 12, + "title": "Sleeping Bag" + }, + { + "artist": "Dire Straits", + "position": 13, + "title": "Walk Of Life" + }, + { + "artist": "Scritti Politti", + "position": 14, + "title": "Perfect Way" + }, + { + "artist": "Survivor", + "position": 15, + "title": "Burning Heart" + }, + { + "artist": "Bruce Springsteen", + "position": 16, + "title": "My Hometown" + }, + { + "artist": "Sting", + "position": 17, + "title": "Love Is The Seventh Wave" + }, + { + "artist": "Kool", + "position": 18, + "title": "Emergency" + }, + { + "artist": "Bryan Adams/Tina Turner", + "position": 19, + "title": "It s Only Love" + }, + { + "artist": "Wham!", + "position": 20, + "title": "I m Your Man" + }, + { + "artist": "Miami Sound Machine", + "position": 21, + "title": "Conga" + }, + { + "artist": "Stevie Wonder", + "position": 22, + "title": "Go Home" + }, + { + "artist": "Clarence Clemons", + "position": 23, + "title": "You re A Friend Of Mine" + }, + { + "artist": "Paul McCartney", + "position": 24, + "title": "Spies Like Us" + }, + { + "artist": "Heart", + "position": 25, + "title": "Never" + }, + { + "artist": "Starship", + "position": 26, + "title": "We Built This City" + }, + { + "artist": "Night Ranger", + "position": 27, + "title": "Goodbye" + }, + { + "artist": "Ta Mara", + "position": 28, + "title": "Everybody Dance" + }, + { + "artist": "Starpoint", + "position": 29, + "title": "Object Of My Desire" + }, + { + "artist": "Jellybean", + "position": 30, + "title": "Sidewalk Talk" + }, + { + "artist": "Billy Ocean", + "position": 31, + "title": "When The Going Gets Tough (Jewel Of The Nile Theme)" + }, + { + "artist": "Pat Benatar", + "position": 32, + "title": "Sex As A Weapon" + }, + { + "artist": "Pete Townsend", + "position": 33, + "title": "Face The Face" + }, + { + "artist": "Aretha Franklin", + "position": 34, + "title": "Who s Zoomin Who" + }, + { + "artist": "Elton John", + "position": 35, + "title": "Wrap Her Up" + }, + { + "artist": "Whitney Houston", + "position": 36, + "title": "How Will I Know" + }, + { + "artist": "Sheila E", + "position": 37, + "title": "A Love Bizarre" + }, + { + "artist": "Sade", + "position": 38, + "title": "The Sweetest Taboo" + }, + { + "artist": "Corey Hart", + "position": 39, + "title": "Everything In My Heart" + }, + { + "artist": "Thompson Twins", + "position": 40, + "title": "Lay Your Hands On Me" + }, + { + "artist": "Artists United Against Apartheid", + "position": 41, + "title": "Sun City" + }, + { + "artist": "Eurythmics And Aretha Franklin", + "position": 42, + "title": "Sisters Are Doing It For Themselves" + }, + { + "artist": "A-Ha", + "position": 43, + "title": "The Sun Always Shines on T.V." + }, + { + "artist": "James Brown", + "position": 44, + "title": "Living In America" + }, + { + "artist": "Baltimora", + "position": 45, + "title": "Tarzan Boy (From \"Teenage Mutant Ninja Turtles III\")" + }, + { + "artist": "The Dream Academy", + "position": 46, + "title": "Life In A Northern Town" + }, + { + "artist": "Glenn Frey", + "position": 47, + "title": "You Belong To The City" + }, + { + "artist": "Rush", + "position": 48, + "title": "The Big Money" + }, + { + "artist": "Sheena Easton", + "position": 49, + "title": "Do It For Love" + }, + { + "artist": "Mr. Mister", + "position": 50, + "title": "Kyrie" + }, + { + "artist": "Wang Chung", + "position": 51, + "title": "To Live And Die In L.A." + }, + { + "artist": "Mike", + "position": 52, + "title": "Silent Running" + }, + { + "artist": "Asia", + "position": 53, + "title": "Go" + }, + { + "artist": "Ready For The World", + "position": 54, + "title": "Digital Display" + }, + { + "artist": "New Edition", + "position": 55, + "title": "Count Me Out" + }, + { + "artist": "Twisted Sister", + "position": 56, + "title": "Leader Of The Pack" + }, + { + "artist": "Paul Young", + "position": 57, + "title": "Everything Must Change" + }, + { + "artist": "Stevie Wonder", + "position": 58, + "title": "Part-Time Lover" + }, + { + "artist": "Jack Wagner", + "position": 59, + "title": "Too Young" + }, + { + "artist": "Freddie Jackson", + "position": 60, + "title": "You Are My Lady" + }, + { + "artist": "Jan Hammer", + "position": 61, + "title": "Miami Vice Theme" + }, + { + "artist": "Freddie Jackson", + "position": 62, + "title": "He ll Never Love You (Like I Do)" + }, + { + "artist": "Barbra Streisand", + "position": 63, + "title": "Somewhere (From West Side Story)" + }, + { + "artist": "Queen", + "position": 64, + "title": "One Vision" + }, + { + "artist": "Starship", + "position": 65, + "title": "Sara" + }, + { + "artist": "Hooters", + "position": 66, + "title": "Day By Day" + }, + { + "artist": "Isley/Jasper/Isley", + "position": 67, + "title": "Caravan Of Love" + }, + { + "artist": "David Foster", + "position": 68, + "title": "Love Theme From St. Elmo s Fire (Instrumental)" + }, + { + "artist": "Tears For Fears", + "position": 69, + "title": "Head Over Heels" + }, + { + "artist": "Lisa Lisa", + "position": 70, + "title": "Can You Feel The Beat" + }, + { + "artist": "James Taylor", + "position": 71, + "title": "Everyday" + }, + { + "artist": "Kenny Rogers", + "position": 72, + "title": "Morning Desire" + }, + { + "artist": "Tina Turner", + "position": 73, + "title": "One Of The Living" + }, + { + "artist": "Charlie Sexton", + "position": 74, + "title": "Beat s So Lonely" + }, + { + "artist": "Kate Bush", + "position": 75, + "title": "Running Up That Hill" + }, + { + "artist": "El DeBarge With DeBarge", + "position": 76, + "title": "The Heart Is Not So Smart" + }, + { + "artist": "O.M.D.", + "position": 77, + "title": "Secret" + }, + { + "artist": "Chaka Khan", + "position": 78, + "title": "Own The Night" + }, + { + "artist": "ABC", + "position": 79, + "title": "Be Near Me" + }, + { + "artist": "Atlantic Starr", + "position": 80, + "title": "Secret Lovers" + }, + { + "artist": "Nick Lowe", + "position": 81, + "title": "I Knew The Bride (When She Use To Rock N Roll)" + }, + { + "artist": "Eugene Wilde", + "position": 82, + "title": "Don t Say No Tonight" + }, + { + "artist": "John Cafferty", + "position": 83, + "title": "Small Town Girl" + }, + { + "artist": "Loverboy", + "position": 84, + "title": "Dangerous" + }, + { + "artist": "Sly Fox", + "position": 85, + "title": "Let s Go All The Way" + }, + { + "artist": "Fortune", + "position": 86, + "title": "Stacy" + }, + { + "artist": "Alisha", + "position": 87, + "title": "Baby Talk" + }, + { + "artist": "Joni Mitchell", + "position": 88, + "title": "Good Friends" + }, + { + "artist": "Roger Daltrey", + "position": 89, + "title": "Let Me Down Easy" + }, + { + "artist": "Kiss", + "position": 90, + "title": "Tears Are Falling" + }, + { + "artist": "The Alarm", + "position": 91, + "title": "Strength" + }, + { + "artist": "Whitney Houston", + "position": 92, + "title": "Saving All My Love For You" + }, + { + "artist": "Loverboy", + "position": 93, + "title": "Lovin Every Minute Of It" + }, + { + "artist": "Talking Heads", + "position": 94, + "title": "And She Was" + }, + { + "artist": "The Pointer Sisters", + "position": 95, + "title": "Freedom" + }, + { + "artist": "Olivia Newton-John", + "position": 96, + "title": "Soul Kiss" + }, + { + "artist": "A-Ha", + "position": 97, + "title": "Take On Me" + }, + { + "artist": "Sting", + "position": 98, + "title": "Fortress Around Your Heart" + }, + { + "artist": "Ray Parker Jr.", + "position": 99, + "title": "Girls Are More Fun" + }, + { + "artist": "John Mellencamp", + "position": 100, + "title": "Lonely Ol Night" + } + ], + "title": "1985 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Judds", + "position": 1, + "title": "Why Not Me" + }, + { + "artist": "George Jones", + "position": 2, + "title": "She's My Rock" + }, + { + "artist": "Nitty Gritty Dirt Band", + "position": 3, + "title": "I Love Only You" + }, + { + "artist": "George Strait", + "position": 4, + "title": "Does Fort Worth Ever Cross Your Mind" + }, + { + "artist": "Eddie Rabbitt", + "position": 5, + "title": "The Best Year Of My Life" + }, + { + "artist": "Waylon Jennings", + "position": 6, + "title": "America" + }, + { + "artist": "Reba McEntire", + "position": 7, + "title": "How Blue" + }, + { + "artist": "Anne Murray & Dave Loggins", + "position": 8, + "title": "Nobody Loves Me Like You Do" + }, + { + "artist": "Mark Gray", + "position": 9, + "title": "Diamond In The Dust" + }, + { + "artist": "Hank Williams Jr.", + "position": 10, + "title": "All My Rowdy Friends Are Coming Over Tonight" + }, + { + "artist": "Barbara Mandrell", + "position": 11, + "title": "Crossword Puzzle" + }, + { + "artist": "John Conlee", + "position": 12, + "title": "Years After You" + }, + { + "artist": "Crystal Gayle", + "position": 13, + "title": "Me Against The Night" + }, + { + "artist": "Merle Haggard", + "position": 14, + "title": "A Place To Fall Apart" + }, + { + "artist": "Gene Watson", + "position": 15, + "title": "Got No Reason Now For Goin' Home" + }, + { + "artist": "Alabama", + "position": 16, + "title": "(There's A) Fire In The Night" + }, + { + "artist": "The Bellamy Brothers", + "position": 17, + "title": "World's Greatest Lover" + }, + { + "artist": "Ricky Skaggs", + "position": 18, + "title": "Something In My Heart" + }, + { + "artist": "Conway Twitty", + "position": 19, + "title": "Ain't She Something Else" + }, + { + "artist": "The Oak Ridge Boys", + "position": 20, + "title": "Make My Life With You" + }, + { + "artist": "Keith Stegall", + "position": 21, + "title": "Whatever Turns You On" + }, + { + "artist": "T.G. Sheppard", + "position": 22, + "title": "One Owner Heart" + }, + { + "artist": "Sawyer Brown", + "position": 23, + "title": "Leona" + }, + { + "artist": "Ed Bruce", + "position": 24, + "title": "You Turn Me On (Like A Radio)" + }, + { + "artist": "B.J. Thomas", + "position": 25, + "title": "The Girl Most Likely to" + } + ], + "title": "1984 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Madonna", + "position": 1, + "title": "Like A Virgin" + }, + { + "artist": "Duran Duran", + "position": 2, + "title": "The Wild Boys" + }, + { + "artist": "Daryl Hall John Oates", + "position": 3, + "title": "Out Of Touch" + }, + { + "artist": "The Honeydrippers", + "position": 4, + "title": "Sea Of Love" + }, + { + "artist": "New Edition", + "position": 5, + "title": "Cool It Now" + }, + { + "artist": "Pat Benatar", + "position": 6, + "title": "We Belong" + }, + { + "artist": "Chaka Khan", + "position": 7, + "title": "I Feel For You" + }, + { + "artist": "Paul McCartney", + "position": 8, + "title": "No More Lonely Nights" + }, + { + "artist": "Jack Wagner", + "position": 9, + "title": "All I Need" + }, + { + "artist": "Julian Lennon", + "position": 10, + "title": "Valotte" + }, + { + "artist": "Wham!", + "position": 11, + "title": "Wake Me Up Before You Go-Go" + }, + { + "artist": "Bryan Adams", + "position": 12, + "title": "Run To You" + }, + { + "artist": "Cyndi Lauper", + "position": 13, + "title": "All Through The Night" + }, + { + "artist": "Bruce Springsteen", + "position": 14, + "title": "Born In The USA" + }, + { + "artist": "Chicago", + "position": 15, + "title": "You're The Inspiration" + }, + { + "artist": "Survivor", + "position": 16, + "title": "I Can't Hold Back" + }, + { + "artist": "Jermaine Jackson", + "position": 17, + "title": "Do What You Do" + }, + { + "artist": "Lionel Richie", + "position": 18, + "title": "Penny Lover" + }, + { + "artist": "Bob Seger", + "position": 19, + "title": "Understanding" + }, + { + "artist": "The Cars", + "position": 20, + "title": "Hello Again" + }, + { + "artist": "Foreigner", + "position": 21, + "title": "I Want To Know What Love Is" + }, + { + "artist": "Philip Bailey With Phil Collins", + "position": 22, + "title": "Easy Lover" + }, + { + "artist": "Sheena Easton", + "position": 23, + "title": "Strut" + }, + { + "artist": "Rebbie Jackson", + "position": 24, + "title": "Centipede" + }, + { + "artist": "Ray Parker Jr.", + "position": 25, + "title": "Jamie" + }, + { + "artist": "Huey Lewis & The News", + "position": 26, + "title": "Walking On A Thin Line" + }, + { + "artist": "Don Henley", + "position": 27, + "title": "The Boys Of Summer" + }, + { + "artist": "Dan Hartman", + "position": 28, + "title": "We Are The Young" + }, + { + "artist": "Tina Turner", + "position": 29, + "title": "Better Be Good To Me" + }, + { + "artist": "Toto", + "position": 30, + "title": "Stranger In Town" + }, + { + "artist": "Billy Ocean", + "position": 31, + "title": "Lover Boy" + }, + { + "artist": "Prince And The Revolution", + "position": 32, + "title": "I Would Die 4 U" + }, + { + "artist": "Rick Springfield", + "position": 33, + "title": "Bruce" + }, + { + "artist": "Sheila E", + "position": 34, + "title": "The Belle Of St. Mark" + }, + { + "artist": "John Cafferty & The Beaver Brown Band", + "position": 35, + "title": "Tender Years" + }, + { + "artist": "Stevie Wonder", + "position": 36, + "title": "Love Light In Flight" + }, + { + "artist": "Wham! Featuring George Michael", + "position": 37, + "title": "Careless Whisper" + }, + { + "artist": "U2", + "position": 38, + "title": "(Pride) In The Name Of Love" + }, + { + "artist": "Steve Perry", + "position": 39, + "title": "Foolish Heart" + }, + { + "artist": "The Pointer Sisters", + "position": 40, + "title": "Neutron Dance" + }, + { + "artist": "Giuffria", + "position": 41, + "title": "Call To The Heart" + }, + { + "artist": "Daryl Hall John Oates", + "position": 42, + "title": "Method Of Modern Love" + }, + { + "artist": "Elton John", + "position": 43, + "title": "In Neon" + }, + { + "artist": "Corey Hart", + "position": 44, + "title": "It Ain't Enough" + }, + { + "artist": "Ashford & Simpson", + "position": 45, + "title": "Solid" + }, + { + "artist": "Kool & The Gang", + "position": 46, + "title": "Misled" + }, + { + "artist": "Midnight Star", + "position": 47, + "title": "Operator" + }, + { + "artist": "Frankie Goes To Hollywood", + "position": 48, + "title": "Two Tribes" + }, + { + "artist": "The Time", + "position": 49, + "title": "Jungle Love" + }, + { + "artist": "Culture Club", + "position": 50, + "title": "Mistake No. 3" + }, + { + "artist": "General Public", + "position": 51, + "title": "Tenderness" + }, + { + "artist": "Glenn Frey", + "position": 52, + "title": "The Heat Is On" + }, + { + "artist": "David Bowie", + "position": 53, + "title": "Tonight" + }, + { + "artist": "Prince And The Revolution", + "position": 54, + "title": "Purple Rain" + }, + { + "artist": "Laura Branigan", + "position": 55, + "title": "Ti Amo" + }, + { + "artist": "Diana Ross", + "position": 56, + "title": "Missing You" + }, + { + "artist": "Cyndi Lauper", + "position": 57, + "title": "Money Changes Everything" + }, + { + "artist": "Barbra Streisand With Kim Carnes", + "position": 58, + "title": "Make No Mistake, He's Mine" + }, + { + "artist": "REO Speedwagon", + "position": 59, + "title": "I Do'wanna Know" + }, + { + "artist": "Sheena Easton", + "position": 60, + "title": "Sugar Walls" + }, + { + "artist": "John Fogerty", + "position": 61, + "title": "The Old Man Down The Road" + }, + { + "artist": "Billy Ocean", + "position": 62, + "title": "Caribbean Queen (No More Love On The Run)" + }, + { + "artist": "Stevie Wonder", + "position": 63, + "title": "I Just Called To Say I Love You" + }, + { + "artist": "Jeffrey Osborne", + "position": 64, + "title": "Don't Stop" + }, + { + "artist": "Band-Aid", + "position": 65, + "title": "Do They Know It's Christmas?" + }, + { + "artist": "Roger Hodgson", + "position": 66, + "title": "Had A Dream (Sleeping With The Enemy)" + }, + { + "artist": "Dennis DeYoung", + "position": 67, + "title": "Desert Moon" + }, + { + "artist": "Teena Marie", + "position": 68, + "title": "Lover Girl" + }, + { + "artist": "Billy Idol", + "position": 69, + "title": "Catch My Fall" + }, + { + "artist": "George Benson", + "position": 70, + "title": "20/20" + }, + { + "artist": "Alphaville", + "position": 71, + "title": "Big In Japan" + }, + { + "artist": "John Hunter", + "position": 72, + "title": "Tragedy" + }, + { + "artist": "Shalamar", + "position": 73, + "title": "Amnesia" + }, + { + "artist": "The Temptations", + "position": 74, + "title": "Treat Her Like A Lady" + }, + { + "artist": "Rick Dees", + "position": 75, + "title": "Eat My Shorts" + }, + { + "artist": "John Parr", + "position": 76, + "title": "Naughty Naughty" + }, + { + "artist": "Tommy Shaw", + "position": 77, + "title": "Lonely School" + }, + { + "artist": "Billy Squier", + "position": 78, + "title": "Eye On You" + }, + { + "artist": "New Edition", + "position": 79, + "title": "Mr. Telephone Man" + }, + { + "artist": "Rod Stewart", + "position": 80, + "title": "All Right Now" + }, + { + "artist": "John Waite", + "position": 81, + "title": "Tears" + }, + { + "artist": "Kenny Rogers", + "position": 83, + "title": "The Greatest Gift Of All" + }, + { + "artist": "Rick Springfield With Randy Crawford", + "position": 85, + "title": "Taxi Dancing" + }, + { + "artist": "Bronski Beat", + "position": 86, + "title": "Small Town Boy" + }, + { + "artist": "The Kinks", + "position": 87, + "title": "Do It Again" + }, + { + "artist": "Kenny Rogers With Kim Carnes & James Ingram", + "position": 88, + "title": "What About Me?" + }, + { + "artist": "Autograph", + "position": 89, + "title": "Turn Up The Radio" + }, + { + "artist": "Sammy Hagar", + "position": 91, + "title": "I Can't Drive 55" + }, + { + "artist": "Bananarama", + "position": 92, + "title": "The Wild Life" + }, + { + "artist": "Dazz Band", + "position": 93, + "title": "Let It All Blow" + }, + { + "artist": "David Bowie", + "position": 94, + "title": "Blue Jean" + }, + { + "artist": "The Pointer Sisters", + "position": 95, + "title": "I'm So Excited" + }, + { + "artist": "Culture Club", + "position": 96, + "title": "The War Song" + }, + { + "artist": "Peter Wolf", + "position": 97, + "title": "I Need You Tonight" + }, + { + "artist": "Scandal Featuring Patty Smyth", + "position": 98, + "title": "Hands Tied" + }, + { + "artist": "Dennis DeYoung", + "position": 99, + "title": "Don't Wait For Heroes" + }, + { + "artist": "Melissa Manchester", + "position": 100, + "title": "Thief Of Hearts" + } + ], + "title": "1984 - Hot 100" + }, + { + "songs": [ + { + "artist": "Larry Gatlin & The Gatlin Brothers", + "position": 1, + "title": "Houston (Means I'm One Day Closer To You)" + }, + { + "artist": "George Strait", + "position": 2, + "title": "You Look So Good In Love" + }, + { + "artist": "T.G. Sheppard", + "position": 3, + "title": "Slow Burn" + }, + { + "artist": "John Anderson", + "position": 4, + "title": "Black Sheep" + }, + { + "artist": "Charley Pride", + "position": 5, + "title": "Ev'ry Heart Should Have One" + }, + { + "artist": "The Oak Ridge Boys", + "position": 6, + "title": "Ozark Mountain Jubilee" + }, + { + "artist": "John Conlee", + "position": 7, + "title": "In My Eyes" + }, + { + "artist": "Ronnie McDowell", + "position": 8, + "title": "You Made A Wanted Man Of Me" + }, + { + "artist": "Nitty Gritty Dirt Band", + "position": 9, + "title": "Dance Little Jean" + }, + { + "artist": "Vern Gosdin", + "position": 10, + "title": "I Wonder Where We'd Be Tonight" + }, + { + "artist": "Crystal Gayle", + "position": 11, + "title": "The Sound Of Goodbye" + }, + { + "artist": "Hank Williams Jr.", + "position": 12, + "title": "Queen Of My Heart" + }, + { + "artist": "Ronnie Milsap", + "position": 13, + "title": "Show Her" + }, + { + "artist": "Willie Nelson With Waylon Jennings", + "position": 14, + "title": "Take It To The Limit" + }, + { + "artist": "Waylon Jennings With Hank Williams, Jr.", + "position": 15, + "title": "The Conversation" + }, + { + "artist": "Joe Stampley", + "position": 16, + "title": "Double Shot (Of My Baby's Love)" + }, + { + "artist": "Charly McClain", + "position": 17, + "title": "Sentimental Ol' You" + }, + { + "artist": "Gail Davies", + "position": 18, + "title": "You're A Hard Dog (To Keep Under The Porch)" + }, + { + "artist": "Mark Gray", + "position": 19, + "title": "Wounded Hearts" + }, + { + "artist": "Merle Haggard", + "position": 20, + "title": "That's The Way Love Goes" + }, + { + "artist": "Shelly West", + "position": 21, + "title": "Another Motel Memory" + }, + { + "artist": "Ed Bruce", + "position": 22, + "title": "After All" + }, + { + "artist": "Louise Mandrell", + "position": 23, + "title": "Runaway Heart" + }, + { + "artist": "Mel McDaniel", + "position": 24, + "title": "I Call It Love" + }, + { + "artist": "Kathy Mattea", + "position": 25, + "title": "Street Talk" + } + ], + "title": "1983 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Paul McCartney And Michael Jackson", + "position": 1, + "title": "Say Say Say" + }, + { + "artist": "Daryl Hall John Oates", + "position": 2, + "title": "Say It Isn't So" + }, + { + "artist": "Duran Duran", + "position": 3, + "title": "Union Of The Snake" + }, + { + "artist": "Yes", + "position": 4, + "title": "Owner Of A Lonely Heart" + }, + { + "artist": "Lionel Richie", + "position": 5, + "title": "All Night Long (All Night)" + }, + { + "artist": "Billy Joel", + "position": 6, + "title": "Uptown Girl" + }, + { + "artist": "The Rolling Stones", + "position": 9, + "title": "Undercover Of The Night" + }, + { + "artist": "Matthew Wilder", + "position": 10, + "title": "Break My Stride" + }, + { + "artist": "Elton John", + "position": 11, + "title": "I Guess That's Why They Call It The Blues" + }, + { + "artist": "The Romantics", + "position": 12, + "title": "Talking In Your Sleep" + }, + { + "artist": "Culture Club", + "position": 13, + "title": "Church Of The Poison Mind" + }, + { + "artist": "Peter Schilling", + "position": 14, + "title": "Major Tom (Coming Home)" + }, + { + "artist": "Quiet Riot", + "position": 15, + "title": "Cum On Feel The Noize" + }, + { + "artist": "The Police", + "position": 16, + "title": "Synchronicity II" + }, + { + "artist": "Culture Club", + "position": 17, + "title": "Karma Chameleon" + }, + { + "artist": "Kenny Rogers with Dolly Parton", + "position": 18, + "title": "Islands In The Stream" + }, + { + "artist": "Irene Cara", + "position": 19, + "title": "Why Me?" + }, + { + "artist": "Big Country", + "position": 20, + "title": "In A Big Country" + }, + { + "artist": "Lionel Richie", + "position": 21, + "title": "Running With The Night" + }, + { + "artist": "Kool & The Gang", + "position": 22, + "title": "Joanna" + }, + { + "artist": "Barry Manilow", + "position": 23, + "title": "Read 'Em And Weep" + }, + { + "artist": "John Cougar Mellencamp", + "position": 24, + "title": "Crumblin' Down" + }, + { + "artist": "Thirty Eight Special", + "position": 25, + "title": "If I'd Been The One" + }, + { + "artist": "Debarge", + "position": 26, + "title": "Time Will Reveal" + }, + { + "artist": "Genesis", + "position": 27, + "title": "That's All" + }, + { + "artist": "Ray Parker Jr.", + "position": 28, + "title": "I Still Can't Get Over Loving You" + }, + { + "artist": "John Mellencamp", + "position": 29, + "title": "Pink Houses" + }, + { + "artist": "Rufus & Chaka Khan", + "position": 30, + "title": "Ain't Nobody" + }, + { + "artist": "Madonna", + "position": 31, + "title": "Holiday" + }, + { + "artist": "Jump 'n The Saddle", + "position": 32, + "title": "The Curly Shuffle" + }, + { + "artist": "Jeffrey Osborne", + "position": 33, + "title": "Stay With Me Tonight" + }, + { + "artist": "Spandau Ballet", + "position": 34, + "title": "Gold" + }, + { + "artist": "The Fixx", + "position": 35, + "title": "The Sign Of Fire" + }, + { + "artist": "Huey Lewis & The News", + "position": 36, + "title": "Heart And Soul" + }, + { + "artist": "Naked Eyes", + "position": 37, + "title": "When The Lights Go Out" + }, + { + "artist": "Christopher Cross", + "position": 38, + "title": "Think Of Laura" + }, + { + "artist": "Deborah Allen", + "position": 39, + "title": "Baby I Lied" + }, + { + "artist": "Robert Plant", + "position": 40, + "title": "In The Mood" + }, + { + "artist": "Rick Springfield", + "position": 41, + "title": "Souls" + }, + { + "artist": "Shannon", + "position": 42, + "title": "Let The Music Play" + }, + { + "artist": "Pretenders", + "position": 43, + "title": "Middle Of The Road" + }, + { + "artist": "Billy Joel", + "position": 44, + "title": "An Innocent Man" + }, + { + "artist": "The Motels", + "position": 45, + "title": "Remember The Night" + }, + { + "artist": "Real Life", + "position": 46, + "title": "Send Me An Angel" + }, + { + "artist": "Michael Jackson", + "position": 47, + "title": "P.Y.T. (Pretty Young Thing)" + }, + { + "artist": "Stevie Nicks", + "position": 48, + "title": "Nightbird" + }, + { + "artist": "Paul McCartney", + "position": 49, + "title": "So Bad" + }, + { + "artist": "James Ingram With Michael McDonald", + "position": 50, + "title": "Yah Mo B There" + }, + { + "artist": "Bonnie Tyler", + "position": 51, + "title": "Take Me Back" + }, + { + "artist": "Rick James And Smokey Robinson", + "position": 52, + "title": "Ebony Eyes" + }, + { + "artist": "Linda Ronstadt & The Nelson Riddle Orchestra", + "position": 53, + "title": "What's New" + }, + { + "artist": "The Alan Parsons Project", + "position": 54, + "title": "You Don't Believe" + }, + { + "artist": "Eddie Money", + "position": 55, + "title": "Big Crash" + }, + { + "artist": "Stray Cats", + "position": 56, + "title": "I Won't Stand In Your Way" + }, + { + "artist": "Barbra Streisand", + "position": 57, + "title": "The Way He Makes Me Feel" + }, + { + "artist": "Irene Cara", + "position": 58, + "title": "The Dream" + }, + { + "artist": "Re-flex", + "position": 59, + "title": "The Politics Of Dancing" + }, + { + "artist": "Dolly Parton", + "position": 60, + "title": "Save The Last Dance For Me" + }, + { + "artist": "Night Ranger", + "position": 61, + "title": "(You Can Still) Rock In America" + }, + { + "artist": "Nena", + "position": 62, + "title": "99 Luftballons" + }, + { + "artist": "Sheena Easton", + "position": 63, + "title": "Almost Over You" + }, + { + "artist": "Midnight Star", + "position": 64, + "title": "Wet My Whistle" + }, + { + "artist": "Talking Heads", + "position": 65, + "title": "This Must Be The Place" + }, + { + "artist": "Kiss", + "position": 66, + "title": "Lick It Up" + }, + { + "artist": "KC", + "position": 67, + "title": "Give It Up" + }, + { + "artist": "Bonnie Tyler", + "position": 68, + "title": "Total Eclipse Of The Heart" + }, + { + "artist": "Cyndi Lauper", + "position": 69, + "title": "Girls Just Want To Have Fun" + }, + { + "artist": "Peabo Bryson/Roberta Flack", + "position": 70, + "title": "Tonight, I Celebrate My Love" + }, + { + "artist": "Sheena Easton", + "position": 71, + "title": "Telefone (long Distance Love Affair)" + }, + { + "artist": "The Motels", + "position": 72, + "title": "Suddenly Last Summer" + }, + { + "artist": "The Doors", + "position": 73, + "title": "Gloria" + }, + { + "artist": "Peabo Bryson & Roberta Flack", + "position": 74, + "title": "You're Looking Like Love To Me" + }, + { + "artist": "Rainbow", + "position": 75, + "title": "Street Of Dreams" + }, + { + "artist": "Jackson Browne", + "position": 76, + "title": "Tender Is The Night" + }, + { + "artist": "Herb Alpert", + "position": 77, + "title": "Red Hot" + }, + { + "artist": "Asia", + "position": 78, + "title": "The Smile Has Left Your Eyes" + }, + { + "artist": "Air Supply", + "position": 80, + "title": "Making Love Out Of Nothing At All" + }, + { + "artist": "Michael Stanley Band", + "position": 81, + "title": "Someone Like You" + }, + { + "artist": "Prince And The Revolution", + "position": 82, + "title": "Let's Pretend We're Married/Irresistible Bitch" + }, + { + "artist": "Diana Ross", + "position": 83, + "title": "Let's Go Up" + }, + { + "artist": "Crystal Gayle", + "position": 84, + "title": "The Sound Of Goodbye" + }, + { + "artist": "Bob Dylan", + "position": 85, + "title": "Sweetheart Like You" + }, + { + "artist": "Rodney Dangerfield", + "position": 86, + "title": "Rappin' Rodney" + }, + { + "artist": "Atlantic Starr", + "position": 87, + "title": "Touch A Four Leaf Clover" + }, + { + "artist": "The Pointer Sisters", + "position": 88, + "title": "I Need You" + }, + { + "artist": "The Headpins", + "position": 89, + "title": "Just One More Time" + }, + { + "artist": "Twilight 22", + "position": 90, + "title": "Electric Kingdom" + }, + { + "artist": "Jennifer Holliday", + "position": 91, + "title": "I Am Love" + }, + { + "artist": "Journey", + "position": 92, + "title": "Send Her My Love" + }, + { + "artist": "Earth, Wind & Fire", + "position": 93, + "title": "Magnetic" + }, + { + "artist": "The Fixx", + "position": 94, + "title": "One Thing Leads To Another" + }, + { + "artist": "Kim Carnes", + "position": 95, + "title": "Invisible Hands" + }, + { + "artist": "Paul Simon", + "position": 96, + "title": "Allergies" + }, + { + "artist": "Industry", + "position": 97, + "title": "State Of The Union" + }, + { + "artist": "Streets", + "position": 98, + "title": "If Love Should Go" + }, + { + "artist": "Prince", + "position": 99, + "title": "Delirious" + }, + { + "artist": "Dionne Warwick & Luther Vandross", + "position": 100, + "title": "How Many Times Can We Say Goodbye" + } + ], + "title": "1983 - Hot 100" + }, + { + "songs": [ + { + "artist": "John Anderson", + "position": 1, + "title": "Wild And Blue" + }, + { + "artist": "Jerry Reed", + "position": 2, + "title": "The Bird" + }, + { + "artist": "Kenny Rogers", + "position": 3, + "title": "A Love Song" + }, + { + "artist": "Reba McEntire", + "position": 4, + "title": "Can't Even Get The Blues" + }, + { + "artist": "Merle Haggard", + "position": 5, + "title": "Going Where The Lonely Go" + }, + { + "artist": "David Frizzell", + "position": 6, + "title": "Lost My Baby Blues" + }, + { + "artist": "George Strait", + "position": 7, + "title": "Marina Del Rey" + }, + { + "artist": "Emmylou Harris", + "position": 8, + "title": "(lost His Love) On Our Last Date" + }, + { + "artist": "Rosanne Cash", + "position": 9, + "title": "I Wonder" + }, + { + "artist": "Johnny Lee And Friends", + "position": 10, + "title": "Cherokee Fiddle" + }, + { + "artist": "John Conlee", + "position": 11, + "title": "I Don't Remember Loving You" + }, + { + "artist": "Sylvia 1", + "position": 12, + "title": "Like Nothing Ever Happened" + }, + { + "artist": "Waylon & Willie", + "position": 13, + "title": "(Sittin' On) The Dock Of The Bay" + }, + { + "artist": "Earl Thomas Conley", + "position": 14, + "title": "Somewhere Between Right And Wrong" + }, + { + "artist": "Mickey Gilley", + "position": 15, + "title": "Talk To Me" + }, + { + "artist": "Charly McClain", + "position": 16, + "title": "With You" + }, + { + "artist": "Dolly Parton", + "position": 17, + "title": "Hard Candy Christmas" + }, + { + "artist": "The Statler Brothers", + "position": 18, + "title": "A Child Of The Fifties" + }, + { + "artist": "Ronnie Milsap", + "position": 19, + "title": "Inside/carolina Dreams" + }, + { + "artist": "The Oak Ridge Boys", + "position": 20, + "title": "Thank God For Kids" + }, + { + "artist": "Moe Bandy", + "position": 21, + "title": "Only If There Is Another You" + }, + { + "artist": "Vern Gosdin", + "position": 22, + "title": "Today My World Slipped Away" + }, + { + "artist": "Gene Watson", + "position": 23, + "title": "What She Don't Know Won't Hurt Her" + }, + { + "artist": "Crystal Gayle", + "position": 24, + "title": "'til I Gain Control Again" + }, + { + "artist": "Gail Davies", + "position": 25, + "title": "Hold On" + } + ], + "title": "1982 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Daryl Hall John Oates", + "position": 1, + "title": "Maneater" + }, + { + "artist": "Toni Basil", + "position": 2, + "title": "Mickey" + }, + { + "artist": "Michael Jackson And Paul McCartney", + "position": 3, + "title": "The Girl Is Mine" + }, + { + "artist": "Don Henley", + "position": 4, + "title": "Dirty Laundry" + }, + { + "artist": "Laura Branigan", + "position": 5, + "title": "Gloria" + }, + { + "artist": "Joe Jackson", + "position": 6, + "title": "Steppin' Out" + }, + { + "artist": "Marvin Gaye", + "position": 7, + "title": "Sexual Healing" + }, + { + "artist": "Men At Work", + "position": 8, + "title": "Down Under" + }, + { + "artist": "Stray Cats", + "position": 9, + "title": "Rock This Town" + }, + { + "artist": "Lionel Richie", + "position": 10, + "title": "Truly" + }, + { + "artist": "Supertramp Featuring Roger Hodgson", + "position": 11, + "title": "It's Raining Again" + }, + { + "artist": "Dionne Warwick", + "position": 12, + "title": "Heartbreaker" + }, + { + "artist": "Pat Benatar", + "position": 13, + "title": "Shadows Of The Night" + }, + { + "artist": "Toto", + "position": 14, + "title": "Africa" + }, + { + "artist": "The Clash", + "position": 15, + "title": "Rock The Casbah" + }, + { + "artist": "Eddie Rabbitt With Crystal Gayle", + "position": 16, + "title": "You And I" + }, + { + "artist": "Patti Austin With James Ingram", + "position": 17, + "title": "Baby, Come To Me" + }, + { + "artist": "Little River Band", + "position": 18, + "title": "The Other Guy" + }, + { + "artist": "ABC", + "position": 19, + "title": "The Look Of Love (Part One)" + }, + { + "artist": "Phil Collins", + "position": 20, + "title": "You Can't Hurry Love" + }, + { + "artist": "Joe Cocker And Jennifer Warnes", + "position": 21, + "title": "Up Where We Belong" + }, + { + "artist": "Kenny Loggins", + "position": 22, + "title": "Heart To Heart" + }, + { + "artist": "Dan Fogelberg", + "position": 23, + "title": "Missing You" + }, + { + "artist": "John Cougar", + "position": 24, + "title": "Hand To Hold On To" + }, + { + "artist": "Adam Ant", + "position": 25, + "title": "Goody Two Shoes" + }, + { + "artist": "The J. Geils Band", + "position": 26, + "title": "I Do" + }, + { + "artist": "Fleetwood Mac", + "position": 27, + "title": "Love In Store" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 28, + "title": "You Got Lucky" + }, + { + "artist": "Jeffrey Osborne", + "position": 29, + "title": "On The Wings Of Love" + }, + { + "artist": "Bob Seger & The Silver Bullet Band", + "position": 30, + "title": "Shame On The Moon" + }, + { + "artist": "Kool & The Gang", + "position": 31, + "title": "Let's Go Dancin' (ooh La, La, La)" + }, + { + "artist": "Billy Squier", + "position": 32, + "title": "Everybody Wants You" + }, + { + "artist": "Tavares", + "position": 33, + "title": "A Penny For Your Thoughts" + }, + { + "artist": "Moving Pictures", + "position": 34, + "title": "What About Me" + }, + { + "artist": "Peter Gabriel", + "position": 35, + "title": "Shock The Monkey" + }, + { + "artist": "Juice Newton", + "position": 36, + "title": "Heart Of The Night" + }, + { + "artist": "Billy Joel", + "position": 37, + "title": "Allentown" + }, + { + "artist": "Kim Carnes", + "position": 38, + "title": "Does It Make You Remember" + }, + { + "artist": "Sammy Hagar", + "position": 39, + "title": "Your Love Is Driving Me Crazy" + }, + { + "artist": "Air Supply", + "position": 40, + "title": "Two Less Lonely People In The World" + }, + { + "artist": "Diana Ross", + "position": 41, + "title": "Muscles" + }, + { + "artist": "A Flock Of Seagulls", + "position": 42, + "title": "Space Age Love Song" + }, + { + "artist": "Stray Cats", + "position": 43, + "title": "Stray Cat Strut" + }, + { + "artist": "Michael McDonald", + "position": 44, + "title": "I Gotta Try" + }, + { + "artist": "Barry Manilow", + "position": 45, + "title": "Memory" + }, + { + "artist": "Olivia Newton-John", + "position": 46, + "title": "Heart Attack" + }, + { + "artist": "Ray Parker Jr.", + "position": 47, + "title": "Bad Boy" + }, + { + "artist": "America", + "position": 48, + "title": "Right Before Your Eyes" + }, + { + "artist": "Glenn Frey", + "position": 49, + "title": "All Those Lies" + }, + { + "artist": "Sonny Charles", + "position": 50, + "title": "Put It In A Magazine" + }, + { + "artist": "Culture Club", + "position": 51, + "title": "Do You Really Want To Hurt Me" + }, + { + "artist": "Golden Earring", + "position": 52, + "title": "Twilight Zone" + }, + { + "artist": "Linda Ronstadt", + "position": 53, + "title": "I Knew You When" + }, + { + "artist": "Frida", + "position": 54, + "title": "I Know There's Something Going On" + }, + { + "artist": "Luther Vandross", + "position": 55, + "title": "Bad Boy/Having A Party" + }, + { + "artist": "Saga", + "position": 56, + "title": "On The Loose" + }, + { + "artist": "The Alan Parsons Project", + "position": 57, + "title": "Psychobabble" + }, + { + "artist": "Jefferson Starship", + "position": 58, + "title": "Be My Lady" + }, + { + "artist": "Musical Youth", + "position": 59, + "title": "Pass The Dutchie" + }, + { + "artist": "Donna Summer", + "position": 60, + "title": "The Woman In Me" + }, + { + "artist": "Joni Mitchell", + "position": 61, + "title": "(you're So Square) Baby, I Don't Care" + }, + { + "artist": "Chilliwack", + "position": 62, + "title": "Whatcha Gonna Do" + }, + { + "artist": "Pretenders", + "position": 63, + "title": "Back On The Chain Gang" + }, + { + "artist": "Lanier & Co.", + "position": 64, + "title": "After I Cry Tonight" + }, + { + "artist": "Prince", + "position": 65, + "title": "1999" + }, + { + "artist": "Santana", + "position": 66, + "title": "Nowhere To Run" + }, + { + "artist": "Wolf", + "position": 67, + "title": "Papa Was A Rollin' Stone" + }, + { + "artist": "The Steve Miller Band", + "position": 68, + "title": "Give It Up" + }, + { + "artist": "Lee Ritenour", + "position": 69, + "title": "Cross My Heart" + }, + { + "artist": "Charlene & Stevie Wonder", + "position": 70, + "title": "Used To Be" + }, + { + "artist": "Elvis Presley", + "position": 71, + "title": "The Elvis Medley" + }, + { + "artist": "Commodores", + "position": 72, + "title": "Painted Picture" + }, + { + "artist": "Janet Jackson", + "position": 73, + "title": "Young Love" + }, + { + "artist": "Pia Zadora", + "position": 74, + "title": "The Clapping Song" + }, + { + "artist": "The Spinners", + "position": 75, + "title": "Funny How Time Slips Away" + }, + { + "artist": "Rough Trade", + "position": 76, + "title": "All Touch" + }, + { + "artist": "Duran Duran", + "position": 77, + "title": "Hungry Like The Wolf" + }, + { + "artist": "Hot Chocolate", + "position": 78, + "title": "Are You Getting Enough Happiness" + }, + { + "artist": "Poco", + "position": 79, + "title": "Shoot For The Moon" + }, + { + "artist": "The Who", + "position": 80, + "title": "Eminence Front" + }, + { + "artist": "Little Steven", + "position": 81, + "title": "Forever" + }, + { + "artist": "Hughes/Thrall", + "position": 82, + "title": "Beg, Borrow Or Steal" + }, + { + "artist": "Donald Fagen", + "position": 83, + "title": "I.g.y. (what A Beautiful World)" + }, + { + "artist": "Crosby, Stills & Nash", + "position": 84, + "title": "Southern Cross" + }, + { + "artist": "Scandal Featuring Patty Smyth", + "position": 85, + "title": "Goodbye To You" + }, + { + "artist": "Bill Conti", + "position": 86, + "title": "Theme From Dynasty" + }, + { + "artist": "Neil Diamond", + "position": 87, + "title": "Heartlight" + }, + { + "artist": "Tyrone Davis", + "position": 88, + "title": "Are You Serious" + }, + { + "artist": "Michael Stanley Band", + "position": 89, + "title": "Take The Time" + }, + { + "artist": "Unipop", + "position": 90, + "title": "What If (I Said I Love You)" + }, + { + "artist": "Chicago", + "position": 91, + "title": "Love Me Tomorrow" + }, + { + "artist": "Missing Persons", + "position": 92, + "title": "Destination Unknown" + }, + { + "artist": "Billy Joel", + "position": 93, + "title": "Pressure" + }, + { + "artist": "Sylvia", + "position": 94, + "title": "Nobody" + }, + { + "artist": "Men At Work", + "position": 95, + "title": "Who Can It Be Now?" + }, + { + "artist": "The Motels", + "position": 96, + "title": "Forever Mine" + }, + { + "artist": "Rodway", + "position": 97, + "title": "Don't Stop Trying" + }, + { + "artist": "The Pointer Sisters", + "position": 98, + "title": "I'm So Excited" + }, + { + "artist": "Steel Breeze", + "position": 99, + "title": "You Don't Want Me Anymore" + }, + { + "artist": "Survivor", + "position": 100, + "title": "American Heartbeat" + } + ], + "title": "1982 - Hot 100" + }, + { + "songs": [ + { + "artist": "Alabama", + "position": 1, + "title": "Love In The First Degree/Ride The Train" + }, + { + "artist": "Gene Watson", + "position": 2, + "title": "Fourteen Karat Mind" + }, + { + "artist": "Crystal Gayle", + "position": 3, + "title": "The Woman In Me" + }, + { + "artist": "Ronnie Milsap", + "position": 4, + "title": "I Wouldn't Have Missed It For The World" + }, + { + "artist": "Conway Twitty", + "position": 5, + "title": "Red Neckin Love Makin Night" + }, + { + "artist": "Juice Newton", + "position": 6, + "title": "The Sweetest Thing (I've Ever Known)" + }, + { + "artist": "The Bellamy Brothers", + "position": 7, + "title": "You're My Favorite Star" + }, + { + "artist": "Gary Morris", + "position": 8, + "title": "Headed For A Heartache" + }, + { + "artist": "Mac Davis", + "position": 9, + "title": "You're My Bestest Friend" + }, + { + "artist": "Mickey Gilley", + "position": 10, + "title": "Lonely Nights" + }, + { + "artist": "Moe Bandy", + "position": 11, + "title": "Rodeo Romeo" + }, + { + "artist": "Earl Thomas Conley", + "position": 12, + "title": "Tell Me Why" + }, + { + "artist": "The Statler Brothers", + "position": 13, + "title": "Years Ago" + }, + { + "artist": "Eddy Raven", + "position": 14, + "title": "Who Do You Know In California" + }, + { + "artist": "Eddie Rabbitt", + "position": 15, + "title": "Someone Could Lose A Heart Tonight" + }, + { + "artist": "Kenny Rogers", + "position": 16, + "title": "Blaze Of Glory" + }, + { + "artist": "Dottie West", + "position": 17, + "title": "It's High Time" + }, + { + "artist": "Jim Reeves And Patsy Cline", + "position": 18, + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)" + }, + { + "artist": "Ronnie McDowell", + "position": 19, + "title": "Watchin' Girls Go By" + }, + { + "artist": "Lee Greenwood", + "position": 20, + "title": "It Turns Me Inside Out" + }, + { + "artist": "Don Williams", + "position": 21, + "title": "Lord, I Hope This Day Is Good" + }, + { + "artist": "Leon Everette", + "position": 22, + "title": "Midnight Rodeo" + }, + { + "artist": "Kieran Kane", + "position": 23, + "title": "It's Who You Love" + }, + { + "artist": "Mel McDaniel", + "position": 24, + "title": "Preaching Up A Storm" + }, + { + "artist": "Ray Price", + "position": 25, + "title": "Diamonds In The Stars" + } + ], + "title": "1981 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Olivia Newton-John", + "position": 1, + "title": "Physical" + }, + { + "artist": "Foreigner", + "position": 2, + "title": "Waiting For A Girl Like You" + }, + { + "artist": "Earth, Wind & Fire", + "position": 3, + "title": "Let's Groove" + }, + { + "artist": "Daryl Hall John Oates", + "position": 4, + "title": "I Can't Go For That (No Can Do)" + }, + { + "artist": "Rod Stewart", + "position": 5, + "title": "Young Turks" + }, + { + "artist": "Quarterflash", + "position": 6, + "title": "Harden My Heart" + }, + { + "artist": "Diana Ross", + "position": 7, + "title": "Why Do Fools Fall In Love" + }, + { + "artist": "Stevie Nicks With Don Henley", + "position": 8, + "title": "Leather And Lace" + }, + { + "artist": "Journey", + "position": 9, + "title": "Don't Stop Believin'" + }, + { + "artist": "Lindsey Buckingham", + "position": 10, + "title": "Trouble" + }, + { + "artist": "The J. Geils Band", + "position": 11, + "title": "Centerfold" + }, + { + "artist": "Neil Diamond", + "position": 12, + "title": "Yesterday's Songs" + }, + { + "artist": "Barbra Streisand", + "position": 13, + "title": "Comin' In And Out Of Your Life" + }, + { + "artist": "George Benson", + "position": 14, + "title": "Turn Your Love Around" + }, + { + "artist": "Juice Newton", + "position": 15, + "title": "The Sweetest Thing (I've Ever Known)" + }, + { + "artist": "Royal Philharmonic Orchestra", + "position": 16, + "title": "Hooked On Classics" + }, + { + "artist": "Kool & The Gang", + "position": 17, + "title": "Take My Heart (You Can Have It If You Want It)" + }, + { + "artist": "Paul Davis", + "position": 18, + "title": "Cool Night" + }, + { + "artist": "Commodores", + "position": 19, + "title": "Oh No" + }, + { + "artist": "The Police", + "position": 20, + "title": "Every Little Thing She Does Is Magic" + }, + { + "artist": "Eddie Rabbitt", + "position": 21, + "title": "Someone Could Lose A Heart Tonight" + }, + { + "artist": "Air Supply", + "position": 22, + "title": "Here I Am (Just When I Thought I Was Over You)" + }, + { + "artist": "Ronnie Milsap", + "position": 23, + "title": "I Wouldn't Have Missed It For The World" + }, + { + "artist": "The Cars", + "position": 24, + "title": "Shake It Up" + }, + { + "artist": "Stevie Woods", + "position": 25, + "title": "Steal The Night" + }, + { + "artist": "The Rolling Stones", + "position": 26, + "title": "Waiting On A Friend" + }, + { + "artist": "Go-Go's", + "position": 27, + "title": "Our Lips Are Sealed" + }, + { + "artist": "Billy Joel", + "position": 28, + "title": "She's Got A Way" + }, + { + "artist": "Chilliwack", + "position": 29, + "title": "My Girl (Gone, Gone, Gone)" + }, + { + "artist": "The Beach Boys", + "position": 30, + "title": "Come Go With Me" + }, + { + "artist": "Queen & David Bowie", + "position": 31, + "title": "Under Pressure" + }, + { + "artist": "Sheena Easton", + "position": 32, + "title": "You Could Have Been With Me" + }, + { + "artist": "Dan Fogelberg", + "position": 33, + "title": "Leader Of The Band" + }, + { + "artist": "The Steve Miller Band", + "position": 34, + "title": "Heart Like A Wheel" + }, + { + "artist": "Little River Band", + "position": 35, + "title": "Take It Easy On Me" + }, + { + "artist": "Don McLean", + "position": 36, + "title": "Castles In The Air" + }, + { + "artist": "Sneaker", + "position": 37, + "title": "More Than Just The Two Of Us" + }, + { + "artist": "Daryl Hall John Oates", + "position": 38, + "title": "Private Eyes" + }, + { + "artist": "The Rolling Stones", + "position": 39, + "title": "Start Me Up" + }, + { + "artist": "Rick Springfield", + "position": 40, + "title": "Love Is Alright Tonite" + }, + { + "artist": "Loverboy", + "position": 41, + "title": "Working For The Weekend" + }, + { + "artist": "Air Supply", + "position": 42, + "title": "Sweet Dreams" + }, + { + "artist": "Barry Manilow", + "position": 43, + "title": "The Old Songs" + }, + { + "artist": "Alabama", + "position": 44, + "title": "Love In The First Degree" + }, + { + "artist": "Christopher Cross", + "position": 45, + "title": "Arthur's Theme (Best That You Can Do)" + }, + { + "artist": "Lulu", + "position": 46, + "title": "If I Were You" + }, + { + "artist": "Bertie Higgins", + "position": 47, + "title": "Key Largo" + }, + { + "artist": "Greg Lake", + "position": 48, + "title": "Let Me Love You Once" + }, + { + "artist": "Genesis", + "position": 49, + "title": "No Reply At All" + }, + { + "artist": "Luther Vandross", + "position": 50, + "title": "Never Too Much" + }, + { + "artist": "Billy Squier", + "position": 51, + "title": "My Kinda Lover" + }, + { + "artist": "Ringo Starr", + "position": 52, + "title": "Wrack My Brain" + }, + { + "artist": "Bob Seger", + "position": 53, + "title": "Tryin' To Live My Life Without You" + }, + { + "artist": "Eddie Schwartz", + "position": 54, + "title": "All Our Tomorrows" + }, + { + "artist": "Survivor", + "position": 55, + "title": "Poor Man's Son" + }, + { + "artist": "Al Jarreau", + "position": 56, + "title": "Breakin' Away" + }, + { + "artist": "Mike Post featuring Larry Carlton", + "position": 57, + "title": "The Theme From Hill Street Blues" + }, + { + "artist": "Sheila", + "position": 58, + "title": "Little Darlin'" + }, + { + "artist": "Balance", + "position": 59, + "title": "Falling In Love" + }, + { + "artist": "Jennifer Warnes", + "position": 60, + "title": "Could It Be Love" + }, + { + "artist": "Del Shannon", + "position": 61, + "title": "Sea Of Love" + }, + { + "artist": "Bee Gees", + "position": 62, + "title": "Living Eyes" + }, + { + "artist": "Barry Manilow", + "position": 63, + "title": "Somewhere Down The Road" + }, + { + "artist": "Irene Cara", + "position": 64, + "title": "Anyone Can See" + }, + { + "artist": "Steve Carlisle", + "position": 65, + "title": "Wkrp In Cincinnati" + }, + { + "artist": "Quincy Jones Featuring James Ingram", + "position": 66, + "title": "Just Once" + }, + { + "artist": "Bob Seger & The Silver Bullet Band", + "position": 67, + "title": "Feel Like A Number" + }, + { + "artist": "Henry Paul Band", + "position": 68, + "title": "Keeping Our Love Alive" + }, + { + "artist": "Rick Springfield", + "position": 69, + "title": "I've Done Everything For You" + }, + { + "artist": "Rush", + "position": 70, + "title": "Closer To The Heart" + }, + { + "artist": "Genesis", + "position": 71, + "title": "Abacab" + }, + { + "artist": "Carpenters", + "position": 72, + "title": "Those Good Old Dreams" + }, + { + "artist": "Quincy Jones Featuring James Ingram", + "position": 73, + "title": "One Hundred Ways" + }, + { + "artist": "Little River Band", + "position": 74, + "title": "The Night Owls" + }, + { + "artist": "Patti Austin", + "position": 75, + "title": "Every Home Should Have One" + }, + { + "artist": "Crystal Gayle", + "position": 76, + "title": "The Woman In Me" + }, + { + "artist": "Donnie Iris", + "position": 77, + "title": "Love Is Like A Rock" + }, + { + "artist": "Kiss", + "position": 78, + "title": "A World Without Heroes" + }, + { + "artist": "Four Tops", + "position": 79, + "title": "When She Was My Girl" + }, + { + "artist": "Neil Young/Crazy Horse", + "position": 80, + "title": "Southern Pacific" + }, + { + "artist": "Diesel", + "position": 81, + "title": "Sausalito Summernight" + }, + { + "artist": "Kenny Rogers", + "position": 82, + "title": "Through The Years" + }, + { + "artist": "The John Hall Band", + "position": 83, + "title": "Crazy (Keep On Falling)" + }, + { + "artist": "Leif Garrett", + "position": 84, + "title": "Runaway Rita" + }, + { + "artist": "Bill Champlin", + "position": 85, + "title": "Tonight Tonight" + }, + { + "artist": "Al Jarreau", + "position": 86, + "title": "We're In This Love Together" + }, + { + "artist": "Carl Carlton", + "position": 87, + "title": "She's A Bad Mama Jama (She's Built, She's Stacked)" + }, + { + "artist": "Vangelis", + "position": 88, + "title": "Chariots Of Fire - Titles" + }, + { + "artist": "Kenny Rogers", + "position": 89, + "title": "Blaze Of Glory" + }, + { + "artist": "Sheena Easton", + "position": 90, + "title": "For Your Eyes Only" + }, + { + "artist": "Kano", + "position": 91, + "title": "Can't Hold Back (Your Loving)" + }, + { + "artist": "Dave Stewart and Barbara Gaskin", + "position": 92, + "title": "It's My Party" + }, + { + "artist": "The Kinks", + "position": 93, + "title": "Better Things" + }, + { + "artist": "Rick James", + "position": 94, + "title": "Super Freak (Part I)" + }, + { + "artist": "Diana Ross & Lionel Richie", + "position": 95, + "title": "Endless Love" + }, + { + "artist": "Dan Fogelberg", + "position": 96, + "title": "Hard To Say" + }, + { + "artist": "Prince", + "position": 97, + "title": "Controversy" + }, + { + "artist": "Chris Christian", + "position": 98, + "title": "I Want You, I Need You" + }, + { + "artist": "Electric Light Orchestra", + "position": 99, + "title": "Twilight" + }, + { + "artist": "Rufus With Chaka Khan", + "position": 100, + "title": "Sharing The Love" + } + ], + "title": "1981 - Hot 100" + }, + { + "songs": [ + { + "artist": "Johnny Lee", + "position": 1, + "title": "One In A Million" + }, + { + "artist": "Merle Haggard", + "position": 2, + "title": "I Think I'll Stay Here And Drink" + }, + { + "artist": "The Bellamy Brothers", + "position": 3, + "title": "Lovers Live Longer" + }, + { + "artist": "Conway Twitty", + "position": 4, + "title": "A Bridge That Just Won't Burn" + }, + { + "artist": "Eddie Rabbitt", + "position": 5, + "title": "I Love A Rainy Night" + }, + { + "artist": "Barbara Mandrell", + "position": 6, + "title": "The Best Of Strangers" + }, + { + "artist": "Mickey Gilley", + "position": 7, + "title": "That's All That Matters To Me" + }, + { + "artist": "Leon Everette", + "position": 8, + "title": "Giving Up Easy" + }, + { + "artist": "Mac Davis", + "position": 9, + "title": "Texas In My Rear View Mirror" + }, + { + "artist": "Janie Frickie", + "position": 10, + "title": "Down To My Last Broken Heart" + }, + { + "artist": "The Oak Ridge Boys", + "position": 11, + "title": "Beautiful You" + }, + { + "artist": "Terri Gibbs", + "position": 12, + "title": "Somebodys Knockin'" + }, + { + "artist": "Gene Watson", + "position": 13, + "title": "No One Will Ever Know" + }, + { + "artist": "Porter Wagoner", + "position": 14, + "title": "If You Go, I'll Follow You" + }, + { + "artist": "Dolly Parton", + "position": 15, + "title": "9 To 5" + }, + { + "artist": "The Statler Brothers", + "position": 16, + "title": "Don't Forget Yourself" + }, + { + "artist": "Razzy Bailey", + "position": 17, + "title": "I Keep Coming Back/True Life Country Music" + }, + { + "artist": "Bobby Goldsboro", + "position": 18, + "title": "Goodbye Marie" + }, + { + "artist": "Johnny Duncan", + "position": 19, + "title": "Acapulo" + }, + { + "artist": "T.G. Sheppard", + "position": 20, + "title": "I Feel Like Loving You Again" + }, + { + "artist": "Ed Bruce", + "position": 21, + "title": "Girls, Women Ladies" + }, + { + "artist": "Gail Davies", + "position": 22, + "title": "I'll Be There (If You Ever Want Me)" + }, + { + "artist": "Charly McClain", + "position": 23, + "title": "Who's Cheatin' Who" + }, + { + "artist": "John Anderson", + "position": 24, + "title": "1959" + }, + { + "artist": "Susie Allanson", + "position": 25, + "title": "Dance The Two Step" + } + ], + "title": "1980 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "John Lennon", + "position": 1, + "title": "(Just Like) Starting Over" + }, + { + "artist": "Leo Sayer", + "position": 2, + "title": "More Than I Can Say" + }, + { + "artist": "Neil Diamond", + "position": 3, + "title": "Love On The Rocks" + }, + { + "artist": "Kenny Rogers", + "position": 4, + "title": "Lady" + }, + { + "artist": "Bruce Springsteen", + "position": 5, + "title": "Hungry Heart" + }, + { + "artist": "Air Supply", + "position": 6, + "title": "Every Woman In The World" + }, + { + "artist": "Barbra Streisand & Barry Gibb", + "position": 7, + "title": "Guilty" + }, + { + "artist": "Blondie", + "position": 8, + "title": "The Tide Is High" + }, + { + "artist": "Pat Benatar", + "position": 9, + "title": "Hit Me With Your Best Shot" + }, + { + "artist": "Heart", + "position": 10, + "title": "Tell It Like It Is" + }, + { + "artist": "Rod Stewart", + "position": 11, + "title": "Passion" + }, + { + "artist": "The Police", + "position": 12, + "title": "De Do Do Do, De Da Da Da" + }, + { + "artist": "Stevie Wonder", + "position": 13, + "title": "Master Blaster (Jammin')" + }, + { + "artist": "Queen", + "position": 14, + "title": "Another One Bites The Dust" + }, + { + "artist": "Diana Ross", + "position": 15, + "title": "It's My Turn" + }, + { + "artist": "Barry Manilow", + "position": 16, + "title": "I Made It Through The Rain" + }, + { + "artist": "Kool & The Gang", + "position": 17, + "title": "Celebration" + }, + { + "artist": "The Korgis", + "position": 18, + "title": "Everybody's Got To Learn Sometime" + }, + { + "artist": "Eddie Rabbitt", + "position": 19, + "title": "I Love A Rainy Night" + }, + { + "artist": "Steely Dan", + "position": 20, + "title": "Hey Nineteen" + }, + { + "artist": "Andy Gibb", + "position": 21, + "title": "Time Is Time" + }, + { + "artist": "Barbra Streisand", + "position": 22, + "title": "Woman In Love" + }, + { + "artist": "Olivia Newton-John & Cliff Richard", + "position": 23, + "title": "Suddenly" + }, + { + "artist": "Don Williams", + "position": 24, + "title": "I Believe In You" + }, + { + "artist": "Daryl Hall John Oates", + "position": 25, + "title": "You've Lost That Lovin' Feeling" + }, + { + "artist": "The Doobie Brothers", + "position": 26, + "title": "One Step Closer" + }, + { + "artist": "Devo", + "position": 27, + "title": "Whip It" + }, + { + "artist": "Delbert McClinton", + "position": 28, + "title": "Giving It Up For Your Love" + }, + { + "artist": "Tierra", + "position": 29, + "title": "Together" + }, + { + "artist": "Boz Scaggs", + "position": 30, + "title": "Miss Sun" + }, + { + "artist": "Christopher Cross", + "position": 31, + "title": "Never Be The Same" + }, + { + "artist": "Waylon", + "position": 32, + "title": "Theme From The Dukes Of Hazzard (Good Ol' Boys)" + }, + { + "artist": "Dolly Parton", + "position": 33, + "title": "9 To 5" + }, + { + "artist": "Diana Ross", + "position": 34, + "title": "I'm Coming Out" + }, + { + "artist": "Dr. Hook", + "position": 35, + "title": "Girls Can Get It" + }, + { + "artist": "ABBA", + "position": 36, + "title": "The Winner Takes It All" + }, + { + "artist": "Dan Fogelberg", + "position": 37, + "title": "Same Old Lang Syne" + }, + { + "artist": "Harry Chapin", + "position": 38, + "title": "Sequel" + }, + { + "artist": "REO Speedwagon", + "position": 39, + "title": "Keep On Loving You" + }, + { + "artist": "Fred Knoblock & Susan Anton", + "position": 40, + "title": "Killin' Time" + }, + { + "artist": "Donna Summer", + "position": 41, + "title": "Cold Love" + }, + { + "artist": "The Babys", + "position": 42, + "title": "Turn And Walk Away" + }, + { + "artist": "Michael Stanley Band", + "position": 43, + "title": "He Can't Love You" + }, + { + "artist": "Queen", + "position": 44, + "title": "Need Your Loving Tonight" + }, + { + "artist": "Bette Midler", + "position": 45, + "title": "My Mother's Eyes" + }, + { + "artist": "L.T.D.", + "position": 46, + "title": "Shine On" + }, + { + "artist": "Climax Blues Band", + "position": 47, + "title": "Gotta Have More Love" + }, + { + "artist": "Earth, Wind & Fire", + "position": 48, + "title": "You" + }, + { + "artist": "Teena Marie", + "position": 49, + "title": "I Need Your Lovin'" + }, + { + "artist": "Ronnie Milsap", + "position": 50, + "title": "Smoky Mountain Rain" + }, + { + "artist": "The Jacksons", + "position": 51, + "title": "Heartbreak Hotel" + }, + { + "artist": "Teddy Pendergrass", + "position": 52, + "title": "Love T.K.O." + }, + { + "artist": "Rockpile", + "position": 53, + "title": "Teacher Teacher" + }, + { + "artist": "The Alan Parsons Project", + "position": 54, + "title": "Games People Play" + }, + { + "artist": "Eagles", + "position": 55, + "title": "Seven Bridges Road" + }, + { + "artist": "Stevie Wonder", + "position": 56, + "title": "I Ain't Gonna Stand For It" + }, + { + "artist": "John Cougar", + "position": 57, + "title": "This Time" + }, + { + "artist": "Cliff Richard", + "position": 58, + "title": "Dreaming" + }, + { + "artist": "Randy Meisner", + "position": 59, + "title": "Deep Inside My Heart" + }, + { + "artist": "Donna Summer", + "position": 60, + "title": "The Wanderer" + }, + { + "artist": "Rita Coolidge", + "position": 61, + "title": "Fool That I Am" + }, + { + "artist": "Supertramp", + "position": 62, + "title": "Breakfast In America" + }, + { + "artist": "The Pointer Sisters", + "position": 63, + "title": "He's So Shy" + }, + { + "artist": "Blues Brothers", + "position": 64, + "title": "Who's Making Love" + }, + { + "artist": "Cliff Richard", + "position": 65, + "title": "A Little In Love" + }, + { + "artist": "Stephanie Mills", + "position": 66, + "title": "Never Knew Love Like This Before" + }, + { + "artist": "Bob Seger", + "position": 67, + "title": "The Horizontal Bop" + }, + { + "artist": "The Pointer Sisters", + "position": 68, + "title": "Could I Be Dreaming" + }, + { + "artist": "The Star Wars Intergalactic Droid Choir & Chorale", + "position": 69, + "title": "What Can You Get A Wookiee For Christmas (When He Already Owns A Comb?)" + }, + { + "artist": "Donnie Iris", + "position": 70, + "title": "Ah! Leah!" + }, + { + "artist": "AC/DC", + "position": 71, + "title": "Back In Black" + }, + { + "artist": "David Bowie", + "position": 72, + "title": "Fashion" + }, + { + "artist": "Oak", + "position": 73, + "title": "Set The Night On Fire" + }, + { + "artist": "Dionne Warwick", + "position": 74, + "title": "Easy Love" + }, + { + "artist": "The Vapors", + "position": 75, + "title": "Turning Japanese" + }, + { + "artist": "Roger Daltrey", + "position": 76, + "title": "Without Your Love" + }, + { + "artist": "Diana Ross", + "position": 77, + "title": "Upside Down" + }, + { + "artist": "The Jacksons", + "position": 78, + "title": "Lovely One" + }, + { + "artist": "Shalamar", + "position": 79, + "title": "Full Of Fire" + }, + { + "artist": "Dire Straits", + "position": 80, + "title": "Skateaway" + }, + { + "artist": "Aretha Franklin", + "position": 81, + "title": "United Together" + }, + { + "artist": "Willis The Guard & Vigorish", + "position": 82, + "title": "Merry Christmas In The NFL" + }, + { + "artist": "Outlaws", + "position": 83, + "title": "(Ghost) Riders In The Sky" + }, + { + "artist": "The Kings", + "position": 84, + "title": "Switchin' To Glide/This Beat Goes On" + }, + { + "artist": "Stacy Lattisaw", + "position": 85, + "title": "Let Me Be Your Angel" + }, + { + "artist": "Cheap Trick", + "position": 86, + "title": "Stop This Game" + }, + { + "artist": "Willie Nelson", + "position": 87, + "title": "On The Road Again" + }, + { + "artist": "J.D. Drews", + "position": 88, + "title": "Don't Want No-Body" + }, + { + "artist": "Pendulum", + "position": 89, + "title": "Gypsy Spirit" + }, + { + "artist": "Kansas", + "position": 90, + "title": "Got To Rock On" + }, + { + "artist": "The 4 Seasons", + "position": 91, + "title": "Spend The Night In Love" + }, + { + "artist": "The Manhattan Transfer", + "position": 92, + "title": "Trickle Trickle" + }, + { + "artist": "Paul Simon", + "position": 93, + "title": "One-Trick Pony" + }, + { + "artist": "The Reddings", + "position": 94, + "title": "Remote Control" + }, + { + "artist": "Pure Prairie League", + "position": 95, + "title": "I Can't Stop The Feelin'" + }, + { + "artist": "Jackie English", + "position": 96, + "title": "Once A Night" + }, + { + "artist": "Marcy Levy & Robin Gibb", + "position": 97, + "title": "Help Me!" + }, + { + "artist": "Jimmy Hall", + "position": 98, + "title": "I'm Happy That Love Has Found You" + }, + { + "artist": "Irene Cara", + "position": 99, + "title": "Out Here On My Own" + }, + { + "artist": "Carly Simon", + "position": 100, + "title": "Jesse" + } + ], + "title": "1980 - Hot 100" + }, + { + "songs": [ + { + "artist": "Rupert Holmes", + "position": 1, + "title": "Escape (The Pina Colada Song)" + }, + { + "artist": "KC And The Sunshine Band", + "position": 2, + "title": "Please Don't Go" + }, + { + "artist": "Styx", + "position": 3, + "title": "Babe" + }, + { + "artist": "Stevie Wonder", + "position": 4, + "title": "Send One Your Love" + }, + { + "artist": "Commodores", + "position": 5, + "title": "Still" + }, + { + "artist": "Captain & Tennille", + "position": 6, + "title": "Do That To Me One More Time" + }, + { + "artist": "J.D.Souther", + "position": 7, + "title": "You're Only Lonely" + }, + { + "artist": "Barbra Streisand/Donna Summer", + "position": 8, + "title": "No More Tears (Enough Is Enough)" + }, + { + "artist": "Kool & The Gang", + "position": 9, + "title": "Ladies Night" + }, + { + "artist": "Supertramp", + "position": 10, + "title": "Take The Long Way Home" + }, + { + "artist": "Michael Jackson", + "position": 11, + "title": "Rock With You" + }, + { + "artist": "Little River Band", + "position": 12, + "title": "Cool Change" + }, + { + "artist": "Cliff Richard", + "position": 13, + "title": "We Don't Talk Anymore" + }, + { + "artist": "Foreigner", + "position": 14, + "title": "Head Games" + }, + { + "artist": "Smokey Robinson", + "position": 15, + "title": "Cruisin'" + }, + { + "artist": "Dr. Hook", + "position": 16, + "title": "Better Love Next Time" + }, + { + "artist": "Eagles", + "position": 17, + "title": "The Long Run" + }, + { + "artist": "Jefferson Starship", + "position": 18, + "title": "Jane" + }, + { + "artist": "Pablo Cruise", + "position": 19, + "title": "I Want You Tonight" + }, + { + "artist": "Eagles", + "position": 20, + "title": "Heartache Tonight" + }, + { + "artist": "Kenny Loggins", + "position": 21, + "title": "This Is It" + }, + { + "artist": "Kenny Rogers", + "position": 22, + "title": "Coward Of The County" + }, + { + "artist": "Prince", + "position": 23, + "title": "I Wanna Be Your Lover" + }, + { + "artist": "Crystal Gayle", + "position": 24, + "title": "Half The Way" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 25, + "title": "Don't Do Me Like That" + }, + { + "artist": "Daryl Hall John Oates", + "position": 26, + "title": "Wait For Me" + }, + { + "artist": "The Alan Parsons Project", + "position": 27, + "title": "Damned If I Do" + }, + { + "artist": "Isaac Hayes", + "position": 28, + "title": "Don't Let Go" + }, + { + "artist": "Barry Manilow", + "position": 29, + "title": "Ships" + }, + { + "artist": "Foghat", + "position": 30, + "title": "Third Time Lucky (First Time I Was A Fool)" + }, + { + "artist": "ABBA", + "position": 31, + "title": "Chiquitita" + }, + { + "artist": "M", + "position": 32, + "title": "Pop Muzik" + }, + { + "artist": "John Cougar", + "position": 33, + "title": "I Need A Lover" + }, + { + "artist": "Dionne Warwick", + "position": 34, + "title": "Deja Vu" + }, + { + "artist": "Fleetwood Mac", + "position": 35, + "title": "Sara" + }, + { + "artist": "Teri DeSario With K.C.", + "position": 36, + "title": "Yes, I'm Ready" + }, + { + "artist": "Anne Murray", + "position": 37, + "title": "Broken Hearted Me" + }, + { + "artist": "Blackfoot", + "position": 38, + "title": "Train, Train" + }, + { + "artist": "Richie Furay", + "position": 39, + "title": "I Still Have Dreams" + }, + { + "artist": "Herb Alpert", + "position": 40, + "title": "Rotation" + }, + { + "artist": "Yvonne Elliman", + "position": 41, + "title": "Love Pains" + }, + { + "artist": "The O'Jays", + "position": 42, + "title": "Forever Mine" + }, + { + "artist": "Sugarhill Gang", + "position": 43, + "title": "Rapper's Delight" + }, + { + "artist": "Rita Coolidge", + "position": 44, + "title": "I'd Rather Leave While I'm In Love" + }, + { + "artist": "Tom Johnston", + "position": 45, + "title": "Savannah Nights" + }, + { + "artist": "The Buggles", + "position": 46, + "title": "Video Killed The Radio Star" + }, + { + "artist": "Kermit (Jim Henson)", + "position": 47, + "title": "Rainbow Connection" + }, + { + "artist": "Steve Forbert", + "position": 48, + "title": "Romeo's Tune" + }, + { + "artist": "Mistress", + "position": 49, + "title": "Mistrusted Love" + }, + { + "artist": "Donna Summer", + "position": 50, + "title": "Dim All The Lights" + }, + { + "artist": "Suzi Quatro", + "position": 51, + "title": "She's In Love With You" + }, + { + "artist": "Fleetwood Mac", + "position": 52, + "title": "TUSK" + }, + { + "artist": "Santana", + "position": 53, + "title": "You Know That I Love You" + }, + { + "artist": "Rufus & Chaka", + "position": 54, + "title": "Do You Love What You Feel" + }, + { + "artist": "Robert John", + "position": 55, + "title": "Lonely Eyes" + }, + { + "artist": "Cheap Trick", + "position": 56, + "title": "Voices" + }, + { + "artist": "Rainbow", + "position": 57, + "title": "Since You Been Gone" + }, + { + "artist": "Queen", + "position": 58, + "title": "Crazy Little Thing Called Love" + }, + { + "artist": "John Stewart", + "position": 59, + "title": "Lost Her In The Sun" + }, + { + "artist": "The Flying Lizards", + "position": 60, + "title": "Money" + }, + { + "artist": "Bar-Kays", + "position": 61, + "title": "Move Your Boogie Body" + }, + { + "artist": "Joyce Cobb", + "position": 62, + "title": "Dig The Gold" + }, + { + "artist": "Electric Light Orchestra", + "position": 63, + "title": "Last Train To London" + }, + { + "artist": "Led Zeppelin", + "position": 64, + "title": "Fool In The Rain" + }, + { + "artist": "Styx", + "position": 65, + "title": "Why Me" + }, + { + "artist": "Neil Diamond", + "position": 66, + "title": "September Morn'" + }, + { + "artist": "Anne Murray", + "position": 67, + "title": "Daydream Believer" + }, + { + "artist": "Commodores", + "position": 68, + "title": "Wonderland" + }, + { + "artist": "The Inmates", + "position": 69, + "title": "Dirty Water" + }, + { + "artist": "The Dirt Band", + "position": 70, + "title": "An American Dream" + }, + { + "artist": "Dann Rogers", + "position": 71, + "title": "Looks Like Love Again" + }, + { + "artist": "The Spinners", + "position": 72, + "title": "Working My Way Back To You/Forgive Me, Girl" + }, + { + "artist": "Pleasure", + "position": 73, + "title": "Glide" + }, + { + "artist": "The Police", + "position": 74, + "title": "Message In A Bottle" + }, + { + "artist": "Bonnie Raitt", + "position": 75, + "title": "You're Gonna Get What's Coming" + }, + { + "artist": "Pat Benatar", + "position": 76, + "title": "Heartbreaker" + }, + { + "artist": "Dan Fogelberg", + "position": 77, + "title": "Longer" + }, + { + "artist": "Barry Manilow", + "position": 78, + "title": "When I Wanted You" + }, + { + "artist": "Peter Brown", + "position": 79, + "title": "Stargazer" + }, + { + "artist": "Leif Garrett", + "position": 80, + "title": "Memorize Your Number" + }, + { + "artist": "Earth, Wind & Fire", + "position": 81, + "title": "Star" + }, + { + "artist": "Robert Palmer", + "position": 82, + "title": "Can We Still Be Friends" + }, + { + "artist": "Shalamar", + "position": 83, + "title": "The Second Time Around" + }, + { + "artist": "Rod Stewart", + "position": 84, + "title": "I Don't Want To Talk About It" + }, + { + "artist": "Toto", + "position": 85, + "title": "99" + }, + { + "artist": "Bonnie Pointer", + "position": 86, + "title": "I Can't Help Myself (Sugar Pie, Honey Bunch)" + }, + { + "artist": "Jennifer Warnes", + "position": 87, + "title": "Don't Make Me Over" + }, + { + "artist": "Dollar", + "position": 88, + "title": "Shooting Star" + }, + { + "artist": "Jimmy Buffett", + "position": 89, + "title": "Volcano" + }, + { + "artist": "Cugini", + "position": 90, + "title": "Let Me Sleep Alone" + }, + { + "artist": "Switch", + "position": 91, + "title": "I Call Your Name" + }, + { + "artist": "Billy Preston & Syreeta", + "position": 92, + "title": "With You I'm Born Again" + }, + { + "artist": "Lobo", + "position": 93, + "title": "Holdin' On For Dear Love" + }, + { + "artist": "Kenny Rogers", + "position": 94, + "title": "You Decorated My Life" + }, + { + "artist": "Chris Thompson & Night", + "position": 95, + "title": "If You Remember Me" + }, + { + "artist": "Herb Alpert", + "position": 96, + "title": "Rise" + }, + { + "artist": "Blondie", + "position": 97, + "title": "Dreaming" + }, + { + "artist": "Village People", + "position": 98, + "title": "Ready For The 80's" + }, + { + "artist": "Frank Mills", + "position": 99, + "title": "Peter Piper" + }, + { + "artist": "Lauren Wood", + "position": 100, + "title": "Please Don't Leave" + } + ], + "title": "1979 - Hot 100" + }, + { + "songs": [ + { + "artist": "Chic", + "position": 1, + "title": "Le Freak" + }, + { + "artist": "Bee Gees", + "position": 2, + "title": "Too Much Heaven" + }, + { + "artist": "Barbra Streisand & Neil Diamond", + "position": 3, + "title": "You Don't Bring Me Flowers" + }, + { + "artist": "Billy Joel", + "position": 4, + "title": "My Life" + }, + { + "artist": "Alicia Bridges", + "position": 5, + "title": "I Love The Nightlife (Disco 'Round)" + }, + { + "artist": "Gino Vannelli", + "position": 6, + "title": "I Just Wanna Stop" + }, + { + "artist": "Dr. Hook", + "position": 7, + "title": "Sharing The Night Together" + }, + { + "artist": "Village People", + "position": 8, + "title": "Y.M.C.A." + }, + { + "artist": "Andy Gibb", + "position": 9, + "title": "(Our Love) Don't Throw It All Away" + }, + { + "artist": "Toto", + "position": 10, + "title": "Hold The Line" + }, + { + "artist": "Linda Ronstadt", + "position": 11, + "title": "Ooh Baby Baby" + }, + { + "artist": "Alice Cooper", + "position": 12, + "title": "How You Gonna See Me Now" + }, + { + "artist": "Eric Clapton And His Band", + "position": 13, + "title": "Promises" + }, + { + "artist": "Al Stewart", + "position": 14, + "title": "Time Passages" + }, + { + "artist": "Donna Summer", + "position": 15, + "title": "MacArthur Park" + }, + { + "artist": "Firefall", + "position": 16, + "title": "Strange Way" + }, + { + "artist": "Bob Seger & The Silver Bullet Band", + "position": 17, + "title": "We've Got Tonight" + }, + { + "artist": "Earth, Wind & Fire", + "position": 18, + "title": "September" + }, + { + "artist": "Olivia Newton-John", + "position": 19, + "title": "A Little More Love" + }, + { + "artist": "Eagles", + "position": 20, + "title": "Please Come Home For Christmas" + }, + { + "artist": "Chaka Khan", + "position": 21, + "title": "I'm Every Woman" + }, + { + "artist": "Hot Chocolate", + "position": 22, + "title": "Every 1's A Winner" + }, + { + "artist": "Ace Frehley", + "position": 23, + "title": "New York Groove" + }, + { + "artist": "Paul Davis", + "position": 24, + "title": "Sweet Life" + }, + { + "artist": "Queen", + "position": 25, + "title": "Bicycle Race/Fat Bottomed Girls" + }, + { + "artist": "Ian Matthews", + "position": 26, + "title": "Shake It" + }, + { + "artist": "Nicolette Larson", + "position": 27, + "title": "Lotta Love" + }, + { + "artist": "The Pointer Sisters", + "position": 28, + "title": "Fire" + }, + { + "artist": "Ambrosia", + "position": 29, + "title": "How Much I Feel" + }, + { + "artist": "Leif Garrett", + "position": 30, + "title": "I Was Made For Dancin'" + }, + { + "artist": "Heart", + "position": 31, + "title": "Straight On" + }, + { + "artist": "Chanson", + "position": 32, + "title": "Don't Hold Back" + }, + { + "artist": "Dan Hartman", + "position": 33, + "title": "Instant Replay" + }, + { + "artist": "Livingston Taylor", + "position": 34, + "title": "I Will Be In Love With You" + }, + { + "artist": "The Cars", + "position": 35, + "title": "My Best Friend's Girl" + }, + { + "artist": "Elton John", + "position": 36, + "title": "Part-Time Love" + }, + { + "artist": "Boston", + "position": 37, + "title": "A Man I'll Never Be" + }, + { + "artist": "Kenny Rogers", + "position": 38, + "title": "The Gambler" + }, + { + "artist": "Talking Heads", + "position": 39, + "title": "Take Me To The River" + }, + { + "artist": "Rod Stewart", + "position": 40, + "title": "Da Ya Think I'm Sexy?" + }, + { + "artist": "Melissa Manchester", + "position": 41, + "title": "Don't Cry Out Loud" + }, + { + "artist": "Rick James", + "position": 42, + "title": "Mary Jane" + }, + { + "artist": "Gerry Rafferty", + "position": 43, + "title": "Home And Dry" + }, + { + "artist": "Cheryl Lynn", + "position": 44, + "title": "Got To Be Real" + }, + { + "artist": "The J. Geils Band", + "position": 45, + "title": "One Last Kiss" + }, + { + "artist": "Paul Stanley", + "position": 46, + "title": "Hold Me, Touch Me" + }, + { + "artist": "Exile", + "position": 47, + "title": "You Thrill Me" + }, + { + "artist": "Cooper Brothers", + "position": 48, + "title": "The Dream Never Dies" + }, + { + "artist": "Meat Loaf", + "position": 49, + "title": "You Took The Words Right Out Of My Mouth" + }, + { + "artist": "Gene Simmons", + "position": 50, + "title": "Radioactive" + }, + { + "artist": "Foreigner", + "position": 51, + "title": "Double Vision" + }, + { + "artist": "Dan Fogelberg/Tim Weisberg", + "position": 52, + "title": "The Power Of Gold" + }, + { + "artist": "Rose Royce", + "position": 53, + "title": "Love Don't Live Here Anymore" + }, + { + "artist": "Blues Brothers", + "position": 54, + "title": "Soul Man" + }, + { + "artist": "The Rolling Stones", + "position": 55, + "title": "Shattered" + }, + { + "artist": "Dolly Parton", + "position": 56, + "title": "Baby I'm Burnin'" + }, + { + "artist": "Barry Manilow", + "position": 57, + "title": "Somewhere In The Night" + }, + { + "artist": "Musique", + "position": 58, + "title": "In The Bush" + }, + { + "artist": "Captain & Tennille", + "position": 59, + "title": "You Need A Woman Tonight" + }, + { + "artist": "Barry White", + "position": 60, + "title": "Your Sweetness Is My Weakness" + }, + { + "artist": "Chicago", + "position": 61, + "title": "Alive Again" + }, + { + "artist": "Kenny Loggins", + "position": 62, + "title": "Easy Driver" + }, + { + "artist": "Fotomaker", + "position": 63, + "title": "Miles Away" + }, + { + "artist": "Nigel Olsson", + "position": 64, + "title": "Dancin' Shoes" + }, + { + "artist": "Daryl Hall John Oates", + "position": 65, + "title": "I Don't Wanna Lose You" + }, + { + "artist": "Jefferson Starship", + "position": 66, + "title": "Light The Sky On Fire" + }, + { + "artist": "Don Ray", + "position": 67, + "title": "Got To Have Loving" + }, + { + "artist": "Carpenters", + "position": 68, + "title": "I Believe You" + }, + { + "artist": "Santana", + "position": 69, + "title": "Well All Right" + }, + { + "artist": "John Paul Young", + "position": 70, + "title": "Lost In Your Love" + }, + { + "artist": "Peaches & Herb", + "position": 71, + "title": "Shake Your Groove Thing" + }, + { + "artist": "Player", + "position": 72, + "title": "Silver Lining" + }, + { + "artist": "Eddie Money", + "position": 73, + "title": "You've Really Got A Hold On Me" + }, + { + "artist": "Lindisfarne", + "position": 74, + "title": "Run For Home" + }, + { + "artist": "Foreigner", + "position": 75, + "title": "Blue Morning, Blue Day" + }, + { + "artist": "Gloria Gaynor", + "position": 76, + "title": "I Will Survive" + }, + { + "artist": "Chicago", + "position": 77, + "title": "No Tell Lover" + }, + { + "artist": "Marshall Hain", + "position": 78, + "title": "Dancing In The City" + }, + { + "artist": "Switch", + "position": 79, + "title": "There'll Never Be" + }, + { + "artist": "Faith Band", + "position": 80, + "title": "Dancin' Shoes" + }, + { + "artist": "Justin Hayward", + "position": 81, + "title": "Forever Autumn" + }, + { + "artist": "Bonnie Pointer", + "position": 82, + "title": "Free Me From My Freedom/Tie Me To A Tree (Handcuff Me)" + }, + { + "artist": "Bobby Caldwell", + "position": 83, + "title": "What You Won't Do For Love" + }, + { + "artist": "KC And The Sunshine Band", + "position": 84, + "title": "Who Do Ya Love" + }, + { + "artist": "Engelbert Humperdinck", + "position": 85, + "title": "This Moment In Time" + }, + { + "artist": "Dobie Gray", + "position": 86, + "title": "You Can Do It" + }, + { + "artist": "Eric Carmen", + "position": 87, + "title": "Change Of Heart" + }, + { + "artist": "Stephen Bishop", + "position": 88, + "title": "Animal House" + }, + { + "artist": "Yvonne Elliman", + "position": 89, + "title": "Moment By Moment" + }, + { + "artist": "Boney M", + "position": 90, + "title": "Mary's Boy Child/Oh My Lord" + }, + { + "artist": "The Blend", + "position": 91, + "title": "I'm Gonna Make You Love Me" + }, + { + "artist": "John Davis And The Monster Orchestra", + "position": 92, + "title": "Ain't That Enough For You" + }, + { + "artist": "The Raes", + "position": 93, + "title": "A Little Lovin' (Keeps The Doctor Away)" + }, + { + "artist": "Glen Campbell", + "position": 94, + "title": "Can You Fool" + }, + { + "artist": "Pablo Cruise", + "position": 95, + "title": "Don't Want To Live Without It" + }, + { + "artist": "Anne Murray", + "position": 96, + "title": "You Needed Me" + }, + { + "artist": "Captain & Tennille", + "position": 97, + "title": "You Never Done It Like That" + }, + { + "artist": "Barry Manilow", + "position": 98, + "title": "Ready To Take A Chance Again" + }, + { + "artist": "Nick Gilder", + "position": 99, + "title": "Hot Child In The City" + }, + { + "artist": "Jimmy Buffett", + "position": 100, + "title": "Ma??�ana" + } + ], + "title": "1978 - Hot 100" + }, + { + "songs": [ + { + "artist": "Bee Gees", + "position": 1, + "title": "How Deep Is Your Love" + }, + { + "artist": "Debby Boone", + "position": 2, + "title": "You Light Up My Life" + }, + { + "artist": "Linda Ronstadt", + "position": 3, + "title": "Blue Bayou" + }, + { + "artist": "LTD", + "position": 4, + "title": "(Every Time I Turn Around) Back In Love Again" + }, + { + "artist": "Linda Ronstadt", + "position": 5, + "title": "It's So Easy" + }, + { + "artist": "Player", + "position": 6, + "title": "Baby Come Back" + }, + { + "artist": "Crystal Gayle", + "position": 7, + "title": "Don't It Make My Brown Eyes Blue" + }, + { + "artist": "Dolly Parton", + "position": 8, + "title": "Here You Come Again" + }, + { + "artist": "Bob Welch", + "position": 9, + "title": "Sentimental Lady" + }, + { + "artist": "Paul Simon", + "position": 10, + "title": "Slip Slidin' Away" + }, + { + "artist": "Rod Stewart", + "position": 11, + "title": "You're In My Heart (The Final Acclaim)" + }, + { + "artist": "High Inergy", + "position": 12, + "title": "You Can't Turn Me Off (In The Middle Of Turning Me On)" + }, + { + "artist": "The Babys", + "position": 13, + "title": "Isn't It Time" + }, + { + "artist": "Styx", + "position": 14, + "title": "Come Sail Away" + }, + { + "artist": "Shaun Cassidy", + "position": 15, + "title": "Hey Deanie" + }, + { + "artist": "Rita Coolidge", + "position": 16, + "title": "We're All Alone" + }, + { + "artist": "The Steve Miller Band", + "position": 17, + "title": "Swingtown" + }, + { + "artist": "Queen", + "position": 18, + "title": "We Will Rock You/We Are The Champions" + }, + { + "artist": "Leif Garrett", + "position": 19, + "title": "Runaround Sue" + }, + { + "artist": "Randy Newman", + "position": 20, + "title": "Short People" + }, + { + "artist": "Fleetwood Mac", + "position": 21, + "title": "You Make Loving Fun" + }, + { + "artist": "Elvis Presley", + "position": 22, + "title": "My Way" + }, + { + "artist": "Paul Davis", + "position": 23, + "title": "I Go Crazy" + }, + { + "artist": "Earth, Wind & Fire", + "position": 24, + "title": "Serpentine Fire" + }, + { + "artist": "Chicago", + "position": 25, + "title": "Baby, What A Big Surprise" + }, + { + "artist": "Bay City Rollers", + "position": 26, + "title": "The Way I Feel Tonight" + }, + { + "artist": "Electric Light Orchestra", + "position": 27, + "title": "Turn To Stone" + }, + { + "artist": "Billy Joel", + "position": 28, + "title": "Just The Way You Are" + }, + { + "artist": "Diana Ross", + "position": 29, + "title": "Gettin' Ready For Love" + }, + { + "artist": "Chic", + "position": 30, + "title": "Dance, Dance, Dance (Yowsah, Yowsah, Yowsah)" + }, + { + "artist": "Paul Nicholas", + "position": 31, + "title": "Heaven On The 7th Floor" + }, + { + "artist": "Andy Gibb", + "position": 32, + "title": "(Love Is) Thicker Than Water" + }, + { + "artist": "Santa Esmeralda Starring Leroy Gomez", + "position": 33, + "title": "Don't Let Me Be Misunderstood" + }, + { + "artist": "Kansas", + "position": 34, + "title": "Point Of Know Return" + }, + { + "artist": "Neil Diamond", + "position": 35, + "title": "Desir??�e" + }, + { + "artist": "Odyssey", + "position": 36, + "title": "Native New Yorker" + }, + { + "artist": "Wings", + "position": 37, + "title": "Girls' School" + }, + { + "artist": "James Taylor", + "position": 38, + "title": "Your Smiling Face" + }, + { + "artist": "Bee Gees", + "position": 39, + "title": "Stayin' Alive" + }, + { + "artist": "Dan Hill", + "position": 40, + "title": "Sometimes When We Touch" + }, + { + "artist": "Samantha Sang", + "position": 41, + "title": "Emotion" + }, + { + "artist": "Cheech & Chong", + "position": 42, + "title": "Bloat On Featuring the Bloaters" + }, + { + "artist": "Donny & Marie Osmond", + "position": 43, + "title": "(You're My) Soul And Inspiration" + }, + { + "artist": "Steely Dan", + "position": 44, + "title": "Peg" + }, + { + "artist": "Heatwave", + "position": 45, + "title": "Boogie Nights" + }, + { + "artist": "Bill Withers", + "position": 46, + "title": "Lovely Day" + }, + { + "artist": "Peter Frampton", + "position": 47, + "title": "Tried To Love" + }, + { + "artist": "Millie Jackson", + "position": 48, + "title": "If You're Not Back In Love By Monday" + }, + { + "artist": "Stevie Wonder", + "position": 49, + "title": "As" + }, + { + "artist": "KC And The Sunshine Band", + "position": 50, + "title": "Wrap Your Arms Around Me" + }, + { + "artist": "The Emotions", + "position": 51, + "title": "Don't Ask My Neighbors" + }, + { + "artist": "Lynyrd Skynyrd", + "position": 52, + "title": "What's Your Name" + }, + { + "artist": "John Denver", + "position": 53, + "title": "How Can I Leave You Again" + }, + { + "artist": "Santana", + "position": 54, + "title": "She's Not There" + }, + { + "artist": "Wet Willie", + "position": 55, + "title": "Street Corner Serenade" + }, + { + "artist": "Commodores", + "position": 56, + "title": "Too Hot Ta Trot" + }, + { + "artist": "Barry White", + "position": 57, + "title": "It's Ecstasy When You Lay Down Next To Me" + }, + { + "artist": "Carpenters", + "position": 58, + "title": "Calling Occupants Of Interplanetary Craft" + }, + { + "artist": "Foreigner", + "position": 59, + "title": "Long, Long Way From Home" + }, + { + "artist": "England Dan & John Ford Coley", + "position": 60, + "title": "Gone Too Far" + }, + { + "artist": "Dave Mason", + "position": 61, + "title": "We Just Disagree" + }, + { + "artist": "Carly Simon", + "position": 62, + "title": "Nobody Does It Better" + }, + { + "artist": "Judy Collins", + "position": 63, + "title": "Send In The Clowns" + }, + { + "artist": "Al Martino", + "position": 64, + "title": "The Next Hundred Years" + }, + { + "artist": "Donna Summer", + "position": 65, + "title": "I Feel Love" + }, + { + "artist": "Leo Sayer", + "position": 66, + "title": "Easy To Love" + }, + { + "artist": "Sammy Hagar", + "position": 67, + "title": "You Make Me Crazy" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 68, + "title": "Breakdown" + }, + { + "artist": "Olivia Newton-John", + "position": 69, + "title": "I Honestly Love You" + }, + { + "artist": "Ramones", + "position": 70, + "title": "Rockaway Beach" + }, + { + "artist": "LeBlanc & Carr", + "position": 71, + "title": "Falling" + }, + { + "artist": "The Sylvers", + "position": 72, + "title": "Any Way You Want Me" + }, + { + "artist": "Kenny Rogers", + "position": 73, + "title": "Sweet Music Man" + }, + { + "artist": "Marilyn Scott", + "position": 74, + "title": "God Only Knows" + }, + { + "artist": "Con Funk Shun", + "position": 75, + "title": "Ffun" + }, + { + "artist": "Cat Stevens", + "position": 76, + "title": "Was Dog A Doughnut" + }, + { + "artist": "Donna Summer", + "position": 77, + "title": "I Love You" + }, + { + "artist": "Jay Ferguson", + "position": 78, + "title": "Thunder Island" + }, + { + "artist": "Stillwater", + "position": 79, + "title": "Mind Bender" + }, + { + "artist": "Addrisi Brothers", + "position": 80, + "title": "Never My Love" + }, + { + "artist": "John Williams", + "position": 81, + "title": "Theme From Close Encounters Of The Third Kind" + }, + { + "artist": "ABBA", + "position": 82, + "title": "The Name Of The Game" + }, + { + "artist": "Kellee Patterson", + "position": 83, + "title": "If It Don't Fit, Don't Force It" + }, + { + "artist": "Little River Band", + "position": 84, + "title": "Happy Anniversary" + }, + { + "artist": "Johnny Rivers", + "position": 85, + "title": "Curious Mind (Um, Um, Um, Um, Um, Um)" + }, + { + "artist": "Rose Royce", + "position": 86, + "title": "Ooh Boy" + }, + { + "artist": "Ronnie Milsap", + "position": 87, + "title": "What A Difference You've Made In My Life" + }, + { + "artist": "David Gates", + "position": 88, + "title": "Goodbye Girl" + }, + { + "artist": "Le Pamplemousse", + "position": 89, + "title": "Le Spank" + }, + { + "artist": "Eric Carmen", + "position": 90, + "title": "Boats Against The Current" + }, + { + "artist": "El Coco", + "position": 91, + "title": "Cocomotion" + }, + { + "artist": "Bobby Arvon", + "position": 92, + "title": "Until Now" + }, + { + "artist": "The Alan Parsons Project", + "position": 93, + "title": "Don't Let It Show" + }, + { + "artist": "Brick", + "position": 94, + "title": "Dusic" + }, + { + "artist": "Shaun Cassidy", + "position": 95, + "title": "That's Rock 'N' Roll" + }, + { + "artist": "Jackie DeShannon", + "position": 96, + "title": "Don't Let The Flame Burn Out" + }, + { + "artist": "Firefall", + "position": 97, + "title": "Just Remember I Love You" + }, + { + "artist": "Aerosmith", + "position": 98, + "title": "Draw The Line" + }, + { + "artist": "Tavares", + "position": 99, + "title": "More Than A Woman" + }, + { + "artist": "Little River Band", + "position": 100, + "title": "Help Is On Its Way" + } + ], + "title": "1977 - Hot 100" + }, + { + "songs": [ + { + "artist": "Rod Stewart", + "position": 1, + "title": "Tonight's The Night (Gonna Be Alright)" + }, + { + "artist": "Marilyn McCoo & Billy Davis, Jr.", + "position": 2, + "title": "You Don't Have To Be A Star (To Be In My Show)" + }, + { + "artist": "The Spinners", + "position": 3, + "title": "The Rubberband Man" + }, + { + "artist": "Leo Sayer", + "position": 4, + "title": "You Make Me Feel Like Dancing" + }, + { + "artist": "Boston", + "position": 5, + "title": "More Than A Feeling" + }, + { + "artist": "Elton John", + "position": 6, + "title": "Sorry Seems To Be The Hardest Word" + }, + { + "artist": "Stevie Wonder", + "position": 7, + "title": "I Wish" + }, + { + "artist": "Brick", + "position": 8, + "title": "Dazz" + }, + { + "artist": "Rose Royce", + "position": 9, + "title": "Car Wash" + }, + { + "artist": "Engelbert Humperdinck", + "position": 10, + "title": "After The Lovin'" + }, + { + "artist": "Burton Cummings", + "position": 11, + "title": "Stand Tall" + }, + { + "artist": "The Sylvers", + "position": 12, + "title": "Hot Line" + }, + { + "artist": "Alice Cooper", + "position": 13, + "title": "I Never Cry" + }, + { + "artist": "Yvonne Elliman", + "position": 14, + "title": "Love Me" + }, + { + "artist": "Electric Light Orchestra", + "position": 15, + "title": "Livin' Thing" + }, + { + "artist": "Captain & Tennille", + "position": 16, + "title": "Muskrat Love" + }, + { + "artist": "Barry DeVorzon and Perry Botkin, Jr.", + "position": 17, + "title": "Nadia's Theme (The Young And The Restless)" + }, + { + "artist": "England Dan & John Ford Coley", + "position": 18, + "title": "Nights Are Forever Without You" + }, + { + "artist": "Queen", + "position": 19, + "title": "Somebody To Love" + }, + { + "artist": "Eagles", + "position": 20, + "title": "New Kid In Town" + }, + { + "artist": "The Jacksons", + "position": 21, + "title": "Enjoy Yourself" + }, + { + "artist": "Bread", + "position": 22, + "title": "Lost Without Your Love" + }, + { + "artist": "Firefall", + "position": 23, + "title": "You Are The Woman" + }, + { + "artist": "David Dundas", + "position": 24, + "title": "Jeans On" + }, + { + "artist": "The Bar-Kays", + "position": 25, + "title": "Shake Your Rump To The Funk" + }, + { + "artist": "Earth, Wind & Fire", + "position": 26, + "title": "Saturday Nite" + }, + { + "artist": "George Harrison", + "position": 27, + "title": "This Song" + }, + { + "artist": "Aerosmith", + "position": 28, + "title": "Walk This Way" + }, + { + "artist": "Mary Macgregor", + "position": 29, + "title": "Torn Between Two Lovers" + }, + { + "artist": "Kenny Nolan", + "position": 30, + "title": "I Like Dreamin'" + }, + { + "artist": "Bee Gees", + "position": 31, + "title": "Love So Right" + }, + { + "artist": "Manfred Mann's Earth Band", + "position": 32, + "title": "Blinded By The Light" + }, + { + "artist": "Dr. Buzzard's Original Savannah Band", + "position": 33, + "title": "Whispering/Cherchez La Femme/Se Si Bon" + }, + { + "artist": "L.T.D.", + "position": 34, + "title": "Love Ballad" + }, + { + "artist": "Barry Manilow", + "position": 35, + "title": "Weekend In New England" + }, + { + "artist": "Styx", + "position": 36, + "title": "Mademoiselle" + }, + { + "artist": "Donny & Marie Osmond", + "position": 37, + "title": "Ain't Nothing Like The Real Thing" + }, + { + "artist": "Al Green", + "position": 38, + "title": "Keep Me Cryin'" + }, + { + "artist": "Daryl Hall John Oates", + "position": 39, + "title": "Do What You Want, Be What You Are" + }, + { + "artist": "Foghat", + "position": 40, + "title": "Drivin' Wheel" + }, + { + "artist": "Kiss", + "position": 41, + "title": "Beth/Detroit Rock City" + }, + { + "artist": "Boz Scaggs", + "position": 42, + "title": "What Can I Say" + }, + { + "artist": "Lynyrd Skynyrd", + "position": 43, + "title": "Free Bird" + }, + { + "artist": "The Walter Murphy Band", + "position": 44, + "title": "Flight '76" + }, + { + "artist": "Eric Clapton", + "position": 45, + "title": "Hello Old Friend" + }, + { + "artist": "Linda Ronstadt", + "position": 46, + "title": "Someone To Lay Down Beside Me" + }, + { + "artist": "KC And The Sunshine Band", + "position": 47, + "title": "I Like To Do It" + }, + { + "artist": "Rick Dees & His Cast Of Idiots", + "position": 48, + "title": "Disco Duck (Part I)" + }, + { + "artist": "The Doobie Brothers", + "position": 49, + "title": "It Keeps You Runnin'" + }, + { + "artist": "Johnny Bristol", + "position": 50, + "title": "Do It To My Mind" + }, + { + "artist": "Barbra Streisand", + "position": 51, + "title": "Evergreen (Love Theme From A Star Is Born)" + }, + { + "artist": "Steve Miller", + "position": 52, + "title": "Fly Like An Eagle" + }, + { + "artist": "Smokie", + "position": 53, + "title": "Living Next Door To Alice" + }, + { + "artist": "Dickey Lee", + "position": 54, + "title": "9,999,999 Tears" + }, + { + "artist": "Dr. Hook", + "position": 55, + "title": "If Not You" + }, + { + "artist": "Bay City Rollers", + "position": 56, + "title": "Yesterday's Hero" + }, + { + "artist": "Commodores", + "position": 57, + "title": "Just To Be Close To You" + }, + { + "artist": "Tavares", + "position": 58, + "title": "Don't Take Away The Music" + }, + { + "artist": "Bob Seger", + "position": 59, + "title": "Night Moves" + }, + { + "artist": "Gene Cotton", + "position": 60, + "title": "You've Got Me Runnin'" + }, + { + "artist": "Mary Kay Place As Loretta Haggers", + "position": 61, + "title": "Baby Boy" + }, + { + "artist": "Kiss", + "position": 62, + "title": "Hard Luck Woman" + }, + { + "artist": "Funky Kings", + "position": 63, + "title": "Slow Dancing" + }, + { + "artist": "Jefferson Starship", + "position": 64, + "title": "St. Charles" + }, + { + "artist": "Robert Palmer", + "position": 65, + "title": "Man Smart, Woman Smarter" + }, + { + "artist": "ABBA", + "position": 66, + "title": "Dancing Queen" + }, + { + "artist": "Stephen Bishop", + "position": 67, + "title": "Save It For A Rainy Day" + }, + { + "artist": "Gordon Lightfoot", + "position": 68, + "title": "The Wreck Of The Edmund Fitzgerald" + }, + { + "artist": "Peter Frampton", + "position": 69, + "title": "Do You Feel Like We Do" + }, + { + "artist": "Donna Summer", + "position": 70, + "title": "Spring Affair/Winter Melody" + }, + { + "artist": "The Beatles", + "position": 71, + "title": "Ob-la-di, Ob-la-da" + }, + { + "artist": "Heart", + "position": 72, + "title": "Dreamboat Annie" + }, + { + "artist": "Starbuck", + "position": 73, + "title": "Lucky Man" + }, + { + "artist": "Deniece Williams", + "position": 74, + "title": "Free" + }, + { + "artist": "Thelma Houston", + "position": 75, + "title": "Don't Leave Me This Way" + }, + { + "artist": "Paul Anka", + "position": 76, + "title": "Happier" + }, + { + "artist": "Kool & The Gang", + "position": 77, + "title": "Open Sesame - Part 1" + }, + { + "artist": "Olivia Newton-John", + "position": 78, + "title": "Every Face Tells A Story" + }, + { + "artist": "John Denver", + "position": 79, + "title": "Baby, You Look Good To Me Tonight" + }, + { + "artist": "Cliff Richard", + "position": 80, + "title": "I Can't Ask For Anymore Than You" + }, + { + "artist": "Chicago", + "position": 81, + "title": "If You Leave Me Now" + }, + { + "artist": "Elvis Presley", + "position": 82, + "title": "Moody Blue/she Thinks I Still Care" + }, + { + "artist": "Robin Trower", + "position": 83, + "title": "Caledonia" + }, + { + "artist": "Al Stewart", + "position": 84, + "title": "Year Of The Cat" + }, + { + "artist": "The Supremes", + "position": 85, + "title": "You're My Driving Wheel" + }, + { + "artist": "Bryan Ferry", + "position": 86, + "title": "Heart On My Sleeve" + }, + { + "artist": "Kansas", + "position": 87, + "title": "Carry On Wayward Son" + }, + { + "artist": "Arthur Prysock", + "position": 88, + "title": "When Love Is New" + }, + { + "artist": "Rod Hart", + "position": 89, + "title": "C.b. Savage" + }, + { + "artist": "Brass Construction", + "position": 90, + "title": "Ha Cha Cha (funktion)" + }, + { + "artist": "David Laflamme", + "position": 91, + "title": "White Bird" + }, + { + "artist": "Little River Band", + "position": 92, + "title": "It's A Long Way There" + }, + { + "artist": "L.A. Jets", + "position": 93, + "title": "Prisoner (Captured By Your Eyes)" + }, + { + "artist": "Bumble Bee Unlimited", + "position": 94, + "title": "Love Bug" + }, + { + "artist": "Walter Jackson", + "position": 95, + "title": "Feelings" + }, + { + "artist": "JJ Cale", + "position": 96, + "title": "Hey Baby" + }, + { + "artist": "Elvin Bishop Featuring Mickey Thomas", + "position": 97, + "title": "Spend Some Time" + }, + { + "artist": "Starz", + "position": 98, + "title": "(She's Just A) Fallen Angel" + }, + { + "artist": "Seals & Crofts", + "position": 99, + "title": "Baby, I'll Give It To You" + }, + { + "artist": "The Ritchie Family", + "position": 100, + "title": "The Best Disco In Town" + } + ], + "title": "1976 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Staple Singers", + "position": 1, + "title": "Let's Do It Again" + }, + { + "artist": "Bay City Rollers", + "position": 2, + "title": "Saturday Night" + }, + { + "artist": "KC And The Sunshine Band", + "position": 3, + "title": "That's The Way (I Like It)" + }, + { + "artist": "Ohio Players", + "position": 4, + "title": "Love Rollercoaster" + }, + { + "artist": "Diana Ross", + "position": 5, + "title": "Theme From Mahogany (Do You Know Where You're Going To)" + }, + { + "artist": "Barry Manilow", + "position": 6, + "title": "I Write The Songs" + }, + { + "artist": "C.W. McCall", + "position": 7, + "title": "Convoy" + }, + { + "artist": "Sweet", + "position": 8, + "title": "Fox On The Run" + }, + { + "artist": "Silver Convention", + "position": 9, + "title": "Fly, Robin, Fly" + }, + { + "artist": "The O'Jays", + "position": 10, + "title": "I Love Music (Part 1)" + }, + { + "artist": "Frankie Valli", + "position": 11, + "title": "Our Day Will Come" + }, + { + "artist": "Jigsaw", + "position": 12, + "title": "Sky High" + }, + { + "artist": "Bee Gees", + "position": 13, + "title": "Nights On Broadway" + }, + { + "artist": "Paul Anka", + "position": 14, + "title": "Times Of Your Life" + }, + { + "artist": "Donna Summer", + "position": 15, + "title": "Love To Love You Baby" + }, + { + "artist": "Glen Campbell", + "position": 16, + "title": "Country Boy (You Got Your Feet In L.A.)" + }, + { + "artist": "David Ruffin", + "position": 17, + "title": "Walk Away From Love" + }, + { + "artist": "David Geddes", + "position": 18, + "title": "The Last Game Of The Season (A Blind Man In The Bleachers)" + }, + { + "artist": "Earth, Wind & Fire", + "position": 19, + "title": "Sing A Song" + }, + { + "artist": "Hot Chocolate", + "position": 20, + "title": "You Sexy Thing" + }, + { + "artist": "Kiss", + "position": 21, + "title": "Rock And Roll All Nite (live)" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 22, + "title": "Part Time Love" + }, + { + "artist": "John Denver", + "position": 23, + "title": "Fly Away" + }, + { + "artist": "Electric Light Orchestra", + "position": 24, + "title": "Evil Woman" + }, + { + "artist": "The Isley Brothers", + "position": 25, + "title": "For The Love Of You (Part 1&2)" + }, + { + "artist": "The Miracles", + "position": 26, + "title": "Love Machine (Part 1)" + }, + { + "artist": "Fleetwood Mac", + "position": 27, + "title": "Over My Head" + }, + { + "artist": "Al Green", + "position": 28, + "title": "Full Of Fire" + }, + { + "artist": "Simon & Garfunkel", + "position": 29, + "title": "My Little Town" + }, + { + "artist": "Hamilton, Joe Frank & Reynolds", + "position": 30, + "title": "Winners And Losers" + }, + { + "artist": "Captain & Tennille", + "position": 31, + "title": "The Way I Want To Touch You" + }, + { + "artist": "Elton John", + "position": 32, + "title": "Island Girl" + }, + { + "artist": "AWB", + "position": 33, + "title": "School Boy Crush" + }, + { + "artist": "Neil Sedaka", + "position": 34, + "title": "Breaking Up Is Hard To Do" + }, + { + "artist": "The Wing And A Prayer Fife & Drum Corps.", + "position": 35, + "title": "Baby Face" + }, + { + "artist": "Harold Melvin And The Blue Notes", + "position": 36, + "title": "Wake Up Everybody (Part 1)" + }, + { + "artist": "Helen Reddy", + "position": 37, + "title": "Somewhere In The Night" + }, + { + "artist": "The Marshall Tucker Band", + "position": 38, + "title": "Fire On The Mountain" + }, + { + "artist": "Al Martino", + "position": 39, + "title": "Volare" + }, + { + "artist": "The Road Apples", + "position": 40, + "title": "Let's Live Together" + }, + { + "artist": "Nazareth", + "position": 41, + "title": "Love Hurts" + }, + { + "artist": "Bob Dylan", + "position": 42, + "title": "Hurricane (Part I)" + }, + { + "artist": "Olivia Newton-John", + "position": 43, + "title": "Let It Shine/He Ain't Heavy...He's My Brother" + }, + { + "artist": "Leon Haywood", + "position": 44, + "title": "I Want'a Do Something Freaky To You" + }, + { + "artist": "The Who", + "position": 45, + "title": "Squeeze Box" + }, + { + "artist": "America", + "position": 46, + "title": "Woman Tonight" + }, + { + "artist": "George Baker Selection", + "position": 47, + "title": "Paloma Blanca" + }, + { + "artist": "Purple Reign", + "position": 48, + "title": "This Old Man" + }, + { + "artist": "War", + "position": 49, + "title": "Low Rider" + }, + { + "artist": "Paul Simon", + "position": 50, + "title": "50 Ways To Leave Your Lover" + }, + { + "artist": "Freddy Fender", + "position": 51, + "title": "Secret Love" + }, + { + "artist": "Bachman-Turner Overdrive", + "position": 52, + "title": "Down To The Line" + }, + { + "artist": "David Bowie", + "position": 53, + "title": "Golden Years" + }, + { + "artist": "Jefferson Starship", + "position": 54, + "title": "Play On Love" + }, + { + "artist": "Tavares", + "position": 55, + "title": "Free Ride" + }, + { + "artist": "Morris Albert", + "position": 56, + "title": "Feelings" + }, + { + "artist": "Foghat", + "position": 57, + "title": "Slow Ride" + }, + { + "artist": "Kenny Starr", + "position": 58, + "title": "The Blind Man In The Bleachers" + }, + { + "artist": "The 4 Seasons", + "position": 59, + "title": "Who Loves You" + }, + { + "artist": "Rhythm Heritage", + "position": 60, + "title": "Theme From S.W.A.T." + }, + { + "artist": "The Pointer Sisters", + "position": 61, + "title": "Going Down Slowly" + }, + { + "artist": "Eagles", + "position": 62, + "title": "Take It To The Limit" + }, + { + "artist": "John Denver", + "position": 63, + "title": "Christmas For Cowboys" + }, + { + "artist": "Natalie Cole", + "position": 64, + "title": "Inseparable" + }, + { + "artist": "Eric Carmen", + "position": 65, + "title": "All By Myself" + }, + { + "artist": "Donny & Marie Osmond", + "position": 66, + "title": "Deep Purple" + }, + { + "artist": "Billy Crash Craddock", + "position": 67, + "title": "Easy As Pie" + }, + { + "artist": "Eddie Kendricks", + "position": 68, + "title": "Happy" + }, + { + "artist": "Batdorf & Rodney", + "position": 69, + "title": "Somewhere In The Night" + }, + { + "artist": "Barry White", + "position": 70, + "title": "Let The Music Play" + }, + { + "artist": "Linda Ronstadt", + "position": 71, + "title": "Tracks Of My Tears" + }, + { + "artist": "Willie Nelson", + "position": 72, + "title": "Blue Eyes Crying In The Rain" + }, + { + "artist": "Bee Gees", + "position": 73, + "title": "Fanny (be Tender With My Love)" + }, + { + "artist": "Hagood Hardy", + "position": 74, + "title": "The Homecoming" + }, + { + "artist": "Gloria Gaynor", + "position": 75, + "title": "How High The Moon" + }, + { + "artist": "Soul Train Gang", + "position": 76, + "title": "Soul Train 75" + }, + { + "artist": "The Spinners", + "position": 77, + "title": "Love Or Leave" + }, + { + "artist": "John Fogerty", + "position": 78, + "title": "Almost Saturday Night" + }, + { + "artist": "Prelude", + "position": 79, + "title": "For A Dancer" + }, + { + "artist": "John Paul Young", + "position": 80, + "title": "Yesterday's Hero" + }, + { + "artist": "Art Garfunkel", + "position": 81, + "title": "Break Away" + }, + { + "artist": "Commodores", + "position": 82, + "title": "Sweet Love" + }, + { + "artist": "10cc", + "position": 83, + "title": "Art For Art's Sake" + }, + { + "artist": "The Ritchie Family", + "position": 84, + "title": "I Want To Dance With You (Dance With Me)" + }, + { + "artist": "The 4 Seasons", + "position": 85, + "title": "December, 1963 (Oh, What a Night)" + }, + { + "artist": "The Doobie Brothers", + "position": 86, + "title": "I Cheat The Hangman" + }, + { + "artist": "Cledus Maggard And The Citizen's Band", + "position": 87, + "title": "The White Knight" + }, + { + "artist": "Conway Twitty with Joni Lee", + "position": 88, + "title": "Don't Cry Joni" + }, + { + "artist": "Roxy Music", + "position": 89, + "title": "Love Is The Drug" + }, + { + "artist": "The Eleventh Hour", + "position": 90, + "title": "Hollywood Hot" + }, + { + "artist": "Mfsb", + "position": 91, + "title": "The Zip" + }, + { + "artist": "The Stylistics", + "position": 92, + "title": "Funky Weekend" + }, + { + "artist": "Crown Heights Affair", + "position": 93, + "title": "Every Beat Of My Heart" + }, + { + "artist": "Amazing Rhythm Aces", + "position": 94, + "title": "Amazing Grace (used To Be Her Favorite Song)" + }, + { + "artist": "Bill Withers", + "position": 95, + "title": "Make Love To Your Mind" + }, + { + "artist": "Justin Hayward & John Lodge", + "position": 96, + "title": "Blue Guitar" + }, + { + "artist": "Wings", + "position": 97, + "title": "Venus And Mars Rock Show" + }, + { + "artist": "Pete Wingfield", + "position": 98, + "title": "Eighteen With A Bullet" + }, + { + "artist": "Greg Lake", + "position": 99, + "title": "I Believe In Father Christmas" + }, + { + "artist": "Country Joe McDonald", + "position": 100, + "title": "Breakfast For Two" + } + ], + "title": "1975 - Hot 100" + }, + { + "songs": [ + { + "artist": "Helen Reddy", + "position": 1, + "title": "Angie Baby" + }, + { + "artist": "Elton John", + "position": 2, + "title": "Lucy In The Sky With Diamonds" + }, + { + "artist": "Barry White", + "position": 3, + "title": "You're The First, The Last, My Everything" + }, + { + "artist": "Carl Douglas", + "position": 4, + "title": "Kung Fu Fighting" + }, + { + "artist": "Harry Chapin", + "position": 5, + "title": "Cat's In The Cradle" + }, + { + "artist": "Paul McCartney & Wings", + "position": 6, + "title": "Junior's Farm/Sally G" + }, + { + "artist": "The Three Degrees", + "position": 7, + "title": "When Will I See You Again" + }, + { + "artist": "Neil Sedaka", + "position": 8, + "title": "Laughter In The Rain" + }, + { + "artist": "Ringo Starr", + "position": 9, + "title": "Only You" + }, + { + "artist": "Stevie Wonder", + "position": 10, + "title": "Boogie On Reggae Woman" + }, + { + "artist": "Carpenters", + "position": 11, + "title": "Please Mr. Postman" + }, + { + "artist": "Barry Manilow", + "position": 12, + "title": "Mandy" + }, + { + "artist": "The J. Geils Band", + "position": 13, + "title": "Must Of Got Lost" + }, + { + "artist": "Paul Anka with Odia Coates", + "position": 14, + "title": "One Man Woman/One Woman Man" + }, + { + "artist": "Al Green", + "position": 15, + "title": "Sha-La-La (Make Me Happy)" + }, + { + "artist": "Jethro Tull", + "position": 16, + "title": "Bungle In The Jungle" + }, + { + "artist": "Rufus Featuring Chaka Khan", + "position": 17, + "title": "You Got The Love" + }, + { + "artist": "Gloria Gaynor", + "position": 18, + "title": "Never Can Say Goodbye" + }, + { + "artist": "Donny & Marie Osmond", + "position": 19, + "title": "Morning Side Of The Mountain" + }, + { + "artist": "George Harrison", + "position": 20, + "title": "Dark Horse" + }, + { + "artist": "Billy Swan", + "position": 21, + "title": "I Can Help" + }, + { + "artist": "B.T. Express", + "position": 22, + "title": "Do It ('Til You're Satisfied)" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 23, + "title": "I Feel A Song (In My Heart)/Don't Burn Down The Bridge" + }, + { + "artist": "Ohio Players", + "position": 24, + "title": "Fire" + }, + { + "artist": "Carol Douglas", + "position": 25, + "title": "Doctor's Orders" + }, + { + "artist": "Elvis Presley", + "position": 26, + "title": "Promised Land" + }, + { + "artist": "AWB", + "position": 27, + "title": "Pick Up The Pieces" + }, + { + "artist": "Paul Davis", + "position": 28, + "title": "Ride 'em Cowboy" + }, + { + "artist": "Grand Funk", + "position": 29, + "title": "Some Kind Of Wonderful" + }, + { + "artist": "The Guess Who", + "position": 30, + "title": "Dancin' Fool" + }, + { + "artist": "The Rolling Stones", + "position": 31, + "title": "Ain't Too Proud To Beg" + }, + { + "artist": "Mac Davis", + "position": 32, + "title": "Rock N' Roll (I Gave You The Best Years Of My Life)" + }, + { + "artist": "Shirley Brown", + "position": 33, + "title": "Woman To Woman" + }, + { + "artist": "Chicago", + "position": 34, + "title": "Wishing You Were Here" + }, + { + "artist": "Disco Tex & The Sex-O-Lettes", + "position": 35, + "title": "Get Dancin'" + }, + { + "artist": "The Pointer Sisters", + "position": 36, + "title": "Fairytale" + }, + { + "artist": "Billy Crash Craddock", + "position": 37, + "title": "Ruby, Baby" + }, + { + "artist": "Barbara Mason", + "position": 38, + "title": "From His Woman To You" + }, + { + "artist": "Billy Joel", + "position": 39, + "title": "The Entertainer" + }, + { + "artist": "Eagles", + "position": 40, + "title": "Best Of My Love" + }, + { + "artist": "Love Unlimited", + "position": 41, + "title": "I Belong To You" + }, + { + "artist": "Bachman-Turner Overdrive", + "position": 42, + "title": "You Ain't Seen Nothing Yet/Free Wheelin'" + }, + { + "artist": "Lynyrd Skynyrd", + "position": 43, + "title": "Free Bird" + }, + { + "artist": "James Brown", + "position": 44, + "title": "Funky President (People It's Bad)/Coldblooded" + }, + { + "artist": "Aretha Franklin", + "position": 45, + "title": "Without Love" + }, + { + "artist": "Linda Ronstadt", + "position": 46, + "title": "You're No Good" + }, + { + "artist": "The Righteous Brothers", + "position": 47, + "title": "Dream On" + }, + { + "artist": "Bobby Vinton", + "position": 48, + "title": "My Melody Of Love" + }, + { + "artist": "Neil Diamond", + "position": 49, + "title": "Longfellow Serenade" + }, + { + "artist": "Tavares", + "position": 50, + "title": "She's Gone" + }, + { + "artist": "The Joneses", + "position": 51, + "title": "Sugar Pie Guy Pt. 1" + }, + { + "artist": "Eric Clapton", + "position": 52, + "title": "Willie And The Hand Jive" + }, + { + "artist": "The Kiki Dee Band", + "position": 53, + "title": "I've Got The Music In Me" + }, + { + "artist": "Cat Stevens", + "position": 54, + "title": "Ready" + }, + { + "artist": "Frankie Valli", + "position": 55, + "title": "My Eyes Adored You" + }, + { + "artist": "David Bowie", + "position": 56, + "title": "Changes" + }, + { + "artist": "Billy Preston", + "position": 57, + "title": "Struttin'" + }, + { + "artist": "John Lennon", + "position": 58, + "title": "#9 Dream" + }, + { + "artist": "The Doobie Brothers", + "position": 59, + "title": "Black Water" + }, + { + "artist": "Jackson 5", + "position": 60, + "title": "Whatever You Got, I Want" + }, + { + "artist": "The Stylistics", + "position": 61, + "title": "Heavy Fallin' Out" + }, + { + "artist": "Carl Carlton", + "position": 62, + "title": "Everlasting Love" + }, + { + "artist": "Tony Orlando & Dawn", + "position": 63, + "title": "Look In My Eyes Pretty Woman" + }, + { + "artist": "John Lennon With The Plastic Ono Nuclear Band", + "position": 64, + "title": "Whatever Gets You Thru The Night" + }, + { + "artist": "John Denver", + "position": 65, + "title": "Back Home Again" + }, + { + "artist": "The O'Jays", + "position": 66, + "title": "Sunshine Part II" + }, + { + "artist": "Bo Donaldson And The Heywoods", + "position": 67, + "title": "The Heartbreak Kid" + }, + { + "artist": "B.B. King", + "position": 68, + "title": "Philadelphia" + }, + { + "artist": "Jim Stafford", + "position": 69, + "title": "Your Bulldog Drinks Champagne" + }, + { + "artist": "Carl Graves", + "position": 70, + "title": "Baby, Hang Up The Phone" + }, + { + "artist": "Eddie Kendricks", + "position": 71, + "title": "One Tear" + }, + { + "artist": "Styx", + "position": 72, + "title": "Lady" + }, + { + "artist": "Michael Holm", + "position": 73, + "title": "When A Child Is Born" + }, + { + "artist": "The Temptations", + "position": 74, + "title": "Happy People" + }, + { + "artist": "Smokey Robinson", + "position": 75, + "title": "I Am I Am" + }, + { + "artist": "Electric Light Orchestra", + "position": 76, + "title": "Can't Get It Out Of My Head" + }, + { + "artist": "America", + "position": 77, + "title": "Lonely People" + }, + { + "artist": "John Denver", + "position": 78, + "title": "Sweet Surrender" + }, + { + "artist": "Latimore", + "position": 79, + "title": "Let's Straighten It Out" + }, + { + "artist": "Anne Murray", + "position": 80, + "title": "Day Tripper" + }, + { + "artist": "Roy Rogers", + "position": 81, + "title": "Hoppy, Gene And Me" + }, + { + "artist": "Al Martino", + "position": 82, + "title": "To The Door Of The Sun (Alle Porte Del Sole)" + }, + { + "artist": "The Miracles", + "position": 83, + "title": "Don't Cha Love It" + }, + { + "artist": "Joni Mitchell", + "position": 84, + "title": "Big Yellow Taxi" + }, + { + "artist": "Sugarloaf/Jerry Corbetta", + "position": 85, + "title": "Don't Call Us, We'll Call You" + }, + { + "artist": "Candi Staton", + "position": 86, + "title": "As Long As He Takes Care Of Home" + }, + { + "artist": "Splinter", + "position": 87, + "title": "Costafine Town" + }, + { + "artist": "Maria Muldaur", + "position": 88, + "title": "I'm A Woman" + }, + { + "artist": "Commodores", + "position": 89, + "title": "I Feel Sanctified" + }, + { + "artist": "Peter Shelley", + "position": 90, + "title": "Gee Baby" + }, + { + "artist": "The Tymes", + "position": 91, + "title": "Ms. Grace" + }, + { + "artist": "Perry Como", + "position": 92, + "title": "Christmas Dream" + }, + { + "artist": "Bill Withers", + "position": 93, + "title": "Heartbreak Road" + }, + { + "artist": "Margie Joseph", + "position": 94, + "title": "Words (are Impossible)" + }, + { + "artist": "The Hues Corporation", + "position": 95, + "title": "Rockin' Soul" + }, + { + "artist": "Jim Weatherly", + "position": 96, + "title": "The Need To Be" + }, + { + "artist": "Johnny Bristol", + "position": 97, + "title": "You And I" + }, + { + "artist": "Bobby Bland", + "position": 98, + "title": "I Wouldn't Treat A Dog (The Way You Treated Me)" + }, + { + "artist": "Prelude", + "position": 99, + "title": "After The Goldrush" + }, + { + "artist": "Chilliwack", + "position": 100, + "title": "Crazy Talk" + } + ], + "title": "1974 - Hot 100" + }, + { + "songs": [ + { + "artist": "Jim Croce", + "position": 1, + "title": "Time In A Bottle" + }, + { + "artist": "Charlie Rich", + "position": 2, + "title": "The Most Beautiful Girl" + }, + { + "artist": "Helen Reddy", + "position": 3, + "title": "Leave Me Alone (ruby Red Dress)" + }, + { + "artist": "The Steve Miller Band", + "position": 4, + "title": "The Joker" + }, + { + "artist": "Elton John", + "position": 5, + "title": "GOODBYE YELLOW BRICK ROAD" + }, + { + "artist": "Todd Rundgren", + "position": 6, + "title": "Hello It's Me" + }, + { + "artist": "Carpenters", + "position": 7, + "title": "Top Of The World" + }, + { + "artist": "Al Wilson", + "position": 8, + "title": "Show And Tell" + }, + { + "artist": "Brownsville Station", + "position": 9, + "title": "Smokin' In The Boy's Room" + }, + { + "artist": "Barry White", + "position": 10, + "title": "Never, Never Gonna Give Ya Up" + }, + { + "artist": "Stevie Wonder", + "position": 11, + "title": "Living For The City" + }, + { + "artist": "The Staple Singers", + "position": 12, + "title": "If You're Ready (Come Go With Me)" + }, + { + "artist": "Chicago", + "position": 13, + "title": "Just You 'n' Me" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 14, + "title": "I've Got To Use My Imagination" + }, + { + "artist": "The Stylistics", + "position": 15, + "title": "Rockin' Roll Baby" + }, + { + "artist": "Paul McCartney & Wings", + "position": 16, + "title": "Helen Wheels" + }, + { + "artist": "Olivia Newton-John", + "position": 17, + "title": "Let Me Be There" + }, + { + "artist": "John Lennon", + "position": 18, + "title": "MIND GAMES" + }, + { + "artist": "Aretha Franklin", + "position": 19, + "title": "Until You Come Back To Me (That's What I'm Gonna Do)" + }, + { + "artist": "Led Zeppelin", + "position": 20, + "title": "D'yer Mak'er" + }, + { + "artist": "Love Unlimited Orchestra", + "position": 21, + "title": "Love's Theme" + }, + { + "artist": "Teddy Pendergrass", + "position": 22, + "title": "The Whole Town's Laughing At Me" + }, + { + "artist": "Barbra Streisand", + "position": 23, + "title": "The Way We Were" + }, + { + "artist": "War", + "position": 24, + "title": "Me And Baby Brother" + }, + { + "artist": "Donny Osmond", + "position": 25, + "title": "When I Fall In Love/Are You Lonesome Tonight" + }, + { + "artist": "Loggins & Messina", + "position": 26, + "title": "My Music" + }, + { + "artist": "Ringo Starr", + "position": 27, + "title": "You're Sixteen" + }, + { + "artist": "Ringo Starr", + "position": 28, + "title": "Photograph" + }, + { + "artist": "Billy Preston", + "position": 29, + "title": "Space Race" + }, + { + "artist": "Al Green", + "position": 30, + "title": "Livin' For You" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 31, + "title": "Midnight Train To Georgia" + }, + { + "artist": "Tony Orlando & Dawn", + "position": 32, + "title": "Who's In The Strawberry Patch With Sally" + }, + { + "artist": "Marvin Gaye", + "position": 33, + "title": "Come Get To This" + }, + { + "artist": "Jim Croce", + "position": 34, + "title": "I Got A Name" + }, + { + "artist": "Cheech & Chong", + "position": 35, + "title": "Sister Mary Elephant (Shudd-Up!)" + }, + { + "artist": "Grand Funk", + "position": 36, + "title": "Walk Like A Man" + }, + { + "artist": "Ian Thomas", + "position": 37, + "title": "Painted Ladies" + }, + { + "artist": "Jim Stafford", + "position": 38, + "title": "Spiders & Snakes" + }, + { + "artist": "The DeFranco Family featuring Tony DeFranco", + "position": 39, + "title": "Heartbeat - It's A Lovebeat" + }, + { + "artist": "Eddie Kendricks", + "position": 40, + "title": "Keep On Truckin' (Part 1)" + }, + { + "artist": "Three Dog Night", + "position": 41, + "title": "Let Me Serenade You" + }, + { + "artist": "Ann Peebles", + "position": 42, + "title": "I Can't Stand The Rain" + }, + { + "artist": "Paul Simon", + "position": 43, + "title": "American Tune" + }, + { + "artist": "Bobby Blue Bland", + "position": 44, + "title": "This Time I'm Gone For Good" + }, + { + "artist": "El Chicano", + "position": 45, + "title": "Tell Her She's Lovely" + }, + { + "artist": "Marie Osmond", + "position": 46, + "title": "Paper Roses" + }, + { + "artist": "The Chi-lites", + "position": 47, + "title": "I Found Sunshine" + }, + { + "artist": "The Persuaders", + "position": 48, + "title": "Some Guys Have All The Luck" + }, + { + "artist": "Kris Kristofferson & Rita Coolidge", + "position": 49, + "title": "A Song I'd Like To Sing" + }, + { + "artist": "Merle Haggard", + "position": 50, + "title": "If We Make It Through December" + }, + { + "artist": "Carole King", + "position": 51, + "title": "Coraz??�n" + }, + { + "artist": "David Essex", + "position": 52, + "title": "Rock On" + }, + { + "artist": "Earth, Wind & Fire", + "position": 53, + "title": "Keep Your Head To The Sky" + }, + { + "artist": "Kool & The Gang", + "position": 54, + "title": "Jungle Boogie" + }, + { + "artist": "B.W. Stevenson", + "position": 55, + "title": "The River Of Love" + }, + { + "artist": "First Choice", + "position": 56, + "title": "Smarty Pants" + }, + { + "artist": "Tom T. Hall", + "position": 57, + "title": "I Love" + }, + { + "artist": "Linda Ronstadt", + "position": 58, + "title": "Love Has No Pride" + }, + { + "artist": "Smokey Robinson", + "position": 59, + "title": "Baby Come Close" + }, + { + "artist": "The Intruders", + "position": 60, + "title": "I Wanna Know Your Name" + }, + { + "artist": "The O'Jays", + "position": 61, + "title": "Put Your Hands Together" + }, + { + "artist": "Isaac Hayes", + "position": 62, + "title": "Joy Pt. I" + }, + { + "artist": "Frank Sinatra", + "position": 63, + "title": "Let Me Try Again (Laisse Moi Le Temps)" + }, + { + "artist": "Joe Simon", + "position": 64, + "title": "River" + }, + { + "artist": "The Temptations", + "position": 65, + "title": "Let Your Hair Down" + }, + { + "artist": "Black Oak Arkansas", + "position": 66, + "title": "Jim Dandy" + }, + { + "artist": "Electric Light Orchestra", + "position": 67, + "title": "Showdown" + }, + { + "artist": "Bachman-Turner Overdrive", + "position": 68, + "title": "Blue Collar" + }, + { + "artist": "Bob Dylan", + "position": 69, + "title": "A Fool Such As I" + }, + { + "artist": "Anne Murray", + "position": 70, + "title": "Love Song" + }, + { + "artist": "Edgar Winter Group", + "position": 71, + "title": "Hangin' Around" + }, + { + "artist": "Gregg Allman", + "position": 72, + "title": "Midnight Rider" + }, + { + "artist": "The Band", + "position": 73, + "title": "Ain't Got No Home" + }, + { + "artist": "Wednesday", + "position": 74, + "title": "Last Kiss" + }, + { + "artist": "B.B. King", + "position": 75, + "title": "I Like To Live The Love" + }, + { + "artist": "The Who", + "position": 76, + "title": "Love, Reign O'er Me" + }, + { + "artist": "Jim Croce", + "position": 77, + "title": "It Doesn't Have To Be That Way" + }, + { + "artist": "James Brown", + "position": 78, + "title": "Stoned To The Bone - Part 1" + }, + { + "artist": "Steely Dan", + "position": 79, + "title": "My Old School" + }, + { + "artist": "John Denver", + "position": 80, + "title": "Please, Daddy" + }, + { + "artist": "Keith Hampshire", + "position": 81, + "title": "Big Time Operator" + }, + { + "artist": "Melanie", + "position": 82, + "title": "Will You Love Me Tomorrow?" + }, + { + "artist": "Love Unlimited", + "position": 83, + "title": "It May Be Winter Outside, (But In My Heart It's Spring)" + }, + { + "artist": "Alice Cooper", + "position": 84, + "title": "Teenage Lament '74" + }, + { + "artist": "Roy Clark", + "position": 85, + "title": "Somewhere Between Love And Tomorrow" + }, + { + "artist": "Don Goodwin", + "position": 86, + "title": "This Is Your Song" + }, + { + "artist": "Garfunkel", + "position": 87, + "title": "I Shall Sing" + }, + { + "artist": "The Pointer Sisters", + "position": 88, + "title": "Wang Dang Doodle" + }, + { + "artist": "Joni Mitchell", + "position": 89, + "title": "Raised On Robbery" + }, + { + "artist": "Coven", + "position": 90, + "title": "One Tin Soldier, The Legend of Billy Jack" + }, + { + "artist": "The 5th Dimension", + "position": 91, + "title": "Flashback" + }, + { + "artist": "Lamont Dozier", + "position": 92, + "title": "Trying To Hold On To My Woman" + }, + { + "artist": "Gary & Dave", + "position": 93, + "title": "Could You Ever Love Me Again" + }, + { + "artist": "Albert Hammond", + "position": 94, + "title": "Half A Million Miles From Home" + }, + { + "artist": "The De Franco Family", + "position": 95, + "title": "Abra-Ca-Dabra" + }, + { + "artist": "The Dramatics", + "position": 96, + "title": "Fell For You" + }, + { + "artist": "J. Frank Wilson and The Cavaliers", + "position": 97, + "title": "Last Kiss" + }, + { + "artist": "The Isley Brothers", + "position": 98, + "title": "What It Comes Down To" + }, + { + "artist": "Johnny Mathis", + "position": 99, + "title": "Life Is A Song Worth Singing" + }, + { + "artist": "Curtis Mayfield", + "position": 100, + "title": "Can't Say Nothin'" + } + ], + "title": "1973 - Hot 100" + }, + { + "songs": [ + { + "artist": "Billy Paul", + "position": 1, + "title": "Me And Mrs. Jones" + }, + { + "artist": "Gilbert O'Sullivan", + "position": 2, + "title": "Clair" + }, + { + "artist": "Al Green", + "position": 3, + "title": "You Ought To Be With Me" + }, + { + "artist": "Carly Simon", + "position": 4, + "title": "You're So Vain" + }, + { + "artist": "Albert Hammond", + "position": 5, + "title": "It Never Rains In Southern California" + }, + { + "artist": "Donna Fargo", + "position": 6, + "title": "Funny Face" + }, + { + "artist": "Helen Reddy", + "position": 7, + "title": "I Am Woman" + }, + { + "artist": "Johnny Rivers", + "position": 8, + "title": "Rockin' Pneumonia - Boogie Woogie Flu" + }, + { + "artist": "Curtis Mayfield", + "position": 9, + "title": "Superfly" + }, + { + "artist": "Kenny Loggins & Jim Messina", + "position": 10, + "title": "Your Mama Don't Dance" + }, + { + "artist": "Four Tops", + "position": 11, + "title": "Keeper Of The Castle" + }, + { + "artist": "Austin Roberts", + "position": 12, + "title": "Something's Wrong With Me" + }, + { + "artist": "Jethro Tull", + "position": 13, + "title": "Living In The Past" + }, + { + "artist": "The Temptations", + "position": 14, + "title": "Papa Was A Rollin' Stone" + }, + { + "artist": "Bread", + "position": 15, + "title": "Sweet Surrender" + }, + { + "artist": "Stevie Wonder", + "position": 16, + "title": "Superstition" + }, + { + "artist": "Neil Diamond", + "position": 17, + "title": "Walk On Water" + }, + { + "artist": "Cat Stevens", + "position": 18, + "title": "Sitting" + }, + { + "artist": "Harold Melvin And The Blue Notes", + "position": 19, + "title": "If You Don't Know Me By Now" + }, + { + "artist": "Elton John", + "position": 20, + "title": "Crocodile Rock" + }, + { + "artist": "James Taylor", + "position": 21, + "title": "Don't Let Me Be Lonely Tonight" + }, + { + "artist": "Johnny Nash", + "position": 22, + "title": "I Can See Clearly Now" + }, + { + "artist": "Three Dog Night", + "position": 23, + "title": "Pieces Of April" + }, + { + "artist": "Timmy Thomas", + "position": 24, + "title": "Why Can't We Live Together" + }, + { + "artist": "Jackson 5", + "position": 25, + "title": "Corner Of The Sky" + }, + { + "artist": "Carole King", + "position": 26, + "title": "Been To Canaan" + }, + { + "artist": "Wings", + "position": 27, + "title": "Hi, Hi, Hi" + }, + { + "artist": "Raspberries", + "position": 28, + "title": "I Wanna Be With You" + }, + { + "artist": "Seals & Crofts", + "position": 29, + "title": "Summer Breeze" + }, + { + "artist": "Hurricane Smith", + "position": 30, + "title": "Oh, Babe, What Would You Say?" + }, + { + "artist": "Blue Haze", + "position": 31, + "title": "Smoke Gets In Your Eyes" + }, + { + "artist": "The Hollies", + "position": 32, + "title": "Long Dark Road" + }, + { + "artist": "Marvin Gaye", + "position": 33, + "title": "Trouble Man" + }, + { + "artist": "Elvis Presley", + "position": 34, + "title": "Separate Ways" + }, + { + "artist": "War", + "position": 35, + "title": "The World Is A Ghetto" + }, + { + "artist": "America", + "position": 36, + "title": "Ventura Highway" + }, + { + "artist": "Steely Dan", + "position": 37, + "title": "Do It Again" + }, + { + "artist": "The Stylistics", + "position": 38, + "title": "I'm Stone In Love With You" + }, + { + "artist": "The Osmonds", + "position": 39, + "title": "Crazy Horses" + }, + { + "artist": "Joni Mitchell", + "position": 40, + "title": "You Turn Me On, I'm A Radio" + }, + { + "artist": "John Denver", + "position": 41, + "title": "Rocky Mountain High" + }, + { + "artist": "Bee Gees", + "position": 42, + "title": "Alive" + }, + { + "artist": "King Harvest", + "position": 43, + "title": "Dancing In The Moonlight" + }, + { + "artist": "Bulldog", + "position": 44, + "title": "No" + }, + { + "artist": "Bobby Womack & Peace", + "position": 45, + "title": "Harry Hippie" + }, + { + "artist": "Brighter Side Of Darkness", + "position": 46, + "title": "Love Jones" + }, + { + "artist": "The Who", + "position": 47, + "title": "The Relay" + }, + { + "artist": "Chicago", + "position": 48, + "title": "Dialogue (Part I & II)" + }, + { + "artist": "The Blue Ridge Rangers", + "position": 49, + "title": "Jambalaya (On The Bayou)" + }, + { + "artist": "Joe Simon", + "position": 50, + "title": "Trouble In My Home/I Found My Dad" + }, + { + "artist": "Clean Living", + "position": 51, + "title": "In Heaven There Is No Beer" + }, + { + "artist": "Bill Withers", + "position": 52, + "title": "Let Us Love" + }, + { + "artist": "Peter Skellern", + "position": 53, + "title": "You're A Lady" + }, + { + "artist": "Jermaine Jackson", + "position": 54, + "title": "Daddy's Home" + }, + { + "artist": "Chuck Berry", + "position": 55, + "title": "Reelin' & Rockin'" + }, + { + "artist": "Jim Croce", + "position": 56, + "title": "Operator (That's Not the Way it Feels)" + }, + { + "artist": "Dennis Yost And The Classics IV", + "position": 57, + "title": "What Am I Crying For?" + }, + { + "artist": "Joe Cocker and The Chris Stainton Band", + "position": 58, + "title": "Woman To Woman" + }, + { + "artist": "James Brown", + "position": 59, + "title": "I Got A Bag Of My Own" + }, + { + "artist": "Luther Ingram", + "position": 60, + "title": "I'll Be Your Shelter (In Time Of Storm)" + }, + { + "artist": "The Chi-lites", + "position": 61, + "title": "We Need Order" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 62, + "title": "I Can't Stand To See You Cry" + }, + { + "artist": "Mac Davis", + "position": 63, + "title": "Everybody Loves A Love Song" + }, + { + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "position": 64, + "title": "Looking Through The Eyes Of Love" + }, + { + "artist": "Rod Stewart", + "position": 65, + "title": "Angel" + }, + { + "artist": "Don McLean", + "position": 66, + "title": "Dreidel" + }, + { + "artist": "The Main Ingredient", + "position": 67, + "title": "You've Got To Take It (If You Want It)" + }, + { + "artist": "The O'Jays", + "position": 68, + "title": "992 Arguments" + }, + { + "artist": "Cornelius Brothers & Sister Rose", + "position": 69, + "title": "I'm Never Gonna Be Alone Anymore" + }, + { + "artist": "Nilsson", + "position": 70, + "title": "Remember (Christmas)" + }, + { + "artist": "Gary Glitter", + "position": 71, + "title": "I Didn't Know I Loved You (Till I Saw You Rock And Roll)" + }, + { + "artist": "Bette Midler", + "position": 72, + "title": "Do You Want To Dance?" + }, + { + "artist": "Eagles", + "position": 73, + "title": "Peaceful Easy Feeling" + }, + { + "artist": "Dawn Featuring Tony Orlando", + "position": 74, + "title": "You're A Lady" + }, + { + "artist": "Wayne Newton", + "position": 75, + "title": "Anthem" + }, + { + "artist": "Keith Hampshire", + "position": 76, + "title": "Daytime Night-Time" + }, + { + "artist": "Dr. Hook And The Medicine Show", + "position": 77, + "title": "The Cover Of Rolling Stone" + }, + { + "artist": "James Brown-Lyn Collins", + "position": 78, + "title": "What My Baby Needs Now Is A Little More Lovin'" + }, + { + "artist": "The Spinners", + "position": 79, + "title": "Could It Be I'm Falling In Love" + }, + { + "artist": "Edward Bear", + "position": 80, + "title": "Last Song" + }, + { + "artist": "Lobo", + "position": 81, + "title": "Don't Expect Me To Be Your Friend" + }, + { + "artist": "Cashman & West", + "position": 82, + "title": "Songman" + }, + { + "artist": "Slade", + "position": 83, + "title": "Mama Weer All Crazee Now" + }, + { + "artist": "Valerie Simpson", + "position": 84, + "title": "Silly Wasn't I" + }, + { + "artist": "Glen Campbell", + "position": 85, + "title": "One Last Time" + }, + { + "artist": "Emerson, Lake & Palmer", + "position": 86, + "title": "Lucky Man" + }, + { + "artist": "Merry Clayton", + "position": 87, + "title": "Oh No, Not My Baby" + }, + { + "artist": "Gallery", + "position": 88, + "title": "Big City Miss Ruth Ann" + }, + { + "artist": "Limmie & Family Cookin'", + "position": 89, + "title": "You Can Do Magic" + }, + { + "artist": "The Doobie Brothers", + "position": 90, + "title": "Jesus Is Just Alright" + }, + { + "artist": "Kris Kristofferson", + "position": 91, + "title": "Jesus Was A Capricorn" + }, + { + "artist": "Mary Hopkin", + "position": 92, + "title": "Knock Knock Who's There" + }, + { + "artist": "Joey Heatherton", + "position": 93, + "title": "I'm Sorry" + }, + { + "artist": "Paul Davis", + "position": 94, + "title": "Boogie Woogie Man" + }, + { + "artist": "Barbra Streisand", + "position": 95, + "title": "Didn't We" + }, + { + "artist": "Rita Coolidge", + "position": 96, + "title": "Fever/My Crew" + }, + { + "artist": "Ten Years After", + "position": 97, + "title": "Choo Choo Mama" + }, + { + "artist": "Bobby Vinton", + "position": 98, + "title": "But I Do" + }, + { + "artist": "Brownsville Station", + "position": 99, + "title": "The Red Back Spider" + }, + { + "artist": "Engelbert Humperdinck", + "position": 100, + "title": "I Never Said Goodbye" + } + ], + "title": "1972 - Hot 100" + }, + { + "songs": [ + { + "artist": "Melanie", + "position": 1, + "title": "Brand New Key" + }, + { + "artist": "Sly & The Family Stone", + "position": 2, + "title": "Family Affair" + }, + { + "artist": "Don McLean", + "position": 3, + "title": "American Pie (Parts I & II)" + }, + { + "artist": "Three Dog Night", + "position": 4, + "title": "An Old Fashioned Love Song" + }, + { + "artist": "Michael Jackson", + "position": 5, + "title": "Got To Be There" + }, + { + "artist": "The Chi-lites", + "position": 6, + "title": "Have You Seen Her" + }, + { + "artist": "Sonny & Cher", + "position": 7, + "title": "All I Ever Need Is You" + }, + { + "artist": "Dennis Coffey & The Detroit Guitar Band", + "position": 8, + "title": "Scorpio" + }, + { + "artist": "David Cassidy", + "position": 9, + "title": "Cherish" + }, + { + "artist": "Donny Osmond", + "position": 10, + "title": "Hey Girl/I Knew You When" + }, + { + "artist": "Bread", + "position": 11, + "title": "Baby I'm - A Want You" + }, + { + "artist": "The Staple Singers", + "position": 12, + "title": "Respect Yourself" + }, + { + "artist": "Jonathan Edwards", + "position": 13, + "title": "Sunshine" + }, + { + "artist": "The Stylistics", + "position": 14, + "title": "You Are Everything" + }, + { + "artist": "Donnie Elbert", + "position": 15, + "title": "Where Did Our Love Go" + }, + { + "artist": "Isaac Hayes", + "position": 16, + "title": "Theme From Shaft" + }, + { + "artist": "The New Seekers", + "position": 17, + "title": "I'd Like To Teach The World To Sing (In Perfect Harmony)" + }, + { + "artist": "The Temptations", + "position": 18, + "title": "Superstar (Remember How You Got Where You Are)" + }, + { + "artist": "Cher", + "position": 19, + "title": "Gypsys, Tramps & Thieves" + }, + { + "artist": "Al Green", + "position": 20, + "title": "Let's Stay Together" + }, + { + "artist": "The Hillside Singers", + "position": 21, + "title": "I'd Like To Teach The World To Sing (In Perfect Harmony)" + }, + { + "artist": "The Honey Cone", + "position": 22, + "title": "One Monkey Don't Stop No Show Part I" + }, + { + "artist": "Betty Wright", + "position": 23, + "title": "Clean Up Woman" + }, + { + "artist": "Rod Stewart With Faces", + "position": 24, + "title": "(I Know) I'm Losing You" + }, + { + "artist": "Neil Diamond", + "position": 25, + "title": "Stones/Crunchy Granola Suite" + }, + { + "artist": "Badfinger", + "position": 26, + "title": "Day After Day" + }, + { + "artist": "Aretha Franklin", + "position": 27, + "title": "Rock Steady" + }, + { + "artist": "Joe Simon", + "position": 28, + "title": "Drowning In The Sea Of Love" + }, + { + "artist": "Peter Nero", + "position": 29, + "title": "Theme From Summer Of '42" + }, + { + "artist": "Mickey Newbury", + "position": 30, + "title": "An American Trilogy" + }, + { + "artist": "Jackson 5", + "position": 31, + "title": "Sugar Daddy" + }, + { + "artist": "Rare Earth", + "position": 32, + "title": "Hey Big Brother" + }, + { + "artist": "Sweathog", + "position": 33, + "title": "Hallelujah" + }, + { + "artist": "The Who", + "position": 34, + "title": "Behind Blue Eyes" + }, + { + "artist": "Les Crane", + "position": 35, + "title": "Desiderata" + }, + { + "artist": "Lou Rawls", + "position": 36, + "title": "A Natural Man" + }, + { + "artist": "Charley Pride", + "position": 37, + "title": "Kiss An Angel Good Mornin'" + }, + { + "artist": "Bob Dylan", + "position": 38, + "title": "George Jackson" + }, + { + "artist": "Lee Michaels", + "position": 39, + "title": "Can I Get A Witness" + }, + { + "artist": "Bullet", + "position": 40, + "title": "White Lies, Blue Eyes" + }, + { + "artist": "Tommy James", + "position": 41, + "title": "Nothing To Hide" + }, + { + "artist": "James Brown", + "position": 42, + "title": "I'm A Greedy Man - Part I" + }, + { + "artist": "Carly Simon", + "position": 43, + "title": "Anticipation" + }, + { + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "position": 44, + "title": "It's One Of Those Nights (Yes Love)" + }, + { + "artist": "Think", + "position": 45, + "title": "Once You Understand" + }, + { + "artist": "Jerry Lee Lewis", + "position": 46, + "title": "Me And Bobby McGee" + }, + { + "artist": "John Denver", + "position": 47, + "title": "Friends With You" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 48, + "title": "Make Me The Woman That You Go Home To" + }, + { + "artist": "Joan Baez", + "position": 49, + "title": "Let It Be" + }, + { + "artist": "Yes", + "position": 50, + "title": "Your Move (I've Seen All Good People)" + }, + { + "artist": "Redbone", + "position": 51, + "title": "The Witch Queen Of New Orleans" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 52, + "title": "Satisfaction" + }, + { + "artist": "The Guess Who", + "position": 53, + "title": "Sour Suite" + }, + { + "artist": "Richard Harris", + "position": 54, + "title": "My Boy" + }, + { + "artist": "B.B. King", + "position": 55, + "title": "Ain't Nobody Home" + }, + { + "artist": "The J. Geils Band", + "position": 56, + "title": "Looking For A Love" + }, + { + "artist": "Elton John", + "position": 57, + "title": "Levon" + }, + { + "artist": "Carroll O'Connor And Jean Stapleton (As The Bunkers)", + "position": 58, + "title": "Those Were The Days" + }, + { + "artist": "Merle Haggard And The Strangers", + "position": 59, + "title": "Carolyn" + }, + { + "artist": "Bobby Womack & Peace", + "position": 60, + "title": "That's The Way I Feel About Cha" + }, + { + "artist": "Jefferson Airplane", + "position": 61, + "title": "Pretty As You Feel" + }, + { + "artist": "Stampeders", + "position": 62, + "title": "Devil You" + }, + { + "artist": "Ray Stevens", + "position": 63, + "title": "Turn Your Radio On" + }, + { + "artist": "Grateful Dead", + "position": 64, + "title": "Truckin'" + }, + { + "artist": "Little Johnny Taylor", + "position": 65, + "title": "Everybody Knows About My Good Thing Pt. 1" + }, + { + "artist": "Hamilton, Joe Frank & Reynolds", + "position": 66, + "title": "Daisy Mae" + }, + { + "artist": "Led Zeppelin", + "position": 67, + "title": "Black Dog" + }, + { + "artist": "Helen Reddy", + "position": 68, + "title": "No Sad Song" + }, + { + "artist": "Lighthouse", + "position": 69, + "title": "Take It Slow (Out In The Country)" + }, + { + "artist": "Curtis Mayfield", + "position": 70, + "title": "Get Down" + }, + { + "artist": "The Doors", + "position": 71, + "title": "Tightrope Ride" + }, + { + "artist": "Merry Clayton", + "position": 72, + "title": "After All This Time" + }, + { + "artist": "The Isley Brothers", + "position": 73, + "title": "Lay Lady Lay" + }, + { + "artist": "Carpenters", + "position": 74, + "title": "Superstar/Bless The Beasts And Children" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 75, + "title": "Way Back Home" + }, + { + "artist": "Nilsson", + "position": 76, + "title": "Without You" + }, + { + "artist": "Beverly Bremers", + "position": 77, + "title": "Don't Say You Don't Remember" + }, + { + "artist": "The Coasters", + "position": 78, + "title": "Love Potion Number Nine" + }, + { + "artist": "Wilson Pickett", + "position": 79, + "title": "Fire And Water" + }, + { + "artist": "Free Movement", + "position": 80, + "title": "The Harder I Try (The Bluer I Get)" + }, + { + "artist": "Three Dog Night", + "position": 81, + "title": "Never Been To Spain" + }, + { + "artist": "The Emotions", + "position": 82, + "title": "Show Me How" + }, + { + "artist": "Chase", + "position": 83, + "title": "So Many People" + }, + { + "artist": "The Poppy Family", + "position": 84, + "title": "No Good To Cry" + }, + { + "artist": "The Undisputed Truth", + "position": 85, + "title": "You Make Your Own Heaven And Hell Right Here On Earth" + }, + { + "artist": "The Dramatics", + "position": 86, + "title": "Get Up And Get Down" + }, + { + "artist": "Ray Charles", + "position": 87, + "title": "What Am I Living For" + }, + { + "artist": "Alice Cooper", + "position": 88, + "title": "Under My Wheels" + }, + { + "artist": "N.F. Porter", + "position": 89, + "title": "Keep On Keeping On" + }, + { + "artist": "Heaven Bound with Tony Scotti", + "position": 90, + "title": "Five Hundred Miles" + }, + { + "artist": "Johnny Paycheck", + "position": 91, + "title": "She's All I Got" + }, + { + "artist": "The Bar-Kays", + "position": 92, + "title": "Son Of Shaft" + }, + { + "artist": "Jerry Butler & Brenda Lee Eager", + "position": 93, + "title": "Ain't Understanding Mellow" + }, + { + "artist": "The New Colony Six", + "position": 94, + "title": "Long Time To Be Alone" + }, + { + "artist": "Judy Collins", + "position": 95, + "title": "Open The Door (Song For Judith)" + }, + { + "artist": "The Persuaders", + "position": 96, + "title": "Love Gonna Pack Up (And Walk Out)" + }, + { + "artist": "Rufus Thomas", + "position": 97, + "title": "Do The Funky Penguin Part I" + }, + { + "artist": "Edgar Winter's White Trash", + "position": 98, + "title": "Keep Playin' That Rock 'N' Roll" + }, + { + "artist": "Ohio Players", + "position": 99, + "title": "Pain (Part I)" + }, + { + "artist": "The Assembled Multitude", + "position": 100, + "title": "Medley From Superstar (A Rock Opera)" + } + ], + "title": "1971 - Hot 100" + }, + { + "songs": [ + { + "artist": "George Harrison", + "position": 1, + "title": "My Sweet Lord/Isn't It A Pity" + }, + { + "artist": "The 5th Dimension", + "position": 2, + "title": "One Less Bell To Answer" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 3, + "title": "The Tears Of A Clown" + }, + { + "artist": "Dawn", + "position": 4, + "title": "Knock Three Times" + }, + { + "artist": "Santana", + "position": 5, + "title": "Black Magic Woman" + }, + { + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "position": 6, + "title": "I Think I Love You" + }, + { + "artist": "The Supremes", + "position": 7, + "title": "Stoned Love" + }, + { + "artist": "Chicago", + "position": 8, + "title": "Does Anybody Really Know What Time It Is?" + }, + { + "artist": "Brian Hyland", + "position": 9, + "title": "Gypsy Woman" + }, + { + "artist": "Badfinger", + "position": 10, + "title": "No Matter What" + }, + { + "artist": "The Presidents", + "position": 11, + "title": "5-10-15-20 (25-30 Years Of Love)" + }, + { + "artist": "Van Morrison", + "position": 12, + "title": "Domino" + }, + { + "artist": "Barbra Streisand", + "position": 13, + "title": "Stoney End" + }, + { + "artist": "Ray Price", + "position": 14, + "title": "For The Good Times" + }, + { + "artist": "Carpenters", + "position": 15, + "title": "We've Only Just Begun" + }, + { + "artist": "Jackson 5", + "position": 16, + "title": "I'll Be There" + }, + { + "artist": "The Supremes & Four Tops", + "position": 17, + "title": "River Deep - Mountain High" + }, + { + "artist": "King Floyd", + "position": 18, + "title": "Groove Me" + }, + { + "artist": "Perry Como", + "position": 19, + "title": "It's Impossible" + }, + { + "artist": "Neil Diamond", + "position": 20, + "title": "He Ain't Heavy...He's My Brother" + }, + { + "artist": "Andy Kim", + "position": 21, + "title": "Be My Baby" + }, + { + "artist": "Three Dog Night", + "position": 22, + "title": "One Man Band" + }, + { + "artist": "Chairmen Of The Board", + "position": 23, + "title": "Pay To The Piper" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 24, + "title": "If I Were Your Woman" + }, + { + "artist": "Tom Jones", + "position": 25, + "title": "Can't Stop Loving You" + }, + { + "artist": "Bee Gees", + "position": 26, + "title": "Lonely Days" + }, + { + "artist": "Bobby Bloom", + "position": 27, + "title": "Montego Bay" + }, + { + "artist": "Led Zeppelin", + "position": 28, + "title": "Immigrant Song" + }, + { + "artist": "Elton John", + "position": 29, + "title": "Your Song" + }, + { + "artist": "The Guess Who", + "position": 30, + "title": "Share The Land" + }, + { + "artist": "Stephen Stills", + "position": 31, + "title": "Love The One You're With" + }, + { + "artist": "Elvis Presley", + "position": 32, + "title": "You Don't Have To Say You Love Me/Patch It Up" + }, + { + "artist": "Lynn Anderson", + "position": 33, + "title": "Rose Garden" + }, + { + "artist": "The Flaming Ember", + "position": 34, + "title": "I'm Not My Brothers Keeper" + }, + { + "artist": "James Taylor", + "position": 35, + "title": "Fire And Rain" + }, + { + "artist": "Neil Diamond", + "position": 36, + "title": "Do It" + }, + { + "artist": "Aretha Franklin", + "position": 37, + "title": "Border Song (Holy Moses)/You And Me" + }, + { + "artist": "Eric Clapton", + "position": 38, + "title": "After Midnight" + }, + { + "artist": "Redeye", + "position": 39, + "title": "Games" + }, + { + "artist": "Runt", + "position": 40, + "title": "We Gotta Get You A Woman" + }, + { + "artist": "Stevie Wonder", + "position": 41, + "title": "Heaven Help Us All" + }, + { + "artist": "Ray Charles", + "position": 42, + "title": "If You Were Mine" + }, + { + "artist": "Neil Young", + "position": 43, + "title": "Only Love Can Break Your Heart" + }, + { + "artist": "Nitty Gritty Dirt Band", + "position": 44, + "title": "Mr. Bojangles" + }, + { + "artist": "Michael Nesmith & The First National Band", + "position": 45, + "title": "Silver Moon" + }, + { + "artist": "Dionne Warwick", + "position": 46, + "title": "The Green Grass Starts To Grow" + }, + { + "artist": "Jim Ed Brown", + "position": 47, + "title": "Morning" + }, + { + "artist": "Curtis Mayfield", + "position": 48, + "title": "(Don't Worry) If There's A Hell Below We're All Going To Go" + }, + { + "artist": "B.J. Thomas", + "position": 49, + "title": "Most Of All" + }, + { + "artist": "Edwin Starr", + "position": 50, + "title": "Stop The War Now" + }, + { + "artist": "Free", + "position": 51, + "title": "Stealer" + }, + { + "artist": "Jerry Reed", + "position": 52, + "title": "Amos Moses" + }, + { + "artist": "Rare Earth", + "position": 53, + "title": "Born To Wander" + }, + { + "artist": "O.V. Wright", + "position": 54, + "title": "Ace Of Spade" + }, + { + "artist": "Clarence Carter", + "position": 55, + "title": "It's All In Your Mind" + }, + { + "artist": "Elvis Presley", + "position": 56, + "title": "I Really Don't Want To Know/There Goes My Everything" + }, + { + "artist": "Melanie", + "position": 57, + "title": "Ruby Tuesday" + }, + { + "artist": "Judy Collins", + "position": 58, + "title": "Amazing Grace" + }, + { + "artist": "The Moments", + "position": 59, + "title": "All I Have" + }, + { + "artist": "Johnny Cash", + "position": 60, + "title": "Flesh And Blood" + }, + { + "artist": "Black Sabbath", + "position": 61, + "title": "Paranoid" + }, + { + "artist": "Little Sister", + "position": 62, + "title": "Somebody's Watching You" + }, + { + "artist": "Jackie Moore", + "position": 63, + "title": "Precious, Precious" + }, + { + "artist": "Al Green", + "position": 64, + "title": "I Can't Get Next To You" + }, + { + "artist": "Israel Popper Stopper Tolbert", + "position": 65, + "title": "Big Leg Woman (With A Short Short Mini Skirt)" + }, + { + "artist": "Deep Purple", + "position": 66, + "title": "Black Night" + }, + { + "artist": "James Taylor", + "position": 67, + "title": "Carolina In My Mind" + }, + { + "artist": "The Grass Roots", + "position": 68, + "title": "Temptation Eyes" + }, + { + "artist": "Eric Burdon And War", + "position": 69, + "title": "They Can't Take Away Our Music" + }, + { + "artist": "Tommy James", + "position": 70, + "title": "Church Street Soul Revival" + }, + { + "artist": "Gypsy", + "position": 71, + "title": "Gypsy Queen - Part 1" + }, + { + "artist": "Grand Funk Railroad", + "position": 72, + "title": "Mean Mistreater" + }, + { + "artist": "Frijid Pink", + "position": 73, + "title": "Heartbreak Hotel" + }, + { + "artist": "Diana Ross", + "position": 74, + "title": "Remember Me" + }, + { + "artist": "Robert John", + "position": 75, + "title": "When The Party Is Over" + }, + { + "artist": "Gordon Lightfoot", + "position": 76, + "title": "If You Could Read My Mind" + }, + { + "artist": "Ray Stevens", + "position": 77, + "title": "Bridget The Midget (The Queen Of The Blues)" + }, + { + "artist": "Liz Damon's Orient Express", + "position": 78, + "title": "1900 Yesterday" + }, + { + "artist": "Bobby Goldsboro", + "position": 79, + "title": "Watching Scotty Grow" + }, + { + "artist": "Redbone", + "position": 80, + "title": "Maggie" + }, + { + "artist": "Joe Simon", + "position": 81, + "title": "Your Time To Cry" + }, + { + "artist": "The Chi-lites", + "position": 82, + "title": "Are You My Woman? (Tell Me So)" + }, + { + "artist": "Loretta Lynn", + "position": 83, + "title": "Coal Miner's Daughter" + }, + { + "artist": "Teegarden & Van Winkle", + "position": 84, + "title": "Everything Is Going To Be Alright" + }, + { + "artist": "Anne Murray", + "position": 85, + "title": "Sing High - Sing Low" + }, + { + "artist": "The Originals", + "position": 86, + "title": "God Bless Whoever Sent You" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 87, + "title": "Holly Holy" + }, + { + "artist": "Rufus Thomas", + "position": 88, + "title": "(Do The) Push And Pull Part I" + }, + { + "artist": "Five Flights Up", + "position": 89, + "title": "After The Feeling Is Gone" + }, + { + "artist": "Dave Edmunds", + "position": 90, + "title": "I Hear You Knocking" + }, + { + "artist": "Buddy Miles", + "position": 91, + "title": "We Got To Live Together - Part I" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 92, + "title": "Help Me Find A Way (To Say I Love You)" + }, + { + "artist": "The Mike Curb Congregation", + "position": 93, + "title": "Burning Bridges" + }, + { + "artist": "The Sandpipers", + "position": 94, + "title": "Free To Carry On" + }, + { + "artist": "The Main Ingredient", + "position": 95, + "title": "I'm So Proud" + }, + { + "artist": "Brook Benton With The Dixie Flyers", + "position": 96, + "title": "Shoes" + }, + { + "artist": "Jackie Wilson", + "position": 97, + "title": "(I Can Feel Those Vibrations) This Love Is Real" + }, + { + "artist": "Wadsworth Mansion", + "position": 98, + "title": "Sweet Mary" + }, + { + "artist": "The Jazz Crusaders", + "position": 99, + "title": "Way Back Home" + }, + { + "artist": "Betty Everett", + "position": 100, + "title": "I Got To Tell Somebody" + } + ], + "title": "1970 - Hot 100" + }, + { + "songs": [ + { + "artist": "Diana Ross & The Supremes", + "position": 1, + "title": "Someday We'll Be Together" + }, + { + "artist": "Peter, Paul & Mary", + "position": 2, + "title": "Leaving On A Jet Plane" + }, + { + "artist": "B.J. Thomas", + "position": 3, + "title": "Raindrops Keep Fallin' On My Head" + }, + { + "artist": "Creedence Clearwater Revival", + "position": 4, + "title": "Down On The Corner/Fortunate Son" + }, + { + "artist": "Steam", + "position": 5, + "title": "Na Na Hey Hey Kiss Him Goodbye" + }, + { + "artist": "Neil Diamond", + "position": 6, + "title": "Holly Holy" + }, + { + "artist": "The Beatles", + "position": 7, + "title": "Come Together/Something" + }, + { + "artist": "Jackson 5", + "position": 8, + "title": "I Want You Back" + }, + { + "artist": "Led Zeppelin", + "position": 9, + "title": "Whole Lotta Love" + }, + { + "artist": "R.B. Greaves", + "position": 10, + "title": "Take A Letter Maria" + }, + { + "artist": "Ferrante & Teicher", + "position": 11, + "title": "Midnight Cowboy" + }, + { + "artist": "Three Dog Night", + "position": 12, + "title": "Eli's Coming" + }, + { + "artist": "Stevie Wonder", + "position": 13, + "title": "Yester-Me, Yester-You, Yesterday" + }, + { + "artist": "Bobby Sherman", + "position": 14, + "title": "La La La (If I Had You)" + }, + { + "artist": "Blood, Sweat & Tears", + "position": 15, + "title": "And When I Die" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 16, + "title": "These Eyes" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 17, + "title": "Friendship Train" + }, + { + "artist": "Mel And Tim", + "position": 18, + "title": "Backfield In Motion" + }, + { + "artist": "The Shocking Blue", + "position": 19, + "title": "Venus" + }, + { + "artist": "Tommy Roe", + "position": 20, + "title": "Jam Up Jelly Tight" + }, + { + "artist": "Billy Joe Royal", + "position": 21, + "title": "Cherry Hill Park" + }, + { + "artist": "The Archies", + "position": 22, + "title": "Jingle Jangle" + }, + { + "artist": "Elvis Presley", + "position": 23, + "title": "Don't Cry Daddy/Rubberneckin'" + }, + { + "artist": "The Flying Machine", + "position": 24, + "title": "Smile A Little Smile For Me" + }, + { + "artist": "The Originals", + "position": 25, + "title": "Baby, I'm For Real" + }, + { + "artist": "The Band", + "position": 26, + "title": "Up On Cripple Creek" + }, + { + "artist": "Dusty Springfield", + "position": 27, + "title": "A Brand New Me" + }, + { + "artist": "CROW", + "position": 28, + "title": "Evil Woman Don't Play Your Games With Me" + }, + { + "artist": "The 5th Dimension", + "position": 29, + "title": "Wedding Bell Blues" + }, + { + "artist": "Vanity Fare", + "position": 30, + "title": "Early In The Morning" + }, + { + "artist": "The Grass Roots", + "position": 31, + "title": "Heaven Knows" + }, + { + "artist": "Aretha Franklin", + "position": 32, + "title": "Eleanor Rigby" + }, + { + "artist": "Plastic Ono Band", + "position": 33, + "title": "Cold Turkey" + }, + { + "artist": "Tommy James And The Shondells", + "position": 34, + "title": "She" + }, + { + "artist": "Oliver", + "position": 35, + "title": "Sunday Mornin'" + }, + { + "artist": "James Brown", + "position": 36, + "title": "Ain't It Funky Now (Part 1)" + }, + { + "artist": "The Friends Of Distinction", + "position": 37, + "title": "Going In Circles" + }, + { + "artist": "Harlow Wilcox and the Oakies", + "position": 38, + "title": "Groovy Grubworm" + }, + { + "artist": "Jimmy Cliff", + "position": 39, + "title": "Wonderful World, Beautiful People" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 40, + "title": "Point It Out" + }, + { + "artist": "Engelbert Humperdinck", + "position": 41, + "title": "Winter World Of Love" + }, + { + "artist": "Merle Haggard And The Strangers", + "position": 42, + "title": "Okie From Muskogee" + }, + { + "artist": "Johnny Nash", + "position": 43, + "title": "Cupid" + }, + { + "artist": "Jerry Butler", + "position": 44, + "title": "Don't Let Love Hang You Up" + }, + { + "artist": "Four Tops", + "position": 45, + "title": "Don't Let Him Take Your Love From Me" + }, + { + "artist": "The Flaming Ember", + "position": 46, + "title": "Mind, Body and Soul" + }, + { + "artist": "Mark Lindsay", + "position": 47, + "title": "Arizona" + }, + { + "artist": "Janis Joplin", + "position": 48, + "title": "Kozmic Blues" + }, + { + "artist": "Marvin Gaye & Tammi Terrell", + "position": 49, + "title": "What You Gave Me" + }, + { + "artist": "Tom Jones", + "position": 50, + "title": "Without Love (There Is Nothing)" + }, + { + "artist": "Dionne Warwick", + "position": 51, + "title": "I'll Never Fall In Love Again" + }, + { + "artist": "Nancy Wilson", + "position": 52, + "title": "Can't Take My Eyes Off You" + }, + { + "artist": "Bobbie Gentry", + "position": 53, + "title": "Fancy" + }, + { + "artist": "Jay & The Americans", + "position": 54, + "title": "Walkin' In The Rain" + }, + { + "artist": "Wilbert Harrison", + "position": 55, + "title": "Let's Work Together (Part 1)" + }, + { + "artist": "Rick Nelson", + "position": 56, + "title": "She Belongs To Me" + }, + { + "artist": "The Clique", + "position": 57, + "title": "I'll Hold Out My Hand" + }, + { + "artist": "Joe Cocker", + "position": 58, + "title": "She Came In Through The Bathroom Window" + }, + { + "artist": "Gloria Taylor", + "position": 59, + "title": "You Got To Pay The Price" + }, + { + "artist": "Johnny Cash", + "position": 60, + "title": "Blistered/See Ruby Fall" + }, + { + "artist": "Dennis Yost And The Classics IV", + "position": 61, + "title": "Midnight" + }, + { + "artist": "The Original Caste", + "position": 62, + "title": "One Tin Soldier" + }, + { + "artist": "The Cuff Links", + "position": 63, + "title": "When Julie Comes Around" + }, + { + "artist": "Jefferson", + "position": 64, + "title": "Baby Take Me In Your Arms" + }, + { + "artist": "Jefferson Airplane", + "position": 65, + "title": "Volunteers" + }, + { + "artist": "James Brown", + "position": 66, + "title": "Let A Man Come In And Do The Popcorn (Part Two)" + }, + { + "artist": "David Ruffin", + "position": 67, + "title": "I'm So Glad I Fell For You" + }, + { + "artist": "The Tokens", + "position": 68, + "title": "She Lets Her Hair Down (Early In The Morning)" + }, + { + "artist": "Judy Collins", + "position": 69, + "title": "Turn! Turn! Turn!/To Everything There Is A Season" + }, + { + "artist": "The Guess Who", + "position": 70, + "title": "No Time" + }, + { + "artist": "Steppenwolf", + "position": 71, + "title": "Monster" + }, + { + "artist": "Eydie Gorme", + "position": 72, + "title": "Tonight I'll Say A Prayer" + }, + { + "artist": "Eddie Holman", + "position": 73, + "title": "Hey There Lonely Girl" + }, + { + "artist": "Savoy Brown", + "position": 74, + "title": "I'm Tired" + }, + { + "artist": "The Lettermen", + "position": 75, + "title": "Traces/Memories Medley" + }, + { + "artist": "Otis Leavill", + "position": 76, + "title": "I Love You" + }, + { + "artist": "Johnnie Taylor", + "position": 77, + "title": "Love Bones" + }, + { + "artist": "The Turtles", + "position": 78, + "title": "Lady-O" + }, + { + "artist": "Syl Johnson", + "position": 79, + "title": "Is It Because I'm Black" + }, + { + "artist": "The Meters", + "position": 80, + "title": "Look-Ka Py Py" + }, + { + "artist": "Lou Christie", + "position": 81, + "title": "Are You Getting Any Sunshine?" + }, + { + "artist": "The Illusion", + "position": 82, + "title": "Together" + }, + { + "artist": "Tommy Cash", + "position": 83, + "title": "Six White Horses" + }, + { + "artist": "The Sandpipers", + "position": 84, + "title": "Come Saturday Morning" + }, + { + "artist": "Nina Simone", + "position": 85, + "title": "To Be Young, Gifted And Black" + }, + { + "artist": "Ike & Tina Turner", + "position": 86, + "title": "Bold Soul Sister" + }, + { + "artist": "The Newbeats", + "position": 87, + "title": "Groovin' (Out On Life)" + }, + { + "artist": "Lulu", + "position": 88, + "title": "Oh Me Oh My (I'm A Fool For You Baby)" + }, + { + "artist": "The Intrigues", + "position": 89, + "title": "I'm Gonna Love You" + }, + { + "artist": "Simon Stokes/Nighthawks", + "position": 90, + "title": "Voodoo Woman" + }, + { + "artist": "Al Martino", + "position": 91, + "title": "I Started Loving You Again" + }, + { + "artist": "Archie Bell & The Drells", + "position": 92, + "title": "A World Without Music" + }, + { + "artist": "The Hollies", + "position": 93, + "title": "He Ain't Heavy, He's My Brother" + }, + { + "artist": "100 Proof Aged in Soul", + "position": 94, + "title": "Too Many Cooks (Spoil The Soup)" + }, + { + "artist": "Brother Jack McDuff", + "position": 95, + "title": "Theme From Electric Surfboard" + }, + { + "artist": "Betty Everett", + "position": 96, + "title": "It's Been A Long Time" + }, + { + "artist": "Grand Funk Railroad", + "position": 97, + "title": "Mr. Limousine Driver" + }, + { + "artist": "Kool & The Gang", + "position": 98, + "title": "The Gangs Back Again" + }, + { + "artist": "Ruby Winters", + "position": 99, + "title": "Guess Who" + }, + { + "artist": "B.B. King", + "position": 100, + "title": "The Thrill Is Gone" + } + ], + "title": "1969 - Hot 100" + }, + { + "songs": [ + { + "artist": "Marvin Gaye", + "position": 1, + "title": "I Heard It Through The Grapevine" + }, + { + "artist": "Stevie Wonder", + "position": 2, + "title": "For Once In My Life" + }, + { + "artist": "Diana Ross & The Supremes", + "position": 3, + "title": "Love Child" + }, + { + "artist": "Glen Campbell", + "position": 4, + "title": "Wichita Lineman" + }, + { + "artist": "Classics IV Featuring Dennis Yost", + "position": 5, + "title": "Stormy" + }, + { + "artist": "Dion", + "position": 6, + "title": "Abraham, Martin And John" + }, + { + "artist": "Diana Ross And The Supremes & The Temptations", + "position": 7, + "title": "I'm Gonna Make You Love Me" + }, + { + "artist": "Johnnie Taylor", + "position": 8, + "title": "Who's Making Love" + }, + { + "artist": "Bobby Vinton", + "position": 9, + "title": "I Love How You Love Me" + }, + { + "artist": "The Temptations", + "position": 10, + "title": "Cloud Nine" + }, + { + "artist": "Judy Collins", + "position": 11, + "title": "Both Sides Now" + }, + { + "artist": "Derek", + "position": 12, + "title": "Cinnamon" + }, + { + "artist": "B.J. Thomas", + "position": 13, + "title": "Hooked On A Feeling" + }, + { + "artist": "Aretha Franklin", + "position": 14, + "title": "See Saw" + }, + { + "artist": "The Beatles", + "position": 15, + "title": "Hey Jude" + }, + { + "artist": "Young-Holt Unlimited", + "position": 16, + "title": "Soulful Strut" + }, + { + "artist": "Eddie Floyd", + "position": 17, + "title": "Bring It On Home To Me" + }, + { + "artist": "Steppenwolf", + "position": 18, + "title": "Magic Carpet Ride" + }, + { + "artist": "Ohio Express", + "position": 19, + "title": "Chewy Chewy" + }, + { + "artist": "Canned Heat", + "position": 20, + "title": "Going Up The Country" + }, + { + "artist": "Dusty Springfield", + "position": 21, + "title": "Son-Of-A Preacher Man" + }, + { + "artist": "Leapy Lee", + "position": 22, + "title": "Little Arrows" + }, + { + "artist": "Clarence Carter", + "position": 23, + "title": "Too Weak To Fight" + }, + { + "artist": "Otis Redding", + "position": 24, + "title": "Papa's Got A Brand New Bag" + }, + { + "artist": "Mary Hopkin", + "position": 25, + "title": "Those Were The Days" + }, + { + "artist": "Rene & Rene", + "position": 26, + "title": "Lo Mucho Que Te Quiero (The More I Love You)" + }, + { + "artist": "Sergio Mendes & Brasil '66", + "position": 27, + "title": "Scarborough Fair" + }, + { + "artist": "Tommy James And The Shondells", + "position": 28, + "title": "Crimson And Clover" + }, + { + "artist": "Magic Lanterns", + "position": 29, + "title": "Shame, Shame" + }, + { + "artist": "Elvis Presley", + "position": 30, + "title": "If I Can Dream" + }, + { + "artist": "The Vogues", + "position": 31, + "title": "Till" + }, + { + "artist": "The Rascals", + "position": 32, + "title": "A Ray Of Hope" + }, + { + "artist": "Andy Williams with the St. Charles Borromeo Choir", + "position": 33, + "title": "Battle Hymn Of The Republic" + }, + { + "artist": "Tammy Wynette", + "position": 34, + "title": "Stand By Your Man" + }, + { + "artist": "Dionne Warwick", + "position": 35, + "title": "Promises, Promises" + }, + { + "artist": "Aretha Franklin", + "position": 36, + "title": "My Song" + }, + { + "artist": "The Chambers Brothers", + "position": 37, + "title": "I Can't Turn You Loose" + }, + { + "artist": "The Impressions", + "position": 38, + "title": "This Is My Country" + }, + { + "artist": "The Tymes", + "position": 39, + "title": "People" + }, + { + "artist": "Booker T. & The MG's", + "position": 40, + "title": "Hang 'Em High" + }, + { + "artist": "Bee Gees", + "position": 41, + "title": "I Started A Joke" + }, + { + "artist": "Sly & The Family Stone", + "position": 42, + "title": "Everyday People" + }, + { + "artist": "Wilson Pickett", + "position": 43, + "title": "Hey Jude" + }, + { + "artist": "The Lettermen", + "position": 44, + "title": "Put Your Head On My Shoulder" + }, + { + "artist": "Deep Purple", + "position": 45, + "title": "Kentucky Woman" + }, + { + "artist": "The Grass Roots", + "position": 46, + "title": "Bella Linda" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 47, + "title": "My Favorite Things" + }, + { + "artist": "The Royal Guardsmen", + "position": 48, + "title": "Baby Let's Wait" + }, + { + "artist": "Archie Bell & The Drells", + "position": 49, + "title": "There's Gonna Be A Showdown" + }, + { + "artist": "The Delfonics", + "position": 50, + "title": "Ready Or Not Here I Come (Can't Hide From Love)" + }, + { + "artist": "Bobby Taylor & The Vancouvers", + "position": 51, + "title": "Malinda" + }, + { + "artist": "Dean Martin", + "position": 52, + "title": "Not Enough Indians" + }, + { + "artist": "Brooklyn Bridge", + "position": 53, + "title": "Worst That Could Happen" + }, + { + "artist": "Autry Inman", + "position": 54, + "title": "Ballad Of Two Brothers" + }, + { + "artist": "Jeannie C. Riley", + "position": 55, + "title": "The Girl Most Likely" + }, + { + "artist": "The Jimi Hendrix Experience", + "position": 56, + "title": "Crosstown Traffic" + }, + { + "artist": "Jerry Butler", + "position": 57, + "title": "Are You Happy" + }, + { + "artist": "Creedence Clearwater Revival", + "position": 58, + "title": "I Put A Spell On You" + }, + { + "artist": "Petula Clark", + "position": 59, + "title": "American Boys" + }, + { + "artist": "Bobby Bland", + "position": 60, + "title": "Rockin' In The Same Old Boat" + }, + { + "artist": "The Beach Boys", + "position": 61, + "title": "Bluebirds Over The Mountain" + }, + { + "artist": "The 5th Dimension", + "position": 62, + "title": "California Soul" + }, + { + "artist": "O.C. Smith", + "position": 63, + "title": "Isn't It Lonely Together" + }, + { + "artist": "Johnny Cash", + "position": 64, + "title": "Daddy Sang Bass" + }, + { + "artist": "Vanilla Fudge", + "position": 65, + "title": "Season Of The Witch, Pt. 1" + }, + { + "artist": "Tyrone Davis", + "position": 66, + "title": "Can I Change My Mind" + }, + { + "artist": "Eric Burdon & The Animals", + "position": 67, + "title": "White Houses" + }, + { + "artist": "Barbara Acklin", + "position": 68, + "title": "Just Ain't No Love" + }, + { + "artist": "Bobby Womack", + "position": 69, + "title": "California Dreamin'" + }, + { + "artist": "Sam & Dave", + "position": 70, + "title": "Soul Sister, Brown Sugar" + }, + { + "artist": "The Unifics", + "position": 71, + "title": "The Beginning Of My End" + }, + { + "artist": "The Doors", + "position": 72, + "title": "Touch Me" + }, + { + "artist": "Tom Jones", + "position": 73, + "title": "A Minute Of Your Time" + }, + { + "artist": "Sammy Davis Jr.", + "position": 74, + "title": "I've Gotta Be Me" + }, + { + "artist": "Bob Seger System", + "position": 75, + "title": "Ramblin' Gamblin' Man" + }, + { + "artist": "The O'Kaysions", + "position": 76, + "title": "Love Machine" + }, + { + "artist": "Nancy Sinatra", + "position": 77, + "title": "Good Time Girl" + }, + { + "artist": "Paul Mauriat", + "position": 78, + "title": "Chitty Chitty Bang Bang" + }, + { + "artist": "Merrilee Rush", + "position": 79, + "title": "Reach Out" + }, + { + "artist": "Roger Miller", + "position": 80, + "title": "Vance" + }, + { + "artist": "Johnny Nash", + "position": 81, + "title": "You Got Soul" + }, + { + "artist": "Johnny Adams", + "position": 82, + "title": "Release Me" + }, + { + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "position": 83, + "title": "Electric Stories" + }, + { + "artist": "Andy Kim", + "position": 84, + "title": "Rainbow Ride" + }, + { + "artist": "The Moments", + "position": 85, + "title": "Not On The Outside" + }, + { + "artist": "James Brown", + "position": 86, + "title": "Tit For Tat (Ain't No Taking Back)" + }, + { + "artist": "John Wesley Ryles, I", + "position": 87, + "title": "Kay" + }, + { + "artist": "The Archies", + "position": 88, + "title": "Feelin' So Good (S.k.o.o.b.y-D.o.o)" + }, + { + "artist": "The Box Tops", + "position": 89, + "title": "Sweet Cream Ladies, Forward March" + }, + { + "artist": "Jay & The Americans", + "position": 90, + "title": "This Magic Moment" + }, + { + "artist": "Five Stairsteps & Cubie", + "position": 91, + "title": "Stay Close To Me" + }, + { + "artist": "Barry Ryan", + "position": 92, + "title": "Eloise" + }, + { + "artist": "The Esquires", + "position": 93, + "title": "You've Got The Power" + }, + { + "artist": "The Dells", + "position": 94, + "title": "Does Anybody Know I'm Here" + }, + { + "artist": "The Crystal Mansion", + "position": 95, + "title": "The Thought Of Loving You" + }, + { + "artist": "Chambers Brothers", + "position": 96, + "title": "Shout! - Part 1" + }, + { + "artist": "The Goodees", + "position": 97, + "title": "Condition Red" + }, + { + "artist": "Bobby Vee", + "position": 98, + "title": "I'm Into Lookin' For Someone To Love Me" + }, + { + "artist": "Al Martino", + "position": 99, + "title": "I Can't Help It (If I'm Still In Love With You)" + }, + { + "artist": "New Colony Six", + "position": 100, + "title": "Things I'd Like To Say" + } + ], + "title": "1968 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Beatles", + "position": 1, + "title": "Hello Goodbye" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 2, + "title": "I Heard It Through The Grapevine" + }, + { + "artist": "The Monkees", + "position": 3, + "title": "Daydream Believer" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 4, + "title": "I Second That Emotion" + }, + { + "artist": "The Union Gap Featuring Gary Puckett", + "position": 5, + "title": "Woman, Woman" + }, + { + "artist": "John Fred And The Playboys", + "position": 6, + "title": "Judy In Disguise (With Glasses)" + }, + { + "artist": "Aretha Franklin", + "position": 7, + "title": "Chain Of Fools" + }, + { + "artist": "The American Breed", + "position": 8, + "title": "Bend Me, Shape Me" + }, + { + "artist": "The Fantastic Johnny C", + "position": 9, + "title": "Boogaloo Down Broadway" + }, + { + "artist": "Joe Tex", + "position": 10, + "title": "Skinny Legs And All" + }, + { + "artist": "Martha Reeves & The Vandellas", + "position": 11, + "title": "Honey Chile" + }, + { + "artist": "Cher", + "position": 12, + "title": "You Better Sit Down Kids" + }, + { + "artist": "Strawberry Alarm Clock", + "position": 13, + "title": "Incense And Peppermints" + }, + { + "artist": "The Cowsills", + "position": 14, + "title": "The Rain, The Park & Other Things" + }, + { + "artist": "Johnny Rivers", + "position": 15, + "title": "Summer Rain" + }, + { + "artist": "Dionne Warwick", + "position": 16, + "title": "I Say A Little Prayer" + }, + { + "artist": "The Rose Garden", + "position": 17, + "title": "Next Plane To London" + }, + { + "artist": "Marvin Gaye & Tammi Terrell", + "position": 18, + "title": "If I Could Build My Whole World Around You" + }, + { + "artist": "Stone Poneys Featuring Linda Ronstadt", + "position": 19, + "title": "Different Drum" + }, + { + "artist": "The Turtles", + "position": 20, + "title": "She's My Girl" + }, + { + "artist": "Diana Ross & The Supremes", + "position": 21, + "title": "In And Out Of Love" + }, + { + "artist": "The Esquires", + "position": 22, + "title": "And Get Away" + }, + { + "artist": "Donovan", + "position": 23, + "title": "Wear Your Love Like Heaven" + }, + { + "artist": "The Box Tops", + "position": 24, + "title": "Neon Rainbow" + }, + { + "artist": "The Lemon Pipers", + "position": 25, + "title": "Green Tambourine" + }, + { + "artist": "The Young Rascals", + "position": 26, + "title": "It's Wonderful" + }, + { + "artist": "Bee Gees", + "position": 27, + "title": "(The Lights Went Out In) Massachusetts" + }, + { + "artist": "Jay And The Techniques", + "position": 28, + "title": "Keep The Ball Rollin'" + }, + { + "artist": "The Buckinghams", + "position": 29, + "title": "Susan" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 30, + "title": "Come See About Me" + }, + { + "artist": "Petula Clark", + "position": 31, + "title": "The Other Man's Grass Is Always Greener" + }, + { + "artist": "Eric Burdon & The Animals", + "position": 32, + "title": "Monterey" + }, + { + "artist": "Glen Campbell", + "position": 33, + "title": "By The Time I Get To Phoenix" + }, + { + "artist": "Brenton Wood", + "position": 34, + "title": "Baby You Got It" + }, + { + "artist": "Peter, Paul & Mary", + "position": 35, + "title": "Too Much Of Nothing" + }, + { + "artist": "Ed Ames", + "position": 36, + "title": "Who Will Answer?" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 37, + "title": "I Can't Stand Myself (When You Touch Me)" + }, + { + "artist": "The Doors", + "position": 38, + "title": "Love Me Two Times" + }, + { + "artist": "Lulu", + "position": 39, + "title": "To Sir With Love" + }, + { + "artist": "Etta James", + "position": 40, + "title": "Tell Mama" + }, + { + "artist": "Jackie Wilson", + "position": 41, + "title": "Since You Showed Me How To Be Happy" + }, + { + "artist": "The Sandpebbles", + "position": 42, + "title": "Love Power" + }, + { + "artist": "Percy Sledge", + "position": 43, + "title": "Cover Me" + }, + { + "artist": "Wes Montgomery", + "position": 44, + "title": "Windy" + }, + { + "artist": "Wilson Pickett", + "position": 45, + "title": "I'm In Love" + }, + { + "artist": "Dean Martin", + "position": 46, + "title": "In The Misty Moonlight" + }, + { + "artist": "Lulu", + "position": 47, + "title": "Best Of Both Worlds" + }, + { + "artist": "The Lettermen", + "position": 48, + "title": "Goin' Out Of My Head/Can't Take My Eyes Off You" + }, + { + "artist": "Dusty Springfield", + "position": 49, + "title": "What's It Gonna Be" + }, + { + "artist": "The Hollies", + "position": 50, + "title": "Dear Eloise" + }, + { + "artist": "The Marvelettes", + "position": 51, + "title": "My Baby Must Be A Magician" + }, + { + "artist": "The Mamas & The Papas", + "position": 52, + "title": "Dancing Bear" + }, + { + "artist": "Small Faces", + "position": 53, + "title": "Itchycoo Park" + }, + { + "artist": "Engelbert Humperdinck", + "position": 54, + "title": "Am I That Easy To Forget" + }, + { + "artist": "Kenny O'Dell", + "position": 55, + "title": "Beautiful People" + }, + { + "artist": "Peaches & Herb", + "position": 56, + "title": "Two Little Kids" + }, + { + "artist": "Bobby Vee And The Strangers", + "position": 57, + "title": "Beautiful People" + }, + { + "artist": "Billy Vera & Judy Clay", + "position": 58, + "title": "Storybook Children" + }, + { + "artist": "Sonny & Cher", + "position": 59, + "title": "Good Combination" + }, + { + "artist": "The Dave Clark Five", + "position": 60, + "title": "Everybody Knows" + }, + { + "artist": "Jefferson Airplane", + "position": 61, + "title": "Watch Her Ride" + }, + { + "artist": "The Human Beinz", + "position": 62, + "title": "Nobody But Me" + }, + { + "artist": "The Beach Boys", + "position": 63, + "title": "Darlin'" + }, + { + "artist": "Soul Survivors", + "position": 64, + "title": "Explosion (In Your Soul)" + }, + { + "artist": "The Dells", + "position": 65, + "title": "O-O, I Love You" + }, + { + "artist": "The Foundations", + "position": 66, + "title": "Baby, Now That I've Found You" + }, + { + "artist": "The O'Jays", + "position": 67, + "title": "I'll Be Sweeter Tomorrow (Than I Was Today)" + }, + { + "artist": "Henson Cargill", + "position": 68, + "title": "Skip A Rope" + }, + { + "artist": "Vikki Carr", + "position": 69, + "title": "The Lesson" + }, + { + "artist": "Classics IV", + "position": 70, + "title": "Spooky" + }, + { + "artist": "Bill Cosby", + "position": 71, + "title": "Hooray For The Salvation Army Band" + }, + { + "artist": "Tommy Boyce & Bobby Hart", + "position": 72, + "title": "I Wonder What She's Doing Tonite" + }, + { + "artist": "Al Greene & The Soul Mate's", + "position": 73, + "title": "Back Up Train" + }, + { + "artist": "Hugh Masekela", + "position": 74, + "title": "Up-Up And Away" + }, + { + "artist": "The Beatles", + "position": 75, + "title": "I Am The Walrus" + }, + { + "artist": "Harpers Bizarre", + "position": 76, + "title": "Chattanooga Choo Choo" + }, + { + "artist": "The Rolling Stones", + "position": 77, + "title": "She's A Rainbow" + }, + { + "artist": "Frankie Valli", + "position": 78, + "title": "To Give (The Reason I Live)" + }, + { + "artist": "Jimi Hendrix", + "position": 79, + "title": "Foxey Lady" + }, + { + "artist": "Strawberry Alarm Clock", + "position": 80, + "title": "Tomorrow" + }, + { + "artist": "Tom Jones", + "position": 81, + "title": "I'm Coming Home" + }, + { + "artist": "Carla Thomas", + "position": 82, + "title": "Pick Up The Pieces" + }, + { + "artist": "Bobby Vinton", + "position": 83, + "title": "Just As Much As Ever" + }, + { + "artist": "Jerry Butler", + "position": 84, + "title": "Lost" + }, + { + "artist": "Al Martino", + "position": 85, + "title": "A Voice In The Choir" + }, + { + "artist": "King Curtis & The Kingpins", + "position": 86, + "title": "I Was Made To Love Her" + }, + { + "artist": "Ronnie Dove", + "position": 87, + "title": "Dancin' Out Of My Heart" + }, + { + "artist": "Bill Wyman", + "position": 88, + "title": "In Another Land" + }, + { + "artist": "5 Stairsteps and Cubie", + "position": 89, + "title": "Something's Missing" + }, + { + "artist": "Bruce Channel", + "position": 90, + "title": "Mr. Bus Driver" + }, + { + "artist": "Billy Stewart", + "position": 91, + "title": "Cross My Heart" + }, + { + "artist": "The Music Makers", + "position": 92, + "title": "United (Part 1)" + }, + { + "artist": "Leon Haywood", + "position": 93, + "title": "Mellow Moonlight" + }, + { + "artist": "Aretha Franklin", + "position": 94, + "title": "Mockingbird" + }, + { + "artist": "Barbara Mason", + "position": 95, + "title": "Oh, How It Hurts" + }, + { + "artist": "The Epic Splendor", + "position": 96, + "title": "A Little Rain Must Fall" + }, + { + "artist": "The Manhattans", + "position": 97, + "title": "I Call It Love" + }, + { + "artist": "Laura Lee", + "position": 98, + "title": "Up Tight, Good Man" + }, + { + "artist": "The Impressions", + "position": 99, + "title": "We're A Winner" + }, + { + "artist": "The Fireballs", + "position": 100, + "title": "Bottle Of Wine" + } + ], + "title": "1967 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Monkees", + "position": 1, + "title": "I'm A Believer" + }, + { + "artist": "The Royal Guardsmen", + "position": 2, + "title": "Snoopy Vs. The Red Baron" + }, + { + "artist": "The New Vaudeville Band", + "position": 3, + "title": "Winchester Cathedral" + }, + { + "artist": "Frank Sinatra", + "position": 4, + "title": "That's Life" + }, + { + "artist": "Nancy Sinatra", + "position": 5, + "title": "Sugar Town" + }, + { + "artist": "Donovan", + "position": 6, + "title": "Mellow Yellow" + }, + { + "artist": "Aaron Neville", + "position": 7, + "title": "Tell It Like It Is" + }, + { + "artist": "The Temptations", + "position": 8, + "title": "(I Know) I'm Losing You" + }, + { + "artist": "Stevie Wonder", + "position": 9, + "title": "A Place In The Sun" + }, + { + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "position": 10, + "title": "Good Thing" + }, + { + "artist": "Mitch Ryder And The Detroit Wheels", + "position": 11, + "title": "Devil With A Blue Dress On & Good Golly Miss Molly" + }, + { + "artist": "Sandy Posey", + "position": 12, + "title": "Single Girl" + }, + { + "artist": "The Beach Boys", + "position": 13, + "title": "Good Vibrations" + }, + { + "artist": "The Supremes", + "position": 14, + "title": "You Keep Me Hangin' On" + }, + { + "artist": "Four Tops", + "position": 15, + "title": "Standing In The Shadows Of Love" + }, + { + "artist": "The Music Machine", + "position": 16, + "title": "Talk Talk" + }, + { + "artist": "Bobby Vinton", + "position": 17, + "title": "Coming Home Soldier" + }, + { + "artist": "Ronnie Dove", + "position": 18, + "title": "Cry" + }, + { + "artist": "The Mamas & The Papas", + "position": 19, + "title": "Words Of Love" + }, + { + "artist": "Roger Williams", + "position": 20, + "title": "Born Free" + }, + { + "artist": "Jackie Wilson", + "position": 21, + "title": "Whispers (Gettin' Louder)" + }, + { + "artist": "? (Question Mark) & The Mysterians", + "position": 22, + "title": "I Need Somebody" + }, + { + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "position": 23, + "title": "Tell It To The Rain" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 24, + "title": "Mame" + }, + { + "artist": "Peter And Gordon", + "position": 25, + "title": "Lady Godiva" + }, + { + "artist": "Wilson Pickett", + "position": 26, + "title": "Mustang Sally" + }, + { + "artist": "Herman's Hermits", + "position": 27, + "title": "East West" + }, + { + "artist": "Jimmy Ruffin", + "position": 28, + "title": "I've Passed This Way Before" + }, + { + "artist": "Eric Burdon & The Animals", + "position": 29, + "title": "Help Me Girl" + }, + { + "artist": "The Yardbirds", + "position": 30, + "title": "Happenings Ten Years Time Ago" + }, + { + "artist": "Neil Diamond", + "position": 31, + "title": "I Got The Feelin' (Oh No No)" + }, + { + "artist": "The Monkees", + "position": 32, + "title": "(I'm Not Your) Steppin' Stone" + }, + { + "artist": "The Lovin' Spoonful", + "position": 33, + "title": "Nashville Cats" + }, + { + "artist": "The Miracles", + "position": 34, + "title": "(Come 'Round Here) I'm The One You Need" + }, + { + "artist": "The Association", + "position": 35, + "title": "Pandora's Golden Heebie Jeebies" + }, + { + "artist": "Otis Redding", + "position": 36, + "title": "Try A Little Tenderness" + }, + { + "artist": "The Seekers", + "position": 37, + "title": "Georgy Girl" + }, + { + "artist": "Petula Clark", + "position": 38, + "title": "Color My World" + }, + { + "artist": "Tommy James And The Shondells", + "position": 39, + "title": "It's Only Love" + }, + { + "artist": "Percy Sledge", + "position": 40, + "title": "It Tears Me Up" + }, + { + "artist": "Blues Magoos", + "position": 41, + "title": "(We Ain't Got) Nothin' Yet" + }, + { + "artist": "The Innocence", + "position": 42, + "title": "There's Got To Be A Word!" + }, + { + "artist": "Senator Everett McKinley Dirksen", + "position": 43, + "title": "Gallant Men" + }, + { + "artist": "Bobby Goldsboro", + "position": 44, + "title": "Blue Autumn" + }, + { + "artist": "Martha & The Vandellas", + "position": 45, + "title": "I'm Ready For Love" + }, + { + "artist": "Simon & Garfunkel", + "position": 46, + "title": "A Hazy Shade Of Winter" + }, + { + "artist": "Keith", + "position": 47, + "title": "98.6" + }, + { + "artist": "Terry Knight and The Pack", + "position": 48, + "title": "I (Who Have Nothing)" + }, + { + "artist": "Gene Chandler", + "position": 49, + "title": "I Fooled You This Time" + }, + { + "artist": "The Hollies", + "position": 50, + "title": "Stop Stop Stop" + }, + { + "artist": "Gary Lewis And The Playboys", + "position": 51, + "title": "Where Will The Words Come From" + }, + { + "artist": "Dr. West's Medicine Show and Junk Band", + "position": 52, + "title": "The Eggplant That Ate Chicago" + }, + { + "artist": "Eddie Floyd", + "position": 53, + "title": "Knock On Wood" + }, + { + "artist": "The Electric Prunes", + "position": 54, + "title": "I Had Too Much To Dream (Last Night)" + }, + { + "artist": "The Critters", + "position": 55, + "title": "Bad Misunderstanding" + }, + { + "artist": "The Happenings", + "position": 56, + "title": "Goodnight My Love" + }, + { + "artist": "Baja Marimba Band", + "position": 57, + "title": "Ghost Riders In The Sky" + }, + { + "artist": "Spyder Turner", + "position": 58, + "title": "Stand By Me" + }, + { + "artist": "Joe Tex", + "position": 59, + "title": "Papa Was Too" + }, + { + "artist": "Lou Rawls", + "position": 60, + "title": "You Can Bring Me All Your Heartaches" + }, + { + "artist": "Sam The Sham and the Pharaohs", + "position": 61, + "title": "How Do You Catch A Girl" + }, + { + "artist": "The Drifters", + "position": 62, + "title": "Baby What I Mean" + }, + { + "artist": "The Emperor's", + "position": 63, + "title": "Karate" + }, + { + "artist": "Pozo Seco Singers", + "position": 64, + "title": "Look What You've Done" + }, + { + "artist": "The Outsiders", + "position": 65, + "title": "Help Me Girl" + }, + { + "artist": "Bobby Darin", + "position": 66, + "title": "The Girl That Stood Beside Me" + }, + { + "artist": "Dean Martin", + "position": 67, + "title": "(Open Up The Door) Let The Good Times In" + }, + { + "artist": "The Young Holt Trio", + "position": 68, + "title": "Wack Wack" + }, + { + "artist": "Baby Ray", + "position": 69, + "title": "There's Something On Your Mind" + }, + { + "artist": "The Youngbloods", + "position": 70, + "title": "Grizzly Bear" + }, + { + "artist": "Peter And Gordon", + "position": 71, + "title": "Knight In Rusty Armour" + }, + { + "artist": "Roy Orbison", + "position": 72, + "title": "Communication Breakdown" + }, + { + "artist": "Dionne Warwick", + "position": 73, + "title": "Another Night" + }, + { + "artist": "Tom Jones", + "position": 74, + "title": "Green, Green Grass Of Home" + }, + { + "artist": "Gene Pitney", + "position": 75, + "title": "Just One Smile" + }, + { + "artist": "Alvin Cash & The Registers", + "position": 76, + "title": "Alvin's Boo-Ga-Loo" + }, + { + "artist": "The Mamas & The Papas", + "position": 77, + "title": "Dancing In The Street" + }, + { + "artist": "Ramsey Lewis", + "position": 78, + "title": "Day Tripper" + }, + { + "artist": "Damita Jo", + "position": 79, + "title": "If You Go Away" + }, + { + "artist": "The Artistics", + "position": 80, + "title": "I'm Gonna Miss You" + }, + { + "artist": "The Gunter Kallmann Chorus", + "position": 81, + "title": "Wish Me A Rainbow" + }, + { + "artist": "The Cyrkle", + "position": 82, + "title": "Please Don't Ever Leave Me" + }, + { + "artist": "Sergio Mendes & Brasil '66", + "position": 83, + "title": "Constant Rain (Chove Chuva)" + }, + { + "artist": "Tommy Roe", + "position": 84, + "title": "It's Now Winters Day" + }, + { + "artist": "The Seeds", + "position": 85, + "title": "Pushin' Too Hard" + }, + { + "artist": "Bob Crewe Generation", + "position": 86, + "title": "Music To Watch Girls By" + }, + { + "artist": "Howard Tate", + "position": 87, + "title": "Look At Granny Run, Run" + }, + { + "artist": "Freddy Scott", + "position": 88, + "title": "Are You Lonely For Me" + }, + { + "artist": "J.J. Jackson", + "position": 89, + "title": "I Dig Girls" + }, + { + "artist": "The Buckinghams", + "position": 90, + "title": "Kind Of A Drag" + }, + { + "artist": "The Sopwith Camel", + "position": 91, + "title": "Hello Hello" + }, + { + "artist": "Peaches & Herb", + "position": 92, + "title": "Let's Fall In Love" + }, + { + "artist": "Patti LaBelle And The Blue Belles", + "position": 93, + "title": "Take Me For A Little While" + }, + { + "artist": "Boots Randolph", + "position": 94, + "title": "The Shadow Of Your Smile" + }, + { + "artist": "Jimmy Castor", + "position": 95, + "title": "Hey, Leroy, Your Mama's Callin' You" + }, + { + "artist": "Bobby Hebb", + "position": 96, + "title": "Love Me" + }, + { + "artist": "Sam & Dave", + "position": 97, + "title": "You Got Me Hummin'" + }, + { + "artist": "Don Ho and the Aliis", + "position": 98, + "title": "Tiny Bubbles" + }, + { + "artist": "The Hardtimes", + "position": 99, + "title": "Fortune Teller" + }, + { + "artist": "The Spencer Davis Group", + "position": 100, + "title": "Gimme Some Lovin'" + } + ], + "title": "1966 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Dave Clark Five", + "position": 1, + "title": "Over And Over" + }, + { + "artist": "The Byrds", + "position": 2, + "title": "Turn! Turn! Turn! (To Everything There Is A Season)" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 3, + "title": "I Got You (I Feel Good)" + }, + { + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "position": 4, + "title": "Let's Hang On!" + }, + { + "artist": "Simon & Garfunkel", + "position": 5, + "title": "The Sound Of Silence" + }, + { + "artist": "Eddy Arnold", + "position": 6, + "title": "Make The World Go Away" + }, + { + "artist": "The McCoys", + "position": 7, + "title": "Fever" + }, + { + "artist": "Roger Miller", + "position": 8, + "title": "England Swings" + }, + { + "artist": "The Righteous Brothers", + "position": 9, + "title": "Ebb Tide" + }, + { + "artist": "The Shangri-Las", + "position": 10, + "title": "I Can Never Go Home Anymore" + }, + { + "artist": "The Beatles", + "position": 11, + "title": "We Can Work It Out" + }, + { + "artist": "The Wonder Who?", + "position": 12, + "title": "Don't Think Twice" + }, + { + "artist": "The Statler Brothers", + "position": 13, + "title": "Flowers On The Wall" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 14, + "title": "Puppet On A String" + }, + { + "artist": "Ramsey Lewis Trio", + "position": 15, + "title": "Hang On Sloopy" + }, + { + "artist": "The Vogues", + "position": 16, + "title": "Five O'Clock World" + }, + { + "artist": "Barry Young", + "position": 17, + "title": "One Has My Name (The Other Has My Heart)" + }, + { + "artist": "Jay & The Americans", + "position": 18, + "title": "Sunday And Me" + }, + { + "artist": "Dean Martin", + "position": 19, + "title": "I Will" + }, + { + "artist": "The Supremes", + "position": 20, + "title": "I Hear A Symphony" + }, + { + "artist": "The Beach Boys", + "position": 21, + "title": "The Little Girl I Once Knew" + }, + { + "artist": "Gary Lewis And The Playboys", + "position": 22, + "title": "She's Just My Style" + }, + { + "artist": "The Lovin' Spoonful", + "position": 23, + "title": "You Didn't Have To Be So Nice" + }, + { + "artist": "The Animals", + "position": 24, + "title": "It's My Life" + }, + { + "artist": "The Yardbirds", + "position": 25, + "title": "I'm A Man" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 26, + "title": "Taste Of Honey" + }, + { + "artist": "Len Barry", + "position": 27, + "title": "1-2-3" + }, + { + "artist": "The Beatles", + "position": 28, + "title": "Day Tripper" + }, + { + "artist": "Jackie Lee", + "position": 29, + "title": "The Duck" + }, + { + "artist": "Al Martino", + "position": 30, + "title": "Spanish Eyes" + }, + { + "artist": "We Five", + "position": 31, + "title": "Let's Get Together" + }, + { + "artist": "Roy Head And The Traits", + "position": 32, + "title": "Apple Of My Eye" + }, + { + "artist": "The T-Bones", + "position": 33, + "title": "No Matter What Shape (Your Stomach's In)" + }, + { + "artist": "Four Tops", + "position": 34, + "title": "Something About You" + }, + { + "artist": "Bobby Vinton", + "position": 35, + "title": "Satin Pillows" + }, + { + "artist": "The Rolling Stones", + "position": 36, + "title": "Get Off Of My Cloud" + }, + { + "artist": "Gene Pitney", + "position": 37, + "title": "Princess In Rags" + }, + { + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "position": 38, + "title": "Just Like Me" + }, + { + "artist": "The Newbeats", + "position": 39, + "title": "Run, Baby Run (Back Into My Arms)" + }, + { + "artist": "Fontella Bass", + "position": 40, + "title": "Rescue Me" + }, + { + "artist": "Tom Jones", + "position": 41, + "title": "Thunderball" + }, + { + "artist": "The Impressions", + "position": 42, + "title": "You've Been Cheatin'" + }, + { + "artist": "The Viscounts", + "position": 43, + "title": "Harlem Nocturne" + }, + { + "artist": "Don Covay & The Goodtimers", + "position": 44, + "title": "Seesaw" + }, + { + "artist": "Joe Tex", + "position": 45, + "title": "A Sweet Woman Like You" + }, + { + "artist": "Marvin Gaye", + "position": 46, + "title": "Ain't That Peculiar" + }, + { + "artist": "Connie Francis", + "position": 47, + "title": "Jealous Heart" + }, + { + "artist": "Herman's Hermits", + "position": 48, + "title": "A Must To Avoid" + }, + { + "artist": "Ronny And The Daytonas", + "position": 49, + "title": "Sandy" + }, + { + "artist": "The Hollies", + "position": 50, + "title": "Look Through Any Window" + }, + { + "artist": "Vic Dana", + "position": 51, + "title": "Crystal Chandelier" + }, + { + "artist": "The Fortunes", + "position": 52, + "title": "Here It Comes Again" + }, + { + "artist": "The Knickerbockers", + "position": 53, + "title": "Lies" + }, + { + "artist": "Billy Joe Royal", + "position": 54, + "title": "I've Got To Be Somebody" + }, + { + "artist": "Ronnie Dove", + "position": 55, + "title": "Kiss Away" + }, + { + "artist": "Noel Harrison", + "position": 56, + "title": "A Young Girl" + }, + { + "artist": "The Kinks", + "position": 57, + "title": "A Well Respected Man" + }, + { + "artist": "Dionne Warwick", + "position": 58, + "title": "Are You There (With Another Girl)" + }, + { + "artist": "The Toys", + "position": 59, + "title": "Attack" + }, + { + "artist": "Buck Owens and The Buckaroos", + "position": 60, + "title": "Buckaroo" + }, + { + "artist": "Ray Charles", + "position": 61, + "title": "Crying Time" + }, + { + "artist": "The Packers", + "position": 62, + "title": "Hole In The Wall" + }, + { + "artist": "James Brown At The Organ", + "position": 63, + "title": "Try Me" + }, + { + "artist": "Wilson Pickett", + "position": 64, + "title": "Don't Fight It" + }, + { + "artist": "Mitch Ryder And The Detroit Wheels", + "position": 65, + "title": "Jenny Take A Ride!" + }, + { + "artist": "Hedgehoppers Anonymous", + "position": 66, + "title": "It's Good News Week" + }, + { + "artist": "Dino, Desi & Billy", + "position": 67, + "title": "Please Don't Fight It" + }, + { + "artist": "Bobby Goldsboro", + "position": 68, + "title": "Broomstick Cowboy" + }, + { + "artist": "Brook Benton", + "position": 69, + "title": "Mother Nature, Father Time" + }, + { + "artist": "Lou Johnson", + "position": 70, + "title": "A Time To Love-A Time To Cry (Petite Fleur)" + }, + { + "artist": "The C.O.D.'s", + "position": 71, + "title": "Michael" + }, + { + "artist": "Patti LaBelle And The Blue Belles", + "position": 72, + "title": "All Or Nothing" + }, + { + "artist": "Johnny Tillotson", + "position": 73, + "title": "Our World" + }, + { + "artist": "Johnny Rivers", + "position": 74, + "title": "Under Your Spell Again" + }, + { + "artist": "Jack Jones", + "position": 75, + "title": "Love Bug" + }, + { + "artist": "Barbra Streisand", + "position": 76, + "title": "Second Hand Rose" + }, + { + "artist": "Frank Sinatra", + "position": 77, + "title": "It Was A Very Good Year" + }, + { + "artist": "Bobby Powell", + "position": 78, + "title": "C.C. Rider" + }, + { + "artist": "The Rolling Stones", + "position": 79, + "title": "As Tears Go By" + }, + { + "artist": "Mike Douglas", + "position": 80, + "title": "The Men In My Little Girl's Life" + }, + { + "artist": "Johnny Thunder", + "position": 81, + "title": "Everybody Do The Sloopy" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 82, + "title": "Zorba The Greek" + }, + { + "artist": "Fontella Bass", + "position": 83, + "title": "Recovery" + }, + { + "artist": "The Miracles", + "position": 84, + "title": "Going To A Go-Go" + }, + { + "artist": "Otis Redding", + "position": 85, + "title": "Just One More Day" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 86, + "title": "Tijuana Taxi" + }, + { + "artist": "Maxine Brown", + "position": 87, + "title": "If You Gotta Make A Fool Of Somebody" + }, + { + "artist": "The 4 Seasons", + "position": 88, + "title": "Little Boy (In Grown Up Clothes)" + }, + { + "artist": "Marianne Faithfull", + "position": 89, + "title": "Go Away From My World" + }, + { + "artist": "Petula Clark", + "position": 90, + "title": "My Love" + }, + { + "artist": "Martha & The Vandellas", + "position": 91, + "title": "Love (Makes Me Do Foolish Things)" + }, + { + "artist": "The Temptations", + "position": 92, + "title": "Don't Look Back" + }, + { + "artist": "Lou Christie", + "position": 93, + "title": "Lightnin' Strikes" + }, + { + "artist": "The Young Rascals", + "position": 94, + "title": "I Ain't Gonna Eat Out My Heart Anymore" + }, + { + "artist": "Stevie Wonder", + "position": 95, + "title": "Uptight (Everything's Alright)" + }, + { + "artist": "Lowell Fulsom", + "position": 96, + "title": "Black Nights" + }, + { + "artist": "The Beau Brummels", + "position": 97, + "title": "Good Time Music" + }, + { + "artist": "Johnny Mathis", + "position": 98, + "title": "On A Clear Day You Can See Forever" + }, + { + "artist": "Tony Bennett", + "position": 99, + "title": "Love Theme From The Sandpiper (The Shadow Of Your Smile)" + }, + { + "artist": "King Curtis", + "position": 100, + "title": "Spanish Harlem" + } + ], + "title": "1965 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Beatles", + "position": 1, + "title": "I Feel Fine" + }, + { + "artist": "The Supremes", + "position": 2, + "title": "Come See About Me" + }, + { + "artist": "Bobby Vinton", + "position": 3, + "title": "Mr. Lonely" + }, + { + "artist": "The Beatles", + "position": 4, + "title": "She's A Woman" + }, + { + "artist": "The Zombies", + "position": 5, + "title": "She's Not There" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 6, + "title": "Goin' Out Of My Head" + }, + { + "artist": "Lorne Greene", + "position": 7, + "title": "Ringo" + }, + { + "artist": "The Beach Boys", + "position": 8, + "title": "Dance, Dance, Dance" + }, + { + "artist": "The Larks", + "position": 9, + "title": "The Jerk" + }, + { + "artist": "The Rolling Stones", + "position": 10, + "title": "Time Is On My Side" + }, + { + "artist": "The Searchers", + "position": 11, + "title": "Love Potion Number Nine" + }, + { + "artist": "The Impressions", + "position": 12, + "title": "Amen" + }, + { + "artist": "Manfred Mann", + "position": 13, + "title": "Sha La La" + }, + { + "artist": "Julie Rogers", + "position": 14, + "title": "The Wedding" + }, + { + "artist": "Gene Pitney", + "position": 15, + "title": "I'm Gonna Be Strong" + }, + { + "artist": "Johnny Rivers", + "position": 16, + "title": "Mountain Of Love" + }, + { + "artist": "Herman's Hermits", + "position": 17, + "title": "I'm Into Something Good" + }, + { + "artist": "The Kinks", + "position": 18, + "title": "You Really Got Me" + }, + { + "artist": "The Dave Clark Five", + "position": 19, + "title": "Any Way You Want It" + }, + { + "artist": "The Drifters", + "position": 20, + "title": "Saturday Night At The Movies" + }, + { + "artist": "Robert Goulet", + "position": 21, + "title": "My Love, Forgive Me (Amore, Scusami)" + }, + { + "artist": "The Shangri-Las", + "position": 22, + "title": "Leader Of The Pack" + }, + { + "artist": "Del Shannon", + "position": 23, + "title": "Keep Searchin' (We'll Follow The Sun)" + }, + { + "artist": "Chad & Jeremy", + "position": 24, + "title": "Willow Weep For Me" + }, + { + "artist": "Maxine Brown", + "position": 25, + "title": "Oh No Not My Baby" + }, + { + "artist": "Marianne Faithfull", + "position": 26, + "title": "As Tears Go By" + }, + { + "artist": "Marvin Gaye", + "position": 27, + "title": "How Sweet It Is To Be Loved By You" + }, + { + "artist": "The Detergents", + "position": 28, + "title": "Leader Of The Laundromat" + }, + { + "artist": "The Marvelettes", + "position": 29, + "title": "Too Many Fish In The Sea" + }, + { + "artist": "Andy Williams", + "position": 30, + "title": "Dear Heart" + }, + { + "artist": "Johnny Tillotson", + "position": 31, + "title": "She Understands Me" + }, + { + "artist": "Dick and DeeDee", + "position": 32, + "title": "Thou Shalt Not Steal" + }, + { + "artist": "The Supremes", + "position": 33, + "title": "Baby Love" + }, + { + "artist": "The Righteous Brothers", + "position": 34, + "title": "You've Lost That Lovin' Feelin'" + }, + { + "artist": "The Ray Charles Singers", + "position": 35, + "title": "One More Time" + }, + { + "artist": "Ronnie Dove", + "position": 36, + "title": "Right Or Wrong" + }, + { + "artist": "Jack Jones", + "position": 37, + "title": "Dear Heart" + }, + { + "artist": "The Ronettes", + "position": 38, + "title": "Walking In The Rain" + }, + { + "artist": "Martha & The Vandellas", + "position": 39, + "title": "Wild One" + }, + { + "artist": "Matt Monro", + "position": 40, + "title": "Walk Away" + }, + { + "artist": "Petula Clark", + "position": 41, + "title": "Downtown" + }, + { + "artist": "Bobbi Martin", + "position": 42, + "title": "Don't Forget I Still Love You" + }, + { + "artist": "Roger Miller", + "position": 43, + "title": "Do-Wacka-Do" + }, + { + "artist": "The Gestures", + "position": 44, + "title": "Run, Run, Run" + }, + { + "artist": "Betty Everett & Jerry Butler", + "position": 45, + "title": "Smile" + }, + { + "artist": "The You Know Who Group!", + "position": 46, + "title": "Roses Are Red My Love" + }, + { + "artist": "Chuck Jackson", + "position": 47, + "title": "Since I Don't Have You" + }, + { + "artist": "Gene Chandler", + "position": 48, + "title": "What Now" + }, + { + "artist": "The Animals", + "position": 49, + "title": "Boom Boom" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 50, + "title": "Ask Me" + }, + { + "artist": "Gerry And The Pacemakers", + "position": 51, + "title": "I'll Be There" + }, + { + "artist": "The Waikikis", + "position": 52, + "title": "Hawaii Tattoo" + }, + { + "artist": "Candy & The Kisses", + "position": 53, + "title": "The 81" + }, + { + "artist": "Sandie Shaw", + "position": 54, + "title": "(There's) Always Something There To Remind Me" + }, + { + "artist": "Chuck Berry", + "position": 55, + "title": "Promised Land" + }, + { + "artist": "Four Tops", + "position": 56, + "title": "Without The One You Love (Life's Not Worth While)" + }, + { + "artist": "Dean Martin", + "position": 57, + "title": "You're Nobody Till Somebody Loves You" + }, + { + "artist": "The Hullaballoos", + "position": 58, + "title": "I'm Gonna Love You Too" + }, + { + "artist": "Joe Tex", + "position": 59, + "title": "Hold What You've Got" + }, + { + "artist": "Shirley Ellis", + "position": 60, + "title": "The Name Game" + }, + { + "artist": "Gale Garnett", + "position": 61, + "title": "Lovin' Place" + }, + { + "artist": "Ray Charles", + "position": 62, + "title": "Makin' Whoopee" + }, + { + "artist": "Ben E. King", + "position": 63, + "title": "Seven Letters" + }, + { + "artist": "Major Lance", + "position": 64, + "title": "Sometimes I Wonder" + }, + { + "artist": "The Miracles", + "position": 65, + "title": "Come On Do The Jerk" + }, + { + "artist": "Betty Everett", + "position": 66, + "title": "Getting Mighty Crowded" + }, + { + "artist": "Solomon Burke", + "position": 67, + "title": "The Price" + }, + { + "artist": "The Honeycombs", + "position": 68, + "title": "I Can't Stop" + }, + { + "artist": "The Kinks", + "position": 69, + "title": "All Day And All Of The Night" + }, + { + "artist": "Brook Benton", + "position": 70, + "title": "Do It Right" + }, + { + "artist": "Irma Thomas", + "position": 71, + "title": "He's My Guy" + }, + { + "artist": "Walter Jackson", + "position": 72, + "title": "It's All Over" + }, + { + "artist": "Jo Ann & Troy", + "position": 73, + "title": "I Found A Love Oh What A Love" + }, + { + "artist": "Harold Betters", + "position": 74, + "title": "Do Anything You Wanna (Part I)" + }, + { + "artist": "Jerry Vale", + "position": 75, + "title": "Have You Looked Into Your Heart" + }, + { + "artist": "Frank Sinatra", + "position": 76, + "title": "Somewhere In Your Heart" + }, + { + "artist": "The Contours", + "position": 77, + "title": "Can You Jerk Like Me" + }, + { + "artist": "Henry Mancini And His Orchestra", + "position": 78, + "title": "Dear Heart" + }, + { + "artist": "Dean Martin", + "position": 79, + "title": "You'll Always Be The One I Love" + }, + { + "artist": "Travis Wammack", + "position": 80, + "title": "Scratchy" + }, + { + "artist": "Jay & The Americans", + "position": 81, + "title": "Let's Lock The Door (And Throw Away The Key)" + }, + { + "artist": "Patti LaBelle And The Blue Belles", + "position": 82, + "title": "Danny Boy" + }, + { + "artist": "The Shangri-Las", + "position": 83, + "title": "Give Him A Great Big Kiss" + }, + { + "artist": "The Dolphins", + "position": 84, + "title": "Hey-Da-Da-Dow" + }, + { + "artist": "Ronny And The Daytonas", + "position": 85, + "title": "Bucket T" + }, + { + "artist": "Lee Morgan", + "position": 86, + "title": "The Sidewinder, Part 1" + }, + { + "artist": "Willie Mitchell", + "position": 87, + "title": "Percolatin'" + }, + { + "artist": "The Dixie Cups", + "position": 88, + "title": "Little Bell" + }, + { + "artist": "Bobby Vee", + "position": 89, + "title": "(There'll Come A Day When) Ev'ry Little Bit Hurts" + }, + { + "artist": "Lesley Gore", + "position": 90, + "title": "Look Of Love" + }, + { + "artist": "Sonny James", + "position": 91, + "title": "You're The Only World I Know" + }, + { + "artist": "The Hondells", + "position": 92, + "title": "My Buddy Seat" + }, + { + "artist": "The Shangri-Las", + "position": 93, + "title": "Maybe" + }, + { + "artist": "Hank Williams Jr.", + "position": 94, + "title": "Endless Sleep" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 95, + "title": "Have Mercy Baby" + }, + { + "artist": "The Radiants", + "position": 96, + "title": "Voice Your Choice" + }, + { + "artist": "Don Covay", + "position": 97, + "title": "Take This Hurt Off Me" + }, + { + "artist": "The Bachelors", + "position": 98, + "title": "No Arms Can Ever Hold You" + }, + { + "artist": "The Shirelles", + "position": 99, + "title": "Are You Still My Baby" + }, + { + "artist": "Ned Miller", + "position": 100, + "title": "Do What You Do Do Well" + } + ], + "title": "1964 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Singing Nun (Soeur Sourire)", + "position": 1, + "title": "Dominique" + }, + { + "artist": "Bobby Vinton", + "position": 2, + "title": "There! I've Said It Again" + }, + { + "artist": "The Kingsmen", + "position": 3, + "title": "Louie Louie" + }, + { + "artist": "Lenny Welch", + "position": 4, + "title": "Since I Fell For You" + }, + { + "artist": "The Caravelles", + "position": 5, + "title": "You Don't Have To Be A Baby To Cry" + }, + { + "artist": "Dion Di Muci", + "position": 6, + "title": "Drip Drop" + }, + { + "artist": "Bobby Rydell", + "position": 7, + "title": "Forget Him" + }, + { + "artist": "The Murmaids", + "position": 8, + "title": "Popsicles And Icicles" + }, + { + "artist": "Johnny Tillotson", + "position": 9, + "title": "Talk Back Trembling Lips" + }, + { + "artist": "The Beach Boys", + "position": 10, + "title": "Be True To Your School" + }, + { + "artist": "Joey Powers", + "position": 11, + "title": "Midnight Mary" + }, + { + "artist": "Martha & The Vandellas", + "position": 12, + "title": "Quicksand" + }, + { + "artist": "Shirley Ellis", + "position": 13, + "title": "The Nitty Gritty" + }, + { + "artist": "Chubby Checker", + "position": 14, + "title": "Loddy Lo" + }, + { + "artist": "Jack Jones", + "position": 15, + "title": "Wives And Lovers" + }, + { + "artist": "Dale & Grace", + "position": 16, + "title": "I'm Leaving It Up To You" + }, + { + "artist": "Tommy Roe", + "position": 17, + "title": "Everybody" + }, + { + "artist": "The Secrets", + "position": 18, + "title": "The Boy Next Door" + }, + { + "artist": "Roy Orbison", + "position": 19, + "title": "Pretty Paper" + }, + { + "artist": "Brenda Lee", + "position": 20, + "title": "As Usual" + }, + { + "artist": "The Trashmen", + "position": 21, + "title": "Surfin' Bird" + }, + { + "artist": "Marvin Gaye", + "position": 22, + "title": "Can I Get A Witness" + }, + { + "artist": "The Duprees featuring Joey Vann", + "position": 23, + "title": "Have You Heard" + }, + { + "artist": "Jan & Dean", + "position": 24, + "title": "Drag City" + }, + { + "artist": "Trini Lopez", + "position": 25, + "title": "Kansas City" + }, + { + "artist": "Robin Ward", + "position": 26, + "title": "Wonderful Summer" + }, + { + "artist": "The Beach Boys", + "position": 27, + "title": "In My Room" + }, + { + "artist": "Lesley Gore", + "position": 28, + "title": "She's A Fool" + }, + { + "artist": "Rufus Thomas", + "position": 29, + "title": "Walking The Dog" + }, + { + "artist": "Dick and DeeDee", + "position": 30, + "title": "Turn Around" + }, + { + "artist": "Garnet Mimms & The Enchanters", + "position": 31, + "title": "For Your Precious Love" + }, + { + "artist": "Ray Charles", + "position": 32, + "title": "That Lucky Old Sun" + }, + { + "artist": "Neil Sedaka", + "position": 33, + "title": "Bad Girl" + }, + { + "artist": "Sam Cooke", + "position": 34, + "title": "Little Red Rooster" + }, + { + "artist": "Peter, Paul & Mary", + "position": 35, + "title": "Stewball" + }, + { + "artist": "Garnet Mimms & The Enchanters", + "position": 36, + "title": "Baby Don't You Weep" + }, + { + "artist": "Nino Tempo & April Stevens", + "position": 37, + "title": "Whispering" + }, + { + "artist": "The Marketts", + "position": 38, + "title": "Out Of Limits" + }, + { + "artist": "Jerry Butler", + "position": 39, + "title": "Need To Belong" + }, + { + "artist": "The Supremes", + "position": 40, + "title": "When The Lovelight Starts Shining Through His Eyes" + }, + { + "artist": "The Chiffons", + "position": 41, + "title": "I Have A Boyfriend" + }, + { + "artist": "The Tymes", + "position": 42, + "title": "Somewhere" + }, + { + "artist": "Al Martino", + "position": 43, + "title": "Living A Lie" + }, + { + "artist": "Gene Pitney", + "position": 44, + "title": "Twenty Four Hours From Tulsa" + }, + { + "artist": "The Miracles", + "position": 45, + "title": "I Gotta Dance To Keep From Crying" + }, + { + "artist": "The Rip Chords", + "position": 46, + "title": "Hey Little Cobra" + }, + { + "artist": "Jimmy Gilmer And The Fireballs", + "position": 47, + "title": "Sugar Shack" + }, + { + "artist": "The Impressions", + "position": 48, + "title": "It's All Right" + }, + { + "artist": "Dean And Jean", + "position": 49, + "title": "Tra La La La Suzy" + }, + { + "artist": "Sunny & The Sunliners", + "position": 50, + "title": "Rags To Riches" + }, + { + "artist": "The Cookies", + "position": 51, + "title": "Girls Grow Up Faster Than Boys" + }, + { + "artist": "Jimmy Gilmer And The Fireballs", + "position": 52, + "title": "Daisy Petal Pickin'" + }, + { + "artist": "Murry Kellum", + "position": 53, + "title": "Long Tall Texan" + }, + { + "artist": "The Dynamics", + "position": 54, + "title": "Misery" + }, + { + "artist": "Chubby Checker", + "position": 55, + "title": "Hooka Tooka" + }, + { + "artist": "The Chad Mitchell Trio", + "position": 56, + "title": "The Marvelous Toy" + }, + { + "artist": "Little Peggy March", + "position": 57, + "title": "The Impossible Happened" + }, + { + "artist": "The Marvelettes", + "position": 58, + "title": "As Long As I Know He's Mine" + }, + { + "artist": "Rick Nelson", + "position": 59, + "title": "Today's Teardrops" + }, + { + "artist": "Cliff Richard", + "position": 60, + "title": "It's All In The Game" + }, + { + "artist": "Rick Nelson", + "position": 61, + "title": "For You" + }, + { + "artist": "The Kingston Trio", + "position": 62, + "title": "Ally Ally Oxen Free" + }, + { + "artist": "The Ronettes", + "position": 63, + "title": "Baby, I Love You" + }, + { + "artist": "Dionne Warwick", + "position": 64, + "title": "Anyone Who Had A Heart" + }, + { + "artist": "Henry Mancini And His Orchestra", + "position": 65, + "title": "Charade" + }, + { + "artist": "Bobby Darin", + "position": 66, + "title": "Be Mad Little Girl" + }, + { + "artist": "Steve & Eydie", + "position": 67, + "title": "I Can't Stop Talking About You" + }, + { + "artist": "The Raindrops", + "position": 68, + "title": "That Boy John" + }, + { + "artist": "The David Rockingham Trio", + "position": 69, + "title": "Dawn" + }, + { + "artist": "Ginny Arnell", + "position": 70, + "title": "Dumb Head" + }, + { + "artist": "The Orlons", + "position": 71, + "title": "Bon-Doo-Wah" + }, + { + "artist": "Lesley Gore", + "position": 72, + "title": "You Don't Own Me" + }, + { + "artist": "The Baja Marimba Band", + "position": 73, + "title": "Comin' In The Back Door" + }, + { + "artist": "Marty Robbins", + "position": 74, + "title": "Begging To You" + }, + { + "artist": "The Tams", + "position": 75, + "title": "What Kind Of Fool (Do You Think I Am)" + }, + { + "artist": "Jay & The Americans", + "position": 76, + "title": "Come Dance With Me" + }, + { + "artist": "Brooks O'Dell", + "position": 77, + "title": "Watch Your Step" + }, + { + "artist": "Burl Ives", + "position": 78, + "title": "True Love Goes On And On" + }, + { + "artist": "Mary Wells", + "position": 79, + "title": "What's Easy For Two Is So Hard For One" + }, + { + "artist": "Frank Ifield", + "position": 80, + "title": "Please" + }, + { + "artist": "Tony Bennett", + "position": 81, + "title": "The Little Boy" + }, + { + "artist": "Jimmy Velvet", + "position": 82, + "title": "We Belong Together" + }, + { + "artist": "Dale Ward", + "position": 83, + "title": "Letter From Sherry" + }, + { + "artist": "The Girlfriends", + "position": 84, + "title": "My One And Only, Jimmy Boy" + }, + { + "artist": "Connie Francis", + "position": 85, + "title": "In The Summer Of His Years" + }, + { + "artist": "Paul Petersen", + "position": 86, + "title": "The Cheer Leader" + }, + { + "artist": "Gene Thomas", + "position": 87, + "title": "Baby's Gone" + }, + { + "artist": "The Pixies Three", + "position": 88, + "title": "Cold Cold Winter" + }, + { + "artist": "The Brothers Four", + "position": 89, + "title": "Hootenanny Saturday Night" + }, + { + "artist": "Johnny Mathis", + "position": 90, + "title": "I'll Search My Heart" + }, + { + "artist": "Sammy Davis Jr.", + "position": 91, + "title": "The Shelter Of Your Arms" + }, + { + "artist": "Paul Anka", + "position": 92, + "title": "Did You Have A Happy Birthday?" + }, + { + "artist": "Tracey Dey", + "position": 93, + "title": "Here Comes The Boy" + }, + { + "artist": "Bob And Earl", + "position": 94, + "title": "Harlem Shuffle" + }, + { + "artist": "The Crescents Featuring Chiyo", + "position": 95, + "title": "Pink Dominos" + }, + { + "artist": "Barbara Lewis", + "position": 96, + "title": "Snap Your Fingers" + }, + { + "artist": "Bobby Bland", + "position": 97, + "title": "The Feeling Is Gone" + }, + { + "artist": "The Cascades", + "position": 98, + "title": "For Your Sweet Love" + }, + { + "artist": "Bobby Vee", + "position": 99, + "title": "Never Love A Robin" + }, + { + "artist": "The Lettermen", + "position": 100, + "title": "Where Or When" + } + ], + "title": "1963 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Tornadoes", + "position": 1, + "title": "Telstar" + }, + { + "artist": "Chubby Checker", + "position": 2, + "title": "Limbo Rock" + }, + { + "artist": "Marcie Blane", + "position": 3, + "title": "Bobby's Girl" + }, + { + "artist": "Steve Lawrence", + "position": 4, + "title": "Go Away Little Girl" + }, + { + "artist": "The 4 Seasons", + "position": 5, + "title": "Big Girls Don't Cry" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 6, + "title": "Return To Sender" + }, + { + "artist": "Ray Charles", + "position": 7, + "title": "You Are My Sunshine" + }, + { + "artist": "Esther Phillips Little Esther", + "position": 8, + "title": "Release Me" + }, + { + "artist": "Bob B. Soxx And The Blue Jeans", + "position": 9, + "title": "Zip-A-Dee Doo-Dah" + }, + { + "artist": "Brook Benton", + "position": 10, + "title": "Hotel Happiness" + }, + { + "artist": "Lou Monte", + "position": 11, + "title": "Pepino The Italian Mouse" + }, + { + "artist": "Little Eva", + "position": 12, + "title": "Keep Your Hands Off My Baby" + }, + { + "artist": "Nat King Cole", + "position": 13, + "title": "Dear Lonely Hearts" + }, + { + "artist": "The Exciters", + "position": 14, + "title": "Tell Him" + }, + { + "artist": "The Tijuana Brass", + "position": 15, + "title": "The Lonely Bull (El Solo Torro)" + }, + { + "artist": "The Orlons", + "position": 16, + "title": "Don't Hang Up" + }, + { + "artist": "The Cookies", + "position": 17, + "title": "Chains" + }, + { + "artist": "Dion", + "position": 18, + "title": "Love Came To Me" + }, + { + "artist": "Mary Wells", + "position": 19, + "title": "Two Lovers" + }, + { + "artist": "Paul Petersen", + "position": 20, + "title": "My Dad" + }, + { + "artist": "Bobby Vee", + "position": 21, + "title": "The Night Has A Thousand Eyes" + }, + { + "artist": "Marty Robbins", + "position": 22, + "title": "Ruby Ann" + }, + { + "artist": "The 4 Seasons", + "position": 23, + "title": "Santa Claus Is Coming To Town" + }, + { + "artist": "Les Cooper and the Soul Rockers", + "position": 24, + "title": "Wiggle Wobble" + }, + { + "artist": "Dee Dee Sharp", + "position": 25, + "title": "Ride!" + }, + { + "artist": "Johnny Crawford", + "position": 26, + "title": "Rumors" + }, + { + "artist": "The Shirelles", + "position": 27, + "title": "Everybody Loves A Lover" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 28, + "title": "The Little Drummer Boy" + }, + { + "artist": "The Drifters", + "position": 29, + "title": "Up On The Roof" + }, + { + "artist": "Rick Nelson", + "position": 30, + "title": "It's Up To You" + }, + { + "artist": "Bobby Boris Pickett And The Crypt-Kickers", + "position": 31, + "title": "Monsters' Holiday" + }, + { + "artist": "Ray Charles", + "position": 32, + "title": "Your Cheating Heart" + }, + { + "artist": "Duane Eddy and the Rebelettes", + "position": 33, + "title": "(Dance With The) Guitar Man" + }, + { + "artist": "Jerry Wallace", + "position": 34, + "title": "Shutters And Boards" + }, + { + "artist": "The Routers", + "position": 35, + "title": "Let's Go (pony)" + }, + { + "artist": "Mel Torme", + "position": 36, + "title": "Comin' Home Baby" + }, + { + "artist": "Stan Getz/Charlie Byrd", + "position": 37, + "title": "Desafinado" + }, + { + "artist": "Bing Crosby", + "position": 38, + "title": "White Christmas" + }, + { + "artist": "Dickey Lee", + "position": 39, + "title": "I Saw Linda Yesterday" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 40, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Mark Valentino", + "position": 41, + "title": "The Push And Kick" + }, + { + "artist": "Bobby Vinton", + "position": 42, + "title": "Let's Kiss And Make Up" + }, + { + "artist": "Gene Pitney", + "position": 43, + "title": "Half Heaven - Half Heartache" + }, + { + "artist": "LaVern Baker", + "position": 44, + "title": "See See Rider" + }, + { + "artist": "Ray Stevens", + "position": 45, + "title": "Santa Claus Is Watching You" + }, + { + "artist": "Dionne Warwick", + "position": 46, + "title": "Don't Make Me Over" + }, + { + "artist": "The Crystals", + "position": 47, + "title": "He's A Rebel" + }, + { + "artist": "Gene McDaniels", + "position": 48, + "title": "Spanish Lace" + }, + { + "artist": "Bobby Vinton", + "position": 49, + "title": "Trouble Is My Middle Name" + }, + { + "artist": "The Beach Boys", + "position": 50, + "title": "Ten Little Indians" + }, + { + "artist": "Connie Francis", + "position": 51, + "title": "I'm Gonna' Be Warm This Winter" + }, + { + "artist": "Chris Montez", + "position": 52, + "title": "Some Kinda Fun" + }, + { + "artist": "Timi Yuro", + "position": 53, + "title": "The Love Of A Boy" + }, + { + "artist": "Gene Chandler", + "position": 54, + "title": "You Threw A Lucky Punch" + }, + { + "artist": "The Excellents", + "position": 55, + "title": "Coney Island Baby" + }, + { + "artist": "Bobby Helms", + "position": 56, + "title": "Jingle Bell Rock" + }, + { + "artist": "Brenda Lee", + "position": 57, + "title": "All Alone Am I" + }, + { + "artist": "The Earls", + "position": 58, + "title": "Remember Then" + }, + { + "artist": "Brenda Lee", + "position": 59, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Gabriel And The Angels", + "position": 60, + "title": "That's Life (That's Tough)" + }, + { + "artist": "Johnny Thunder", + "position": 61, + "title": "Loop De Loop" + }, + { + "artist": "Jimmie Rodgers", + "position": 62, + "title": "Rainbow At Midnight" + }, + { + "artist": "Tony Bennett", + "position": 63, + "title": "I Left My Heart In San Francisco" + }, + { + "artist": "Frank Sinatra & Sammy Davis Jr.", + "position": 64, + "title": "Me And My Shadow" + }, + { + "artist": "Nat King Cole", + "position": 65, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Ben Colder", + "position": 66, + "title": "Don't Go Near The Eskimos" + }, + { + "artist": "Kitty Kallen", + "position": 67, + "title": "My Coloring Book" + }, + { + "artist": "Lester Flatt, Earl Scruggs & The Foggy Mountain Boys", + "position": 68, + "title": "The Ballad Of Jed Clampett" + }, + { + "artist": "The Miracles", + "position": 69, + "title": "You've Really Got A Hold On Me" + }, + { + "artist": "Brian Hyland", + "position": 70, + "title": "I May Not Live To See Tomorrow" + }, + { + "artist": "The Contours", + "position": 71, + "title": "Shake Sherry" + }, + { + "artist": "The Marvelettes", + "position": 72, + "title": "Strange I Know" + }, + { + "artist": "Frank Ifield", + "position": 73, + "title": "Lovesick Blues" + }, + { + "artist": "Lonnie Russ", + "position": 74, + "title": "My Wife Can't Cook" + }, + { + "artist": "Vince Guaraldi Trio", + "position": 75, + "title": "Cast Your Fate To The Wind" + }, + { + "artist": "Barbara Lynn", + "position": 76, + "title": "You're Gonna Need Me" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 77, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Jimmy Dean", + "position": 78, + "title": "Gonna Raise A Rukus Tonight" + }, + { + "artist": "The Pastel Six", + "position": 79, + "title": "The Cinnamon Cinder (It's A Very Nice Dance)" + }, + { + "artist": "Sandy Stewart", + "position": 80, + "title": "My Coloring Book" + }, + { + "artist": "Del Shannon", + "position": 81, + "title": "Little Town Flirt" + }, + { + "artist": "The Emotions", + "position": 82, + "title": "Echo" + }, + { + "artist": "Ned Miller", + "position": 83, + "title": "From A Jack To A King" + }, + { + "artist": "The Rebels", + "position": 84, + "title": "Wild Weekend" + }, + { + "artist": "Bobby Goldsboro", + "position": 85, + "title": "Molly" + }, + { + "artist": "Floyd Cramer", + "position": 86, + "title": "Java" + }, + { + "artist": "Rick Nelson", + "position": 87, + "title": "I Need You" + }, + { + "artist": "Aretha Franklin", + "position": 88, + "title": "Trouble In Mind" + }, + { + "artist": "The Toy Dolls", + "position": 89, + "title": "Little Tin Soldier" + }, + { + "artist": "Marion Worth", + "position": 90, + "title": "Shake Me I Rattle (Squeeze Me I Cry)" + }, + { + "artist": "Joe Harnell And His Orchestra", + "position": 91, + "title": "Fly Me To The Moon - Bossa Nova" + }, + { + "artist": "The Ventures", + "position": 92, + "title": "The 2,000 Pound Bee (Part 2)" + }, + { + "artist": "The Crystals", + "position": 93, + "title": "He's Sure The Boy I Love" + }, + { + "artist": "Dean Martin & Sammy Davis Jr.", + "position": 94, + "title": "Sam's Song" + }, + { + "artist": "The Cleftones", + "position": 95, + "title": "Lover Come Back To Me" + }, + { + "artist": "Paul and Paula", + "position": 96, + "title": "Hey Paula" + }, + { + "artist": "The Dells", + "position": 97, + "title": "The (Bossa Nova) Bird" + }, + { + "artist": "Mike Clifford", + "position": 98, + "title": "What To Do With Laurie" + }, + { + "artist": "Mahalia Jackson", + "position": 99, + "title": "Silent Night, Holy Night" + }, + { + "artist": "Don Covay", + "position": 100, + "title": "The Popeye Waddle" + } + ], + "title": "1962 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Tokens", + "position": 1, + "title": "The Lion Sleeps Tonight" + }, + { + "artist": "Bobby Vee", + "position": 2, + "title": "Run To Him" + }, + { + "artist": "Chubby Checker", + "position": 3, + "title": "The Twist" + }, + { + "artist": "James Darren", + "position": 4, + "title": "Goodbye Cruel World" + }, + { + "artist": "Leroy Van Dyke", + "position": 5, + "title": "Walk On By" + }, + { + "artist": "Joey Dee & the Starliters", + "position": 6, + "title": "Peppermint Twist - Part I" + }, + { + "artist": "The Marvelettes", + "position": 7, + "title": "Please Mr. Postman" + }, + { + "artist": "Neil Sedaka", + "position": 8, + "title": "Happy Birthday, Sweet Sixteen" + }, + { + "artist": "Sandy Nelson", + "position": 9, + "title": "Let There Be Drums" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 10, + "title": "Can't Help Falling In Love" + }, + { + "artist": "Henry Mancini And His Orchestra", + "position": 11, + "title": "Moon River" + }, + { + "artist": "Linda Scott", + "position": 12, + "title": "I Don't Know Why" + }, + { + "artist": "The Lettermen", + "position": 13, + "title": "When I Fall In Love" + }, + { + "artist": "Ray Charles and his Orchestra", + "position": 14, + "title": "Unchain My Heart" + }, + { + "artist": "Connie Francis", + "position": 15, + "title": "When The Boy In Your Arms (Is The Boy In Your Heart)" + }, + { + "artist": "Jerry Butler", + "position": 16, + "title": "Moon River" + }, + { + "artist": "The Angels", + "position": 17, + "title": "'Til" + }, + { + "artist": "Ferrante & Teicher", + "position": 18, + "title": "Tonight" + }, + { + "artist": "Jimmy Dean", + "position": 19, + "title": "Big Bad John" + }, + { + "artist": "Bing Crosby", + "position": 20, + "title": "White Christmas" + }, + { + "artist": "The Impressions", + "position": 21, + "title": "Gypsy Woman" + }, + { + "artist": "Brook Benton", + "position": 22, + "title": "Revenge" + }, + { + "artist": "The Crystals", + "position": 23, + "title": "There's No Other (Like My Baby)" + }, + { + "artist": "Kenny Dino", + "position": 24, + "title": "Your Ma Said You Cried In Your Sleep Last Night" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 25, + "title": "Rock-A-Hula Baby" + }, + { + "artist": "Barbara George", + "position": 26, + "title": "I Know (You Don't Love Me No More)" + }, + { + "artist": "Bobby Rydell/Chubby Checker", + "position": 27, + "title": "Jingle Bell Rock" + }, + { + "artist": "Brenda Lee", + "position": 28, + "title": "Fool #1" + }, + { + "artist": "Chubby Checker", + "position": 29, + "title": "Let's Twist Again" + }, + { + "artist": "Solomon Burke", + "position": 30, + "title": "Just Out Of Reach (Of My Two Open Arms)" + }, + { + "artist": "Jimmy Elledge", + "position": 31, + "title": "Funny How Time Slips Away" + }, + { + "artist": "The Chantels", + "position": 32, + "title": "Well, I Told You" + }, + { + "artist": "Phil McLean", + "position": 33, + "title": "Small Sad Sam" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 34, + "title": "The Little Drummer Boy" + }, + { + "artist": "Fats Domino", + "position": 35, + "title": "Jambalaya (On The Bayou)" + }, + { + "artist": "Gene Pitney", + "position": 36, + "title": "Town Without Pity" + }, + { + "artist": "The Highwaymen", + "position": 37, + "title": "Cotton Fields" + }, + { + "artist": "The G-Clefs", + "position": 38, + "title": "I Understand (Just How You Feel)" + }, + { + "artist": "James Ray", + "position": 39, + "title": "If You Gotta Make A Fool Of Somebody" + }, + { + "artist": "Pat Boone", + "position": 40, + "title": "Johnny Will" + }, + { + "artist": "Dion", + "position": 41, + "title": "The Wanderer" + }, + { + "artist": "The Highwaymen", + "position": 42, + "title": "The Gypsy Rover" + }, + { + "artist": "Connie Francis", + "position": 43, + "title": "Baby's First Christmas" + }, + { + "artist": "Del Shannon", + "position": 44, + "title": "Hey! Little Girl" + }, + { + "artist": "The Shirelles", + "position": 45, + "title": "Baby It's You" + }, + { + "artist": "Ike & Tina Turner", + "position": 46, + "title": "Poor Fool" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 47, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Vic Dana", + "position": 48, + "title": "Little Altar Boy" + }, + { + "artist": "Bobby Helms", + "position": 49, + "title": "Jingle Bell Rock" + }, + { + "artist": "Gary U.S. Bonds", + "position": 50, + "title": "Dear Lady Twist" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 51, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Burl Ives", + "position": 52, + "title": "A Little Bitty Tear" + }, + { + "artist": "Sims Twins", + "position": 53, + "title": "Soothe Me" + }, + { + "artist": "Dion", + "position": 54, + "title": "The Majestic" + }, + { + "artist": "Dion", + "position": 55, + "title": "Runaround Sue" + }, + { + "artist": "Dinah Washington", + "position": 56, + "title": "September In The Rain" + }, + { + "artist": "Patsy Cline", + "position": 57, + "title": "Crazy" + }, + { + "artist": "Brenda Lee", + "position": 58, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "John D. Loudermilk", + "position": 59, + "title": "Language Of Love" + }, + { + "artist": "Sue Thompson", + "position": 60, + "title": "Norman" + }, + { + "artist": "Bobby Bland", + "position": 61, + "title": "Turn On Your Love Light" + }, + { + "artist": "Glen Campbell", + "position": 62, + "title": "Turn Around, Look At Me" + }, + { + "artist": "Bobby Darin", + "position": 63, + "title": "Irresistible You" + }, + { + "artist": "Frank Sinatra", + "position": 64, + "title": "Pocketful Of Miracles" + }, + { + "artist": "Bill Black's Combo", + "position": 65, + "title": "Twist-Her" + }, + { + "artist": "Lee Dorsey", + "position": 66, + "title": "Do-Re-Mi" + }, + { + "artist": "Si Zentner And His Orchestra", + "position": 67, + "title": "Up A Lazy River" + }, + { + "artist": "Roger Williams", + "position": 68, + "title": "Maria" + }, + { + "artist": "Frank Slay And His Orchestra", + "position": 69, + "title": "Flying Circle" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 70, + "title": "Letter Full Of Tears" + }, + { + "artist": "Linda Scott", + "position": 70, + "title": "It's All Because" + }, + { + "artist": "The Drifters", + "position": 72, + "title": "Room Full Of Tears" + }, + { + "artist": "Johnny Tillotson", + "position": 73, + "title": "Dreamy Eyes" + }, + { + "artist": "Bobby Vee", + "position": 74, + "title": "Walkin' With My Angel" + }, + { + "artist": "Jimmy McCracklin", + "position": 75, + "title": "Just Got To Know" + }, + { + "artist": "Ral Donner", + "position": 76, + "title": "She's Everything (I Wanted You To Be)" + }, + { + "artist": "The Dovells", + "position": 77, + "title": "Bristol Stomp" + }, + { + "artist": "The Showmen", + "position": 78, + "title": "It Will Stand" + }, + { + "artist": "The Marcels", + "position": 79, + "title": "Heartaches" + }, + { + "artist": "Gene McDaniels", + "position": 80, + "title": "Tower Of Strength" + }, + { + "artist": "Chubby Checker", + "position": 81, + "title": "Twistin' U.S.A." + }, + { + "artist": "The Dave Brubeck Quartet", + "position": 82, + "title": "Unsquare Dance" + }, + { + "artist": "Bobby Darin", + "position": 83, + "title": "Multiplication" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 84, + "title": "Alvin's Harmonica" + }, + { + "artist": "Charles Brown", + "position": 85, + "title": "Please Come Home For Christmas" + }, + { + "artist": "Dick Dale and The Del-Tones", + "position": 86, + "title": "Let's Go Trippin'" + }, + { + "artist": "Anthony Newley", + "position": 87, + "title": "Pop Goes The Weasel" + }, + { + "artist": "Danny Peppermint and the Jumping Jacks", + "position": 88, + "title": "The Peppermint Twist" + }, + { + "artist": "Ray Peterson", + "position": 89, + "title": "I Could Have Loved You So Well" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 90, + "title": "Lost Someone" + }, + { + "artist": "Patti Page", + "position": 91, + "title": "Go On Home" + }, + { + "artist": "Ace Cannon", + "position": 92, + "title": "Tuff" + }, + { + "artist": "Sleepy King", + "position": 93, + "title": "Pushin' Your Luck" + }, + { + "artist": "Marty Robbins", + "position": 94, + "title": "I Told The Brook" + }, + { + "artist": "The Corsairs Featuring Jay Bird Uzzell", + "position": 95, + "title": "Smoky Places" + }, + { + "artist": "Troy Shondell", + "position": 96, + "title": "Tears From An Angel" + }, + { + "artist": "Johnny Preston", + "position": 97, + "title": "Free Me" + }, + { + "artist": "The Belmonts", + "position": 98, + "title": "I Need Some One" + }, + { + "artist": "Dickie Goodman", + "position": 99, + "title": "Santa & The Touchables" + }, + { + "artist": "Jimmie Beaumont", + "position": 100, + "title": "Ev'rybody's Cryin'" + } + ], + "title": "1961 - Hot 100" + }, + { + "songs": [ + { + "artist": "Elvis Presley With The Jordanaires", + "position": 1, + "title": "Are You Lonesome To-night?" + }, + { + "artist": "Bert Kaempfert And His Orchestra", + "position": 2, + "title": "Wonderland By Night" + }, + { + "artist": "Floyd Cramer", + "position": 3, + "title": "Last Date" + }, + { + "artist": "Kathy Young with The Innocents", + "position": 4, + "title": "A Thousand Stars" + }, + { + "artist": "Ferrante & Teicher", + "position": 5, + "title": "Exodus" + }, + { + "artist": "Johnny Horton", + "position": 6, + "title": "North To Alaska" + }, + { + "artist": "Connie Francis", + "position": 7, + "title": "Many Tears Ago" + }, + { + "artist": "Johnny Burnette", + "position": 8, + "title": "You're Sixteen" + }, + { + "artist": "Lolita", + "position": 9, + "title": "Sailor (Your Home Is The Sea)" + }, + { + "artist": "Ray Peterson", + "position": 10, + "title": "Corinna, Corinna" + }, + { + "artist": "Jerry Butler", + "position": 11, + "title": "He Will Break Your Heart" + }, + { + "artist": "Dion", + "position": 12, + "title": "Lonely Teenager" + }, + { + "artist": "Rosie And The Originals", + "position": 13, + "title": "Angel Baby" + }, + { + "artist": "Brenda Lee", + "position": 14, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "The Ventures", + "position": 15, + "title": "Perfidia" + }, + { + "artist": "Bobby Vee", + "position": 16, + "title": "Rubber Ball" + }, + { + "artist": "Louis Prima", + "position": 17, + "title": "Wonderland By Night" + }, + { + "artist": "Johnny Tillotson", + "position": 18, + "title": "Poetry In Motion" + }, + { + "artist": "U.S. Bonds", + "position": 19, + "title": "New Orleans" + }, + { + "artist": "The Shirelles", + "position": 20, + "title": "Will You Love Me Tomorrow" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 21, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Fats Domino", + "position": 22, + "title": "My Girl Josephine" + }, + { + "artist": "Bobby Rydell", + "position": 23, + "title": "Sway" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 24, + "title": "The Little Drummer Boy" + }, + { + "artist": "Bill Black's Combo", + "position": 25, + "title": "Blue Tango" + }, + { + "artist": "Bing Crosby", + "position": 26, + "title": "White Christmas" + }, + { + "artist": "Anita Bryant", + "position": 27, + "title": "Wonderland By Night" + }, + { + "artist": "Jackie Wilson", + "position": 28, + "title": "Alone At Last" + }, + { + "artist": "Brook Benton", + "position": 29, + "title": "Fools Rush In (Where Angels Fear To Tread)" + }, + { + "artist": "Maurice Williams & The Zodiacs", + "position": 30, + "title": "Stay" + }, + { + "artist": "Donnie Brooks", + "position": 31, + "title": "Doll House" + }, + { + "artist": "Ray Charles", + "position": 32, + "title": "Ruby" + }, + { + "artist": "Hank Ballard And The Midnighters", + "position": 33, + "title": "Let's Go, Let's Go, Let's Go" + }, + { + "artist": "Sam Cooke", + "position": 34, + "title": "Sad Mood" + }, + { + "artist": "Ferlin Husky", + "position": 35, + "title": "Wings Of A Dove" + }, + { + "artist": "Bobby Helms", + "position": 36, + "title": "Jingle Bell Rock" + }, + { + "artist": "Damita Jo", + "position": 37, + "title": "I'll Save The Last Dance For You" + }, + { + "artist": "Marty Robbins", + "position": 38, + "title": "Ballad Of The Alamo" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 39, + "title": "I Gotta Know" + }, + { + "artist": "Chubby Checker", + "position": 40, + "title": "The Hucklebuck" + }, + { + "artist": "Lawrence Welk And His Orchestra", + "position": 41, + "title": "Last Date" + }, + { + "artist": "Lawrence Welk And His Orchestra", + "position": 42, + "title": "Calcutta" + }, + { + "artist": "Jim Reeves", + "position": 43, + "title": "Am I Losing You" + }, + { + "artist": "The Drifters", + "position": 44, + "title": "Save The Last Dance For Me" + }, + { + "artist": "Bing Crosby", + "position": 45, + "title": "Adeste Fideles (Oh, Come, All Ye Faithful)" + }, + { + "artist": "Frank Sinatra", + "position": 46, + "title": "Ol' Mac Donald" + }, + { + "artist": "The Everly Brothers", + "position": 47, + "title": "Like Strangers" + }, + { + "artist": "The Innocents", + "position": 48, + "title": "Gee Whiz" + }, + { + "artist": "The Chimes", + "position": 49, + "title": "Once In Awhile" + }, + { + "artist": "Frankie Avalon", + "position": 50, + "title": "A Perfect Love" + }, + { + "artist": "Roy Orbison", + "position": 51, + "title": "I'm Hurtin'" + }, + { + "artist": "James Booker", + "position": 52, + "title": "Gonzo" + }, + { + "artist": "The Miracles (featuring Bill Smokey Robinson)", + "position": 53, + "title": "Shop Around" + }, + { + "artist": "Bing Crosby", + "position": 54, + "title": "Silent Night" + }, + { + "artist": "The Drifters", + "position": 55, + "title": "I Count The Tears" + }, + { + "artist": "The Olympics", + "position": 56, + "title": "Dance By The Light Of The Moon" + }, + { + "artist": "Neil Sedaka", + "position": 57, + "title": "Calendar Girl" + }, + { + "artist": "Bobby Darin", + "position": 58, + "title": "Christmas Auld Lang Syne" + }, + { + "artist": "LaVern Baker", + "position": 59, + "title": "Bumble Bee" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 60, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Santo & Johnny", + "position": 61, + "title": "Twistin' Bells" + }, + { + "artist": "The Shells", + "position": 62, + "title": "Baby Oh Baby" + }, + { + "artist": "Ricky Nelson", + "position": 63, + "title": "You Are The Only One" + }, + { + "artist": "Jackie Wilson", + "position": 64, + "title": "Am I The Man" + }, + { + "artist": "Fats Domino", + "position": 65, + "title": "Natural Born Lover" + }, + { + "artist": "The Flamingos", + "position": 66, + "title": "Your Other Love" + }, + { + "artist": "Al Caiola And His Orchestra", + "position": 67, + "title": "The Magnificent Seven" + }, + { + "artist": "Skeeter Davis", + "position": 68, + "title": "My Last Date (With You)" + }, + { + "artist": "Frankie Avalon", + "position": 69, + "title": "The Puppet Song" + }, + { + "artist": "Mantovani & His Orch.", + "position": 70, + "title": "Main Theme from Exodus (Ari's Theme)" + }, + { + "artist": "The Melodeers", + "position": 71, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Hank Ballard And The Midnighters", + "position": 72, + "title": "The Hoochi Coochi Coo" + }, + { + "artist": "The Ramblers", + "position": 73, + "title": "Rambling" + }, + { + "artist": "Adam Wade", + "position": 74, + "title": "Gloria's Theme" + }, + { + "artist": "Johnny Mathis", + "position": 75, + "title": "How To Handle A Woman" + }, + { + "artist": "The Browns featuring Jim Edward Brown", + "position": 76, + "title": "Send Me The Pillow You Dream On" + }, + { + "artist": "Larry Verne", + "position": 77, + "title": "Mister Livingston" + }, + { + "artist": "The Blue Diamonds", + "position": 78, + "title": "Ramona" + }, + { + "artist": "Andy Williams", + "position": 79, + "title": "You Don't Want My Love" + }, + { + "artist": "Bill Doggett", + "position": 80, + "title": "(Let's Do) The Hully Gully Twist" + }, + { + "artist": "Little Willie John", + "position": 81, + "title": "Walk Slow" + }, + { + "artist": "Jerry Murad's Harmonicats", + "position": 82, + "title": "Cherry Pink And Apple Blossom White" + }, + { + "artist": "Joni James", + "position": 83, + "title": "My Last Date (With You)" + }, + { + "artist": "Teresa Brewer", + "position": 84, + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)" + }, + { + "artist": "Jimmy Charles", + "position": 85, + "title": "The Age For Love" + }, + { + "artist": "Marv Johnson", + "position": 86, + "title": "Happy Days" + }, + { + "artist": "Frank Gari", + "position": 87, + "title": "Utopia" + }, + { + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "position": 88, + "title": "Pepe" + }, + { + "artist": "Buddy Knox", + "position": 89, + "title": "Lovey Dovey" + }, + { + "artist": "Ike & Tina Turner", + "position": 90, + "title": "I Idolize You" + }, + { + "artist": "The Viscounts", + "position": 91, + "title": "Wabash Blues" + }, + { + "artist": "Annette With The Afterbeats", + "position": 92, + "title": "Talk To Me Baby" + }, + { + "artist": "Brook Benton", + "position": 93, + "title": "Someday You'll Want Me To Want You" + }, + { + "artist": "Shelby Flint", + "position": 94, + "title": "Angel On My Shoulder" + }, + { + "artist": "Bobby Darin", + "position": 95, + "title": "Child Of God" + }, + { + "artist": "Dinah Washington", + "position": 96, + "title": "We Have Love" + }, + { + "artist": "Perry Como", + "position": 97, + "title": "Make Someone Happy" + }, + { + "artist": "Jerry Wallace", + "position": 98, + "title": "There She Goes" + }, + { + "artist": "Jeanne Black", + "position": 99, + "title": "Oh, How I Miss You Tonight" + }, + { + "artist": "Etta & Harvey", + "position": 100, + "title": "Spoonful" + } + ], + "title": "1960 - Hot 100" + }, + { + "songs": [ + { + "artist": "Guy Mitchell", + "position": 1, + "title": "Heartaches By The Number" + }, + { + "artist": "Frankie Avalon", + "position": 2, + "title": "Why" + }, + { + "artist": "Marty Robbins", + "position": 3, + "title": "El Paso" + }, + { + "artist": "Miss Toni Fisher", + "position": 4, + "title": "The Big Hurt" + }, + { + "artist": "Freddie Cannon", + "position": 5, + "title": "Way Down Yonder In New Orleans" + }, + { + "artist": "Paul Anka", + "position": 6, + "title": "It's Time To Cry" + }, + { + "artist": "Bobby Darin", + "position": 7, + "title": "Mack The Knife" + }, + { + "artist": "Bobby Rydell", + "position": 8, + "title": "We Got Love" + }, + { + "artist": "Connie Francis", + "position": 9, + "title": "Among My Souvenirs" + }, + { + "artist": "Fabian", + "position": 10, + "title": "Hound Dog Man" + }, + { + "artist": "Ernie Fields & Orch.", + "position": 11, + "title": "In The Mood" + }, + { + "artist": "Fabian", + "position": 12, + "title": "This Friendly World" + }, + { + "artist": "Della Reese", + "position": 13, + "title": "Don't You Know" + }, + { + "artist": "The Browns", + "position": 14, + "title": "Scarlet Ribbons (For Her Hair)" + }, + { + "artist": "Brook Benton", + "position": 15, + "title": "So Many Ways" + }, + { + "artist": "Neil Sedaka", + "position": 16, + "title": "Oh! Carol" + }, + { + "artist": "The Fleetwoods", + "position": 17, + "title": "Mr. Blue" + }, + { + "artist": "The Nutty Squirrels", + "position": 18, + "title": "Uh! Oh! Part 2" + }, + { + "artist": "Steve Lawrence", + "position": 19, + "title": "Pretty Blue Eyes" + }, + { + "artist": "Ricky Nelson", + "position": 20, + "title": "I Wanna Be Loved" + }, + { + "artist": "Fats Domino", + "position": 21, + "title": "Be My Guest" + }, + { + "artist": "Johnny Mathis", + "position": 22, + "title": "Misty" + }, + { + "artist": "Santo & Johnny", + "position": 23, + "title": "Tear Drop" + }, + { + "artist": "Johnny Preston", + "position": 24, + "title": "Running Bear" + }, + { + "artist": "Marv Johnson", + "position": 25, + "title": "You Got What It Takes" + }, + { + "artist": "Lloyd Price and His Orchestra", + "position": 26, + "title": "Come Into My Heart" + }, + { + "artist": "Conway Twitty", + "position": 27, + "title": "Danny Boy" + }, + { + "artist": "Bill Black's Combo", + "position": 28, + "title": "Smokie - Part 2" + }, + { + "artist": "Larry Hall", + "position": 29, + "title": "Sandy" + }, + { + "artist": "Johnny And The Hurricanes", + "position": 30, + "title": "Reveille Rock" + }, + { + "artist": "Rocco Granata and the International Quintet", + "position": 31, + "title": "Marina" + }, + { + "artist": "Annette With The Afterbeats", + "position": 32, + "title": "First Name Initial" + }, + { + "artist": "The Drifters", + "position": 33, + "title": "Dance With Me" + }, + { + "artist": "Sammy Turner", + "position": 34, + "title": "Always" + }, + { + "artist": "Jimmy Clanton", + "position": 35, + "title": "Go, Jimmy, Go" + }, + { + "artist": "Connie Francis", + "position": 36, + "title": "God Bless America" + }, + { + "artist": "Bob Beckham", + "position": 37, + "title": "Just As Much As Ever" + }, + { + "artist": "Ricky Nelson", + "position": 38, + "title": "Mighty Good" + }, + { + "artist": "The Drifters", + "position": 39, + "title": "(If You Cry) True Love, True Love" + }, + { + "artist": "Royal Teens", + "position": 40, + "title": "Believe Me" + }, + { + "artist": "Paul Evans and the Curls", + "position": 41, + "title": "(Seven Little Girls) Sitting In The Back Seat" + }, + { + "artist": "Dinah Washington", + "position": 42, + "title": "Unforgettable" + }, + { + "artist": "Paul Anka", + "position": 43, + "title": "Put Your Head On My Shoulder" + }, + { + "artist": "Jackie Wilson", + "position": 44, + "title": "Talk That Talk" + }, + { + "artist": "The Nutty Squirrels", + "position": 45, + "title": "Uh! Oh! Part 1" + }, + { + "artist": "Willy Alberti", + "position": 46, + "title": "Marina" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 47, + "title": "The Little Drummer Boy" + }, + { + "artist": "Wink Martindale", + "position": 48, + "title": "Deck Of Cards" + }, + { + "artist": "Tommy Facenda", + "position": 49, + "title": "High School U.S.A." + }, + { + "artist": "Jerry Wallace With The Jewels", + "position": 50, + "title": "Primrose Lane" + }, + { + "artist": "The Spacemen", + "position": 51, + "title": "The Clouds" + }, + { + "artist": "Della Reese", + "position": 52, + "title": "Not One Minute More" + }, + { + "artist": "The Clovers", + "position": 53, + "title": "Love Potion No. 9" + }, + { + "artist": "Sarah Vaughan", + "position": 54, + "title": "Smooth Operator" + }, + { + "artist": "Ray Charles and his Orchestra", + "position": 55, + "title": "I'm Movin' On" + }, + { + "artist": "Andy Williams", + "position": 56, + "title": "The Village Of St. Bernadette" + }, + { + "artist": "The Crests", + "position": 57, + "title": "A Year Ago Tonight" + }, + { + "artist": "Frank Sinatra", + "position": 58, + "title": "Talk To Me" + }, + { + "artist": "Andy Williams", + "position": 59, + "title": "Lonely Street" + }, + { + "artist": "Lloyd Price and His Orchestra", + "position": 60, + "title": "Wont'cha Come Home" + }, + { + "artist": "Dee Clark", + "position": 61, + "title": "How About That" + }, + { + "artist": "Fireflies", + "position": 62, + "title": "You Were Mine" + }, + { + "artist": "Fats Domino", + "position": 63, + "title": "I've Been Around" + }, + { + "artist": "Ray Peterson", + "position": 64, + "title": "Goodnight My Love (Pleasant Dreams)" + }, + { + "artist": "The Coasters", + "position": 65, + "title": "What About Us" + }, + { + "artist": "Don Costa And His Orchestra And Chorus", + "position": 66, + "title": "I'll Walk The Line" + }, + { + "artist": "Rock-A-Teens", + "position": 67, + "title": "Woo-Hoo" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 68, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Cliff Richard and The Drifters", + "position": 69, + "title": "Living Doll" + }, + { + "artist": "Kitty Kallen", + "position": 70, + "title": "If I Give My Heart To You" + }, + { + "artist": "Pat Boone", + "position": 71, + "title": "Beyond The Sunset" + }, + { + "artist": "Fireballs", + "position": 72, + "title": "Torquay" + }, + { + "artist": "Hugo & Luigi", + "position": 73, + "title": "Just Come Home" + }, + { + "artist": "LaVern Baker", + "position": 74, + "title": "Tiny Tim" + }, + { + "artist": "Mitch Miller", + "position": 75, + "title": "Do-Re-Mi" + }, + { + "artist": "Dancer, Prancer And Nervous", + "position": 76, + "title": "The Happy Reindeer" + }, + { + "artist": "The Revels", + "position": 77, + "title": "Midnight Stroll" + }, + { + "artist": "Tommy Edwards", + "position": 78, + "title": "(New In) The Ways Of Love" + }, + { + "artist": "The Islanders", + "position": 79, + "title": "The Enchanted Sea" + }, + { + "artist": "Tommy Edwards", + "position": 80, + "title": "Honestly And Truly" + }, + { + "artist": "Rod Bernard", + "position": 81, + "title": "One More Chance" + }, + { + "artist": "Tony Bennett", + "position": 82, + "title": "Climb Ev'ry Mountain" + }, + { + "artist": "Titus Turner", + "position": 83, + "title": "We Told You Not To Marry" + }, + { + "artist": "Carl Dobkins, Jr.", + "position": 84, + "title": "Lucky Devil" + }, + { + "artist": "Dorothy Collins", + "position": 85, + "title": "Baciare Baciare (Kissing Kissing)" + }, + { + "artist": "Jane Morgan", + "position": 86, + "title": "Happy Anniversary" + }, + { + "artist": "The Mormon Tabernacle Choir", + "position": 87, + "title": "Battle Hymn Of The Republic" + }, + { + "artist": "The Coasters", + "position": 88, + "title": "Run Red Run" + }, + { + "artist": "The Bluenotes", + "position": 89, + "title": "I Don't Know What It Is" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 90, + "title": "Shimmy, Shimmy, Ko-Ko-Bop" + }, + { + "artist": "Johnny Cash", + "position": 91, + "title": "The Little Drummer Boy" + }, + { + "artist": "Sandy Nelson", + "position": 92, + "title": "Teen Beat" + }, + { + "artist": "Frankie Avalon", + "position": 93, + "title": "Swingin' On A Rainbow" + }, + { + "artist": "Clyde McPhatter", + "position": 94, + "title": "Let's Try Again" + }, + { + "artist": "Bill Haley And His Comets", + "position": 95, + "title": "Joey's Song" + }, + { + "artist": "Brook Benton", + "position": 96, + "title": "This Time Of The Year" + }, + { + "artist": "Bonnie Guitar", + "position": 97, + "title": "Candy Apple Red" + }, + { + "artist": "Rod Lauren", + "position": 98, + "title": "If I Had A Girl" + }, + { + "artist": "Brenda Lee", + "position": 99, + "title": "Sweet Nothin's" + }, + { + "artist": "Mark Dinning", + "position": 100, + "title": "Teen Angel" + } + ], + "title": "1959 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Chipmunks With David Seville", + "position": 1, + "title": "The Chipmunk Song" + }, + { + "artist": "The Platters", + "position": 2, + "title": "Smoke Gets In Your Eyes" + }, + { + "artist": "The Teddy Bears", + "position": 3, + "title": "To Know Him, Is To Love Him" + }, + { + "artist": "The Everly Brothers", + "position": 4, + "title": "Problems" + }, + { + "artist": "The Kingston Trio", + "position": 5, + "title": "Tom Dooley" + }, + { + "artist": "Elvis Presley", + "position": 6, + "title": "One Night" + }, + { + "artist": "The Playmates", + "position": 7, + "title": "Beep Beep" + }, + { + "artist": "Ricky Nelson", + "position": 8, + "title": "Lonesome Town" + }, + { + "artist": "Conway Twitty", + "position": 9, + "title": "It's Only Make Believe" + }, + { + "artist": "Clyde McPhatter", + "position": 10, + "title": "A Lover's Question" + }, + { + "artist": "Elvis Presley", + "position": 11, + "title": "I Got Stung" + }, + { + "artist": "Fats Domino", + "position": 12, + "title": "Whole Lotta Loving" + }, + { + "artist": "Jimmie Rodgers", + "position": 13, + "title": "Bimbombey" + }, + { + "artist": "Billy Grammer", + "position": 14, + "title": "Gotta Travel On" + }, + { + "artist": "Tommy Edwards", + "position": 15, + "title": "Love Is All We Need" + }, + { + "artist": "Bobby Darin", + "position": 16, + "title": "Queen Of The Hop" + }, + { + "artist": "Connie Francis", + "position": 17, + "title": "My Happiness" + }, + { + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "position": 18, + "title": "Cannonball" + }, + { + "artist": "Jackie Wilson", + "position": 19, + "title": "Lonely Teardrops" + }, + { + "artist": "Cozy Cole", + "position": 20, + "title": "Topsy II" + }, + { + "artist": "Frankie Avalon", + "position": 21, + "title": "I'll Wait For You" + }, + { + "artist": "Ricky Nelson", + "position": 22, + "title": "I Got A Feeling" + }, + { + "artist": "The Royaltones", + "position": 23, + "title": "Poor Boy" + }, + { + "artist": "Louis Prima And Keely Smith", + "position": 24, + "title": "That Old Black Magic" + }, + { + "artist": "Big Bopper", + "position": 25, + "title": "Chantilly Lace" + }, + { + "artist": "The Nu Tornados", + "position": 26, + "title": "Philadelphia U.S.A." + }, + { + "artist": "Ritchie Valens", + "position": 27, + "title": "Donna" + }, + { + "artist": "Donnie Owens", + "position": 28, + "title": "Need You" + }, + { + "artist": "Tommy Edwards", + "position": 29, + "title": "It's All In The Game" + }, + { + "artist": "The Four Coins", + "position": 30, + "title": "The World Outside" + }, + { + "artist": "Reg Owen & His Orchestra", + "position": 31, + "title": "Manhattan Spiritual" + }, + { + "artist": "The Crests", + "position": 32, + "title": "16 Candles" + }, + { + "artist": "The Diamonds", + "position": 33, + "title": "Walking Along" + }, + { + "artist": "Earl Grant", + "position": 34, + "title": "The End" + }, + { + "artist": "The Cadillacs", + "position": 35, + "title": "Peek-A-Boo" + }, + { + "artist": "Sam Cooke", + "position": 36, + "title": "Love You Most Of All" + }, + { + "artist": "Paul Anka-Geo. Hamilton IV-Johnny Nash", + "position": 37, + "title": "The Teen Commandments" + }, + { + "artist": "Big Bopper", + "position": 38, + "title": "Big Bopper's Wedding" + }, + { + "artist": "Paul Anka", + "position": 39, + "title": "(All of a Sudden) My Heart Sings" + }, + { + "artist": "Pat Boone", + "position": 40, + "title": "I'll Remember Tonight" + }, + { + "artist": "Neil Sedaka", + "position": 41, + "title": "The Diary" + }, + { + "artist": "Jimmy Clanton", + "position": 42, + "title": "A Letter To An Angel" + }, + { + "artist": "Eddie Cochran", + "position": 43, + "title": "C'mon Everybody" + }, + { + "artist": "Cozy Cole", + "position": 44, + "title": "Turvy II" + }, + { + "artist": "LaVern Baker", + "position": 45, + "title": "I Cried A Tear" + }, + { + "artist": "The Four Lads", + "position": 46, + "title": "The Mocking Bird" + }, + { + "artist": "Jane Morgan", + "position": 47, + "title": "The Day The Rains Came" + }, + { + "artist": "Johnny Mathis", + "position": 48, + "title": "Call Me" + }, + { + "artist": "The Ames Brothers", + "position": 49, + "title": "Pussy Cat" + }, + { + "artist": "Kalin Twins", + "position": 50, + "title": "Forget Me Not" + }, + { + "artist": "The Tommy Dorsey Orchestra", + "position": 51, + "title": "Tea For Two Cha Cha" + }, + { + "artist": "Dee Clark", + "position": 52, + "title": "Nobody But You" + }, + { + "artist": "Augie Rios", + "position": 53, + "title": "??�D??�nde Est??� Santa Claus? (Where Is Santa Claus?)" + }, + { + "artist": "Chuck Berry", + "position": 54, + "title": "Sweet Little Rock And Roller" + }, + { + "artist": "June Valli", + "position": 55, + "title": "The Wedding" + }, + { + "artist": "Bill Parsons", + "position": 56, + "title": "The All American Boy" + }, + { + "artist": "Bobby Helms", + "position": 57, + "title": "Jingle Bell Rock" + }, + { + "artist": "Bernie Lowe Orchestra", + "position": 58, + "title": "Sing Sing Sing" + }, + { + "artist": "Roy Hamilton", + "position": 59, + "title": "Pledging My Love" + }, + { + "artist": "Billy Vaughn And His Orchestra", + "position": 60, + "title": "Cimarron (Roll On)" + }, + { + "artist": "The Four Esquires", + "position": 61, + "title": "Hideaway" + }, + { + "artist": "Johnny Cash And The Tennessee Two", + "position": 62, + "title": "It's Just About Time" + }, + { + "artist": "Dion & The Belmonts", + "position": 63, + "title": "Don't Pity Me" + }, + { + "artist": "The Applejacks", + "position": 64, + "title": "Rocka-Conga" + }, + { + "artist": "Joni James", + "position": 65, + "title": "There Goes My Heart" + }, + { + "artist": "Lloyd Price", + "position": 66, + "title": "Stagger Lee" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 67, + "title": "Try Me" + }, + { + "artist": "Jack Scott", + "position": 68, + "title": "Goodbye Baby" + }, + { + "artist": "The Four Preps", + "position": 69, + "title": "Cinderella" + }, + { + "artist": "Tony Dallara", + "position": 70, + "title": "Come Prima" + }, + { + "artist": "Raymond Lefevre and His Orchestra", + "position": 71, + "title": "The Day The Rains Came" + }, + { + "artist": "Harvey & The Moonglows", + "position": 72, + "title": "Ten Commandments Of Love" + }, + { + "artist": "Chuck Berry", + "position": 73, + "title": "Run Rudolph Run" + }, + { + "artist": "Tab Hunter", + "position": 74, + "title": "Jealous Heart" + }, + { + "artist": "Polly Bergen", + "position": 75, + "title": "Come Prima (Koma Preema)" + }, + { + "artist": "Frank Sinatra", + "position": 76, + "title": "Mr. Success" + }, + { + "artist": "Billy & Lillie", + "position": 77, + "title": "Lucky Ladybug" + }, + { + "artist": "The Everly Brothers", + "position": 78, + "title": "Love Of My Life" + }, + { + "artist": "Chuck Berry", + "position": 79, + "title": "Merry Christmas Baby" + }, + { + "artist": "The Applejacks", + "position": 80, + "title": "Mexican Hat Rock" + }, + { + "artist": "Quaker City Boys", + "position": 81, + "title": "Teasin'" + }, + { + "artist": "Perry Como", + "position": 82, + "title": "Mandolins In The Moonlight" + }, + { + "artist": "Jerry Wallace", + "position": 83, + "title": "Diamond Ring" + }, + { + "artist": "Bobby Helms", + "position": 84, + "title": "The Fool And The Angel" + }, + { + "artist": "Poni-Tails", + "position": 85, + "title": "Seven Minutes In Heaven" + }, + { + "artist": "Bing Crosby", + "position": 86, + "title": "White Christmas" + }, + { + "artist": "Nat King Cole", + "position": 87, + "title": "Non Dimenticar (Don't Forget)" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 88, + "title": "The Little Drummer Boy" + }, + { + "artist": "Enoch Light & The Light Brigade", + "position": 89, + "title": "I Want To Be Happy Cha Cha" + }, + { + "artist": "Bobby Freeman", + "position": 90, + "title": "Need Your Love" + }, + { + "artist": "Bobby Day", + "position": 91, + "title": "Rock-in Robin" + }, + { + "artist": "Johnny Tillotson", + "position": 92, + "title": "Dreamy Eyes" + }, + { + "artist": "Art Lund", + "position": 93, + "title": "Philadelphia U.S.A." + }, + { + "artist": "Chuck Berry", + "position": 94, + "title": "Joe Joe Gunne" + }, + { + "artist": "Ray Charles and his Orchestra", + "position": 95, + "title": "Rockhouse (Part 2)" + }, + { + "artist": "The Accents", + "position": 96, + "title": "Wiggle, Wiggle" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 97, + "title": "So Much" + }, + { + "artist": "The 5 Chanels", + "position": 98, + "title": "The Reason" + }, + { + "artist": "Wade Flemons and the Newcomers", + "position": 99, + "title": "Here I Stand" + }, + { + "artist": "The Olympics", + "position": 100, + "title": "(I Wanna) Dance With The Teacher" + } + ], + "title": "1958 - Hot 100" + } +] \ No newline at end of file diff --git a/docs/songList.json b/docs/songList.json new file mode 100644 index 0000000..b7d6177 --- /dev/null +++ b/docs/songList.json @@ -0,0 +1,51832 @@ +[ + { + "title": "2025 - US Top Songs", + "songs": [ + { + "position": 1, + "artist": "Justin Bieber", + "title": "DAISIES" + }, + { + "position": 2, + "artist": "HUNTR/X, EJAE, AUDREY NUNA, REI AMI, KPop Demon Hunters Cast", + "title": "Golden" + }, + { + "position": 3, + "artist": "Saja Boys, Andrew Choi, Neckwav, Danny Chung, KEVIN WOO, samUIL Lee, KPop Demon Hunters Cast", + "title": "Your Idol" + }, + { + "position": 4, + "artist": "Justin Bieber", + "title": "YUKON" + }, + { + "position": 5, + "artist": "HUNTR/X, EJAE, AUDREY NUNA, REI AMI, KPop Demon Hunters Cast", + "title": "How It’s Done" + }, + { + "position": 6, + "artist": "sombr", + "title": "back to friends" + }, + { + "position": 7, + "artist": "Justin Bieber", + "title": "GO BABY" + }, + { + "position": 8, + "artist": "Saja Boys, Andrew Choi, Neckwav, Danny Chung, KEVIN WOO, samUIL Lee, KPop Demon Hunters Cast", + "title": "Soda Pop" + }, + { + "position": 9, + "artist": "Drake", + "title": "What Did I Miss?" + }, + { + "position": 10, + "artist": "Justin Bieber", + "title": "ALL I CAN TAKE" + }, + { + "position": 11, + "artist": "Alex Warren", + "title": "Ordinary" + }, + { + "position": 12, + "artist": "Ravyn Lenae", + "title": "Love Me Not" + }, + { + "position": 13, + "artist": "HUNTR/X, EJAE, AUDREY NUNA, REI AMI, KPop Demon Hunters Cast", + "title": "What It Sounds Like" + }, + { + "position": 14, + "artist": "Morgan Wallen, Tate McRae", + "title": "What I Want (feat. Tate McRae)" + }, + { + "position": 15, + "artist": "Justin Bieber", + "title": "THINGS YOU DO" + }, + { + "position": 16, + "artist": "Rumi, Jinu, EJAE, Andrew Choi, KPop Demon Hunters Cast", + "title": "Free" + }, + { + "position": 17, + "artist": "BLACKPINK", + "title": "JUMP" + }, + { + "position": 18, + "artist": "HUNTR/X, EJAE, AUDREY NUNA, REI AMI, KPop Demon Hunters Cast", + "title": "Takedown" + }, + { + "position": 19, + "artist": "Sabrina Carpenter", + "title": "Manchild" + }, + { + "position": 20, + "artist": "Justin Bieber", + "title": "WALKING AWAY" + }, + { + "position": 21, + "artist": "Justin Bieber", + "title": "BUTTERFLIES" + }, + { + "position": 22, + "artist": "Justin Bieber, Gunna", + "title": "WAY IT IS" + }, + { + "position": 23, + "artist": "sombr", + "title": "undressed" + }, + { + "position": 24, + "artist": "Fleetwood Mac", + "title": "Dreams - 2004 Remaster" + }, + { + "position": 25, + "artist": "Morgan Wallen", + "title": "Just In Case" + }, + { + "position": 26, + "artist": "Travis Scott, Don Toliver", + "title": "CHAMPAIN & VACAY" + }, + { + "position": 27, + "artist": "Travis Scott", + "title": "KICK OUT" + }, + { + "position": 28, + "artist": "Morgan Wallen", + "title": "I Got Better" + }, + { + "position": 29, + "artist": "The Goo Goo Dolls", + "title": "Iris" + }, + { + "position": 30, + "artist": "The Marías", + "title": "No One Noticed" + }, + { + "position": 31, + "artist": "Chappell Roan", + "title": "Pink Pony Club" + }, + { + "position": 32, + "artist": "Billie Eilish", + "title": "BIRDS OF A FEATHER" + }, + { + "position": 33, + "artist": "Justin Bieber, Dijon", + "title": "DEVOTION" + }, + { + "position": 34, + "artist": "Post Malone, Morgan Wallen", + "title": "I Had Some Help (Feat. Morgan Wallen)" + }, + { + "position": 35, + "artist": "Tate McRae, F1 The Album", + "title": "Just Keep Watching (From F1® The Movie)" + }, + { + "position": 36, + "artist": "Shaboozey", + "title": "A Bar Song (Tipsy)" + }, + { + "position": 37, + "artist": "Morgan Wallen", + "title": "I'm The Problem" + }, + { + "position": 38, + "artist": "Travis Scott", + "title": "DUMBO" + }, + { + "position": 39, + "artist": "Kendrick Lamar, SZA", + "title": "luther (with sza)" + }, + { + "position": 40, + "artist": "Benson Boone", + "title": "Mystical Magical" + }, + { + "position": 41, + "artist": "Justin Bieber", + "title": "FIRST PLACE" + }, + { + "position": 42, + "artist": "Benson Boone", + "title": "Beautiful Things" + }, + { + "position": 43, + "artist": "Drake", + "title": "NOKIA" + }, + { + "position": 44, + "artist": "Hozier", + "title": "Too Sweet" + }, + { + "position": 45, + "artist": "Gigi Perez", + "title": "Sailor Song" + }, + { + "position": 46, + "artist": "Lady Gaga, Bruno Mars", + "title": "Die With A Smile" + }, + { + "position": 47, + "artist": "Justin Bieber, Sexyy Red", + "title": "SWEET SPOT" + }, + { + "position": 48, + "artist": "Teddy Swims", + "title": "Lose Control" + }, + { + "position": 49, + "artist": "Riley Green", + "title": "Worst Way" + }, + { + "position": 50, + "artist": "Zach Bryan, Kacey Musgraves", + "title": "I Remember Everything (feat. Kacey Musgraves)" + }, + { + "position": 51, + "artist": "Radiohead", + "title": "Creep" + }, + { + "position": 52, + "artist": "wifiskeleton, i wanna be a jack-o-lantern", + "title": "Nope your too late i already died" + }, + { + "position": 53, + "artist": "Coldplay", + "title": "Sparks" + }, + { + "position": 54, + "artist": "The Weeknd, Playboi Carti", + "title": "Timeless (feat Playboi Carti)" + }, + { + "position": 55, + "artist": "Arctic Monkeys", + "title": "505" + }, + { + "position": 56, + "artist": "Morgan Wallen", + "title": "20 Cigarettes" + }, + { + "position": 57, + "artist": "Zach Top", + "title": "I Never Lie" + }, + { + "position": 58, + "artist": "BigXthaPlug, Bailey Zimmerman", + "title": "All The Way (feat. Bailey Zimmerman)" + }, + { + "position": 59, + "artist": "Zach Bryan", + "title": "Something in the Orange" + }, + { + "position": 60, + "artist": "Tyler, The Creator, Kali Uchis", + "title": "See You Again (feat. Kali Uchis)" + }, + { + "position": 61, + "artist": "Black Eyed Peas", + "title": "Rock That Body" + }, + { + "position": 62, + "artist": "Clipse, Kendrick Lamar, Pusha T, Malice", + "title": "Chains & Whips" + }, + { + "position": 63, + "artist": "Jessie Murph", + "title": "Blue Strips" + }, + { + "position": 64, + "artist": "Sabrina Carpenter", + "title": "Espresso" + }, + { + "position": 65, + "artist": "Travis Scott, Sheck Wes, Don Toliver", + "title": "2000 EXCURSION" + }, + { + "position": 66, + "artist": "Morgan Wallen", + "title": "Love Somebody" + }, + { + "position": 67, + "artist": "TWICE", + "title": "TAKEDOWN (JEONGYEON, JIHYO, CHAEYOUNG) (from the Netflix film KPop Demon Hunters)" + }, + { + "position": 68, + "artist": "Lil Tecca", + "title": "Dark Thoughts" + }, + { + "position": 69, + "artist": "Chappell Roan", + "title": "Good Luck, Babe!" + }, + { + "position": 70, + "artist": "Justin Bieber, Cash Cobain, Eddie Benjamin", + "title": "SWAG" + }, + { + "position": 71, + "artist": "Justin Bieber", + "title": "GLORY VOICE MEMO" + }, + { + "position": 72, + "artist": "Disco Lines, Tinashe", + "title": "No Broke Boys" + }, + { + "position": 73, + "artist": "Justin Bieber, Druski", + "title": "SOULFUL" + }, + { + "position": 74, + "artist": "Justin Bieber, Lil B", + "title": "DADZ LOVE" + }, + { + "position": 75, + "artist": "KATSEYE", + "title": "Gabriela" + }, + { + "position": 76, + "artist": "Bad Bunny", + "title": "DtMF" + }, + { + "position": 77, + "artist": "Travis Scott, Playboi Carti, Future", + "title": "WHERE WAS YOU" + }, + { + "position": 78, + "artist": "Kendrick Lamar, SZA", + "title": "All The Stars (with SZA) - From Black Panther: The Album" + }, + { + "position": 79, + "artist": "The Killers", + "title": "Mr. Brightside" + }, + { + "position": 80, + "artist": "Gracie Abrams", + "title": "That’s So True" + }, + { + "position": 81, + "artist": "Charli xcx", + "title": "party 4 u" + }, + { + "position": 82, + "artist": "Justin Bieber", + "title": "405" + }, + { + "position": 83, + "artist": "Chris Stapleton", + "title": "You Should Probably Leave" + }, + { + "position": 84, + "artist": "Tate McRae", + "title": "Sports car" + }, + { + "position": 85, + "artist": "Radiohead", + "title": "Let Down" + }, + { + "position": 86, + "artist": "The Neighbourhood", + "title": "Sweater Weather" + }, + { + "position": 87, + "artist": "Luke Combs", + "title": "Where the Wild Things Are" + }, + { + "position": 88, + "artist": "Fleetwood Mac", + "title": "The Chain - 2004 Remaster" + }, + { + "position": 89, + "artist": "Zach Bryan", + "title": "Pink Skies" + }, + { + "position": 90, + "artist": "TWICE", + "title": "Strategy (from the Netflix film KPop Demon Hunters)" + }, + { + "position": 91, + "artist": "Justin Bieber", + "title": "TOO LONG" + }, + { + "position": 92, + "artist": "Fuerza Regida", + "title": "TU SANCHO" + }, + { + "position": 93, + "artist": "Kendrick Lamar, Lefty Gunplay", + "title": "tv off (feat. lefty gunplay)" + }, + { + "position": 94, + "artist": "Morgan Wallen, ERNEST", + "title": "Cowgirls" + }, + { + "position": 95, + "artist": "Waka Flocka Flame, Roscoe Dash, Wale", + "title": "No Hands (feat. Roscoe Dash & Wale)" + }, + { + "position": 96, + "artist": "Leon Thomas", + "title": "MUTT" + }, + { + "position": 97, + "artist": "ROSÉ, Bruno Mars", + "title": "APT." + }, + { + "position": 98, + "artist": "Kendrick Lamar", + "title": "Not Like Us" + }, + { + "position": 99, + "artist": "Koe Wetzel, Jessie Murph", + "title": "High Road (feat. Jessie Murph)" + }, + { + "position": 100, + "artist": "d4vd", + "title": "Feel It" + }, + { + "position": 101, + "artist": "Chris Stapleton", + "title": "Tennessee Whiskey" + }, + { + "position": 102, + "artist": "Travis Scott, GloRilla", + "title": "SHYNE" + }, + { + "position": 103, + "artist": "Sam Barber, Avery Anna", + "title": "Indigo (feat. Avery Anna)" + }, + { + "position": 104, + "artist": "Alex Warren, Jelly Roll", + "title": "Bloodline (with Jelly Roll)" + }, + { + "position": 105, + "artist": "Cage The Elephant", + "title": "Cigarette Daydreams" + }, + { + "position": 106, + "artist": "Billie Eilish", + "title": "WILDFLOWER" + }, + { + "position": 107, + "artist": "Clipse, Tyler, The Creator, Pusha T, Malice", + "title": "P.O.V." + }, + { + "position": 108, + "artist": "Hozier", + "title": "Take Me to Church" + }, + { + "position": 109, + "artist": "Morgan Wallen", + "title": "Last Night" + }, + { + "position": 110, + "artist": "BabyChiefDoit", + "title": "WENT WEST" + }, + { + "position": 111, + "artist": "Don Toliver", + "title": "No Pole" + }, + { + "position": 112, + "artist": "Ella Langley", + "title": "weren't for the wind" + }, + { + "position": 113, + "artist": "Morgan Wallen", + "title": "Whiskey Glasses" + }, + { + "position": 114, + "artist": "Treaty Oak Revival", + "title": "Missed Call" + }, + { + "position": 115, + "artist": "PinkPantheress", + "title": "Illegal" + }, + { + "position": 116, + "artist": "The Red Clay Strays", + "title": "Wondering Why" + }, + { + "position": 117, + "artist": "Clipse, Pusha T, Malice", + "title": "So Be It" + }, + { + "position": 118, + "artist": "Eric Church", + "title": "Springsteen" + }, + { + "position": 119, + "artist": "Tate McRae", + "title": "greedy" + }, + { + "position": 120, + "artist": "Fuerza Regida", + "title": "Marlboro Rojo" + }, + { + "position": 121, + "artist": "Tucker Wetmore", + "title": "Wind Up Missin’ You" + }, + { + "position": 122, + "artist": "Sabrina Carpenter", + "title": "Taste" + }, + { + "position": 123, + "artist": "SoFaygo", + "title": "MM3" + }, + { + "position": 124, + "artist": "Coldplay", + "title": "Yellow" + }, + { + "position": 125, + "artist": "Hudson Westbrook", + "title": "House Again" + }, + { + "position": 126, + "artist": "Megan Moroney", + "title": "6 Months Later" + }, + { + "position": 127, + "artist": "Justin Bieber, Druski", + "title": "STANDING ON BUSINESS" + }, + { + "position": 128, + "artist": "Journey", + "title": "Don't Stop Believin' (2022 Remaster)" + }, + { + "position": 129, + "artist": "Bailey Zimmerman", + "title": "Rock and A Hard Place" + }, + { + "position": 130, + "artist": "Deftones", + "title": "my mind is a mountain" + }, + { + "position": 131, + "artist": "Bad Bunny", + "title": "NUEVAYoL" + }, + { + "position": 132, + "artist": "Morgan Wallen, Post Malone", + "title": "I Ain't Comin' Back (feat. Post Malone)" + }, + { + "position": 133, + "artist": "Justin Bieber, Druski", + "title": "THERAPY SESSION" + }, + { + "position": 134, + "artist": "GIVĒON", + "title": "I CAN TELL" + }, + { + "position": 135, + "artist": "Bad Bunny", + "title": "BAILE INoLVIDABLE" + }, + { + "position": 136, + "artist": "Jimin", + "title": "Who" + }, + { + "position": 137, + "artist": "Lil Wayne, Drake", + "title": "She Will" + }, + { + "position": 138, + "artist": "Neton Vega, Peso Pluma", + "title": "Morena" + }, + { + "position": 139, + "artist": "The Doobie Brothers", + "title": "Listen to the Music" + }, + { + "position": 140, + "artist": "Bryson Tiller", + "title": "Don't" + }, + { + "position": 141, + "artist": "Dasha", + "title": "Austin (Boots Stop Workin')" + }, + { + "position": 142, + "artist": "Zach Bryan", + "title": "River Washed Hair" + }, + { + "position": 143, + "artist": "Morgan Wallen", + "title": "TN" + }, + { + "position": 144, + "artist": "Noah Kahan", + "title": "Stick Season" + }, + { + "position": 145, + "artist": "Lola Young", + "title": "Messy" + }, + { + "position": 146, + "artist": "Chrystal, NOTION", + "title": "The Days - NOTION Remix" + }, + { + "position": 147, + "artist": "Justin Bieber", + "title": "ZUMA HOUSE" + }, + { + "position": 148, + "artist": "Lorde", + "title": "Ribs" + }, + { + "position": 149, + "artist": "Drake", + "title": "Headlines" + }, + { + "position": 150, + "artist": "Coldplay", + "title": "Viva La Vida" + }, + { + "position": 151, + "artist": "Laufey", + "title": "From The Start" + }, + { + "position": 152, + "artist": "Vance Joy", + "title": "Riptide" + }, + { + "position": 153, + "artist": "Jimmy Eat World", + "title": "The Middle" + }, + { + "position": 154, + "artist": "Lil Wayne, Drake, Future", + "title": "Love Me" + }, + { + "position": 155, + "artist": "Morgan Wallen", + "title": "7 Summers" + }, + { + "position": 156, + "artist": "Bad Bunny", + "title": "EoO" + }, + { + "position": 157, + "artist": "Luke Combs", + "title": "Ain't No Love In Oklahoma (From Twisters: The Album)" + }, + { + "position": 158, + "artist": "Linkin Park", + "title": "In the End" + }, + { + "position": 159, + "artist": "KATSEYE", + "title": "Gnarly" + }, + { + "position": 160, + "artist": "Sublime", + "title": "Santeria" + }, + { + "position": 161, + "artist": "Lord Huron", + "title": "The Night We Met" + }, + { + "position": 162, + "artist": "Mac Miller, Empire Of The Sun", + "title": "The Spins" + }, + { + "position": 163, + "artist": "Los Dareyes De La Sierra", + "title": "Frecuencia" + }, + { + "position": 164, + "artist": "Sabrina Carpenter", + "title": "Please Please Please" + }, + { + "position": 165, + "artist": "Zach Bryan", + "title": "Heading South" + }, + { + "position": 166, + "artist": "Ty Myers", + "title": "Thought It Was Love" + }, + { + "position": 167, + "artist": "Conan Gray", + "title": "Vodka Cranberry" + }, + { + "position": 168, + "artist": "Wiz Khalifa, Empire Of The Sun", + "title": "The Thrill" + }, + { + "position": 169, + "artist": "Travis Scott, SoFaygo", + "title": "CONTEST" + }, + { + "position": 170, + "artist": "Clipse, Pusha T, Malice", + "title": "Ace Trumpets" + }, + { + "position": 171, + "artist": "Brooks & Dunn", + "title": "Neon Moon" + }, + { + "position": 172, + "artist": "Morgan Wallen", + "title": "Chasin' You" + }, + { + "position": 173, + "artist": "Benson Boone", + "title": "Slow It Down" + }, + { + "position": 174, + "artist": "Don Toliver, Sheck Wes", + "title": "VELOUR" + }, + { + "position": 175, + "artist": "Luke Combs", + "title": "When It Rains It Pours" + }, + { + "position": 176, + "artist": "The Kid LAROI", + "title": "NIGHTS LIKE THIS" + }, + { + "position": 177, + "artist": "TOTO", + "title": "Africa" + }, + { + "position": 178, + "artist": "Frank Ocean", + "title": "Pink + White" + }, + { + "position": 179, + "artist": "Myles Smith", + "title": "Stargazing" + }, + { + "position": 180, + "artist": "Daryl Hall & John Oates", + "title": "Rich Girl" + }, + { + "position": 181, + "artist": "Creed", + "title": "One Last Breath" + }, + { + "position": 182, + "artist": "Taylor Swift", + "title": "Cruel Summer" + }, + { + "position": 183, + "artist": "Three Days Grace", + "title": "I Hate Everything About You" + }, + { + "position": 184, + "artist": "Red Hot Chili Peppers", + "title": "Scar Tissue" + }, + { + "position": 185, + "artist": "Alemán, Neton Vega", + "title": "Te Quería Ver" + }, + { + "position": 186, + "artist": "Darius Rucker", + "title": "Wagon Wheel" + }, + { + "position": 187, + "artist": "Kesha", + "title": "TiK ToK" + }, + { + "position": 188, + "artist": "The Weeknd, JENNIE, Lily-Rose Depp", + "title": "One Of The Girls (with JENNIE, Lily Rose Depp)" + }, + { + "position": 189, + "artist": "Chappell Roan", + "title": "HOT TO GO!" + }, + { + "position": 190, + "artist": "Steve Lacy", + "title": "Bad Habit" + }, + { + "position": 191, + "artist": "Morgan Wallen", + "title": "Superman" + }, + { + "position": 192, + "artist": "Don Toliver", + "title": "NO COMMENTS" + }, + { + "position": 193, + "artist": "Earth, Wind & Fire", + "title": "September" + }, + { + "position": 194, + "artist": "Don Toliver, Doja Cat, F1 The Album", + "title": "Lose My Mind (feat. Doja Cat) [From F1® The Movie]" + }, + { + "position": 195, + "artist": "Imogen Heap", + "title": "Headlock" + }, + { + "position": 196, + "artist": "d4vd", + "title": "Romantic Homicide" + }, + { + "position": 197, + "artist": "Black Sabbath", + "title": "Paranoid - 2012 - Remaster" + }, + { + "position": 198, + "artist": "The Chainsmokers, Coldplay", + "title": "Something Just Like This" + }, + { + "position": 199, + "artist": "Lil Tecca", + "title": "OWA OWA" + }, + { + "position": 200, + "artist": "Old Dominion", + "title": "One Man Band" + } + ] + }, + { + "title": "2024 - US Top Songs", + "songs": [ + { + "position": 1, + "artist": "Sabrina Carpenter", + "title": "Taste" + }, + { + "position": 2, + "artist": "Lady Gaga, Bruno Mars", + "title": "Die With A Smile" + }, + { + "position": 3, + "artist": "Sabrina Carpenter", + "title": "Please Please Please" + }, + { + "position": 4, + "artist": "Jimin", + "title": "Who" + }, + { + "position": 5, + "artist": "Sabrina Carpenter", + "title": "Espresso" + }, + { + "position": 6, + "artist": "Chappell Roan", + "title": "Good Luck, Babe!" + }, + { + "position": 7, + "artist": "Billie Eilish", + "title": "BIRDS OF A FEATHER" + }, + { + "position": 8, + "artist": "Sabrina Carpenter", + "title": "Bed Chem" + }, + { + "position": 9, + "artist": "Post Malone, Morgan Wallen", + "title": "I Had Some Help (Feat. Morgan Wallen)" + }, + { + "position": 10, + "artist": "Shaboozey", + "title": "A Bar Song (Tipsy)" + }, + { + "position": 11, + "artist": "Sabrina Carpenter", + "title": "Good Graces" + }, + { + "position": 12, + "artist": "Chappell Roan", + "title": "HOT TO GO!" + }, + { + "position": 13, + "artist": "Kendrick Lamar", + "title": "Not Like Us" + }, + { + "position": 14, + "artist": "Tommy Richman", + "title": "MILLION DOLLAR BABY" + }, + { + "position": 15, + "artist": "Sabrina Carpenter", + "title": "Juno" + }, + { + "position": 16, + "artist": "Chappell Roan", + "title": "Pink Pony Club" + }, + { + "position": 17, + "artist": "Sabrina Carpenter", + "title": "Sharpest Tool" + }, + { + "position": 18, + "artist": "Hozier", + "title": "Too Sweet" + }, + { + "position": 19, + "artist": "Sabrina Carpenter", + "title": "Coincidence" + }, + { + "position": 20, + "artist": "Zach Bryan, Kacey Musgraves", + "title": "I Remember Everything (feat. Kacey Musgraves)" + }, + { + "position": 21, + "artist": "Benson Boone", + "title": "Beautiful Things" + }, + { + "position": 22, + "artist": "Teddy Swims", + "title": "Lose Control" + }, + { + "position": 23, + "artist": "Zach Bryan", + "title": "Pink Skies" + }, + { + "position": 24, + "artist": "Hanumankind, Kalmi", + "title": "Big Dawgs" + }, + { + "position": 25, + "artist": "Noah Kahan", + "title": "Stick Season" + }, + { + "position": 26, + "artist": "Luke Combs", + "title": "Ain't No Love In Oklahoma (From Twisters: The Album)" + }, + { + "position": 27, + "artist": "Chappell Roan", + "title": "Red Wine Supernova" + }, + { + "position": 28, + "artist": "Sabrina Carpenter", + "title": "Slim Pickins" + }, + { + "position": 29, + "artist": "The Kid LAROI", + "title": "NIGHTS LIKE THIS" + }, + { + "position": 30, + "artist": "Charli xcx, Billie Eilish", + "title": "Guess featuring billie eilish" + }, + { + "position": 31, + "artist": "Zach Bryan", + "title": "Something in the Orange" + }, + { + "position": 32, + "artist": "Zach Bryan", + "title": "28" + }, + { + "position": 33, + "artist": "Gigi Perez", + "title": "Sailor Song" + }, + { + "position": 34, + "artist": "Morgan Wallen, ERNEST", + "title": "Cowgirls" + }, + { + "position": 35, + "artist": "Dasha", + "title": "Austin (Boots Stop Workin')" + }, + { + "position": 36, + "artist": "Morgan Wallen", + "title": "Lies Lies Lies" + }, + { + "position": 37, + "artist": "Gracie Abrams", + "title": "I Love You, I'm Sorry" + }, + { + "position": 38, + "artist": "Charli xcx", + "title": "Apple" + }, + { + "position": 39, + "artist": "Tyler, The Creator, Kali Uchis", + "title": "See You Again (feat. Kali Uchis)" + }, + { + "position": 40, + "artist": "Sabrina Carpenter", + "title": "Don’t Smile" + }, + { + "position": 41, + "artist": "Billie Eilish", + "title": "WILDFLOWER" + }, + { + "position": 42, + "artist": "Sabrina Carpenter", + "title": "Dumb & Poetic" + }, + { + "position": 43, + "artist": "Benson Boone", + "title": "Slow It Down" + }, + { + "position": 44, + "artist": "Morgan Wallen", + "title": "Last Night" + }, + { + "position": 45, + "artist": "Zach Bryan", + "title": "Heading South" + }, + { + "position": 46, + "artist": "The Neighbourhood", + "title": "Sweater Weather" + }, + { + "position": 47, + "artist": "Chappell Roan", + "title": "Casual" + }, + { + "position": 48, + "artist": "KAROL G", + "title": "Si Antes Te Hubiera Conocido" + }, + { + "position": 49, + "artist": "Future, Metro Boomin, Kendrick Lamar", + "title": "Like That" + }, + { + "position": 50, + "artist": "Zach Bryan", + "title": "Sun to Me" + }, + { + "position": 51, + "artist": "Gunna", + "title": "one of wun" + }, + { + "position": 52, + "artist": "Frank Ocean", + "title": "Pink + White" + }, + { + "position": 53, + "artist": "Sabrina Carpenter", + "title": "Lie To Girls" + }, + { + "position": 54, + "artist": "Post Malone, Luke Combs", + "title": "Guy For That (Feat. Luke Combs)" + }, + { + "position": 55, + "artist": "Michael Marcagi", + "title": "Scared To Start" + }, + { + "position": 56, + "artist": "Charli xcx", + "title": "360" + }, + { + "position": 57, + "artist": "Morgan Wallen", + "title": "Thinkin’ Bout Me" + }, + { + "position": 58, + "artist": "Myles Smith", + "title": "Stargazing" + }, + { + "position": 59, + "artist": "Jordan Adetunji", + "title": "KEHLANI" + }, + { + "position": 60, + "artist": "Taylor Swift", + "title": "Cruel Summer" + }, + { + "position": 61, + "artist": "Taylor Swift", + "title": "I Can Do It With a Broken Heart" + }, + { + "position": 62, + "artist": "Daryl Hall & John Oates", + "title": "Rich Girl" + }, + { + "position": 63, + "artist": "Djo", + "title": "End of Beginning" + }, + { + "position": 64, + "artist": "Billie Eilish", + "title": "LUNCH" + }, + { + "position": 65, + "artist": "Morgan Wallen", + "title": "You Proof" + }, + { + "position": 66, + "artist": "BigXthaPlug", + "title": "Mmhmm" + }, + { + "position": 67, + "artist": "Ariana Grande", + "title": "we can't be friends (wait for your love)" + }, + { + "position": 68, + "artist": "Chappell Roan", + "title": "Femininomenon" + }, + { + "position": 69, + "artist": "SZA", + "title": "Saturn" + }, + { + "position": 70, + "artist": "PinkPantheress", + "title": "Pain" + }, + { + "position": 71, + "artist": "Clairo", + "title": "Juna" + }, + { + "position": 72, + "artist": "Tucker Wetmore", + "title": "Wind Up Missin’ You" + }, + { + "position": 73, + "artist": "Peso Pluma, Neton Vega", + "title": "LA PATRULLA" + }, + { + "position": 74, + "artist": "Taylor Swift, Post Malone", + "title": "Fortnight (feat. Post Malone)" + }, + { + "position": 75, + "artist": "Zach Bryan", + "title": "Oklahoma Smokeshow" + }, + { + "position": 76, + "artist": "*NSYNC", + "title": "Bye Bye Bye" + }, + { + "position": 77, + "artist": "Surf Curse", + "title": "Disco" + }, + { + "position": 78, + "artist": "Luke Combs", + "title": "When It Rains It Pours" + }, + { + "position": 79, + "artist": "Arctic Monkeys", + "title": "505" + }, + { + "position": 80, + "artist": "Mitski", + "title": "My Love Mine All Mine" + }, + { + "position": 81, + "artist": "Travis Scott, Playboi Carti", + "title": "FE!N (feat. Playboi Carti)" + }, + { + "position": 82, + "artist": "Fleetwood Mac", + "title": "Dreams - 2004 Remaster" + }, + { + "position": 83, + "artist": "LE SSERAFIM", + "title": "CRAZY" + }, + { + "position": 84, + "artist": "TV Girl", + "title": "Lovers Rock" + }, + { + "position": 85, + "artist": "Sabrina Carpenter", + "title": "Nonsense" + }, + { + "position": 86, + "artist": "Van Morrison", + "title": "Brown Eyed Girl" + }, + { + "position": 87, + "artist": "Richy Mitch & The Coal Miners", + "title": "Evergreen" + }, + { + "position": 88, + "artist": "Addison Rae", + "title": "Diet Pepsi" + }, + { + "position": 89, + "artist": "Miguel", + "title": "Sure Thing" + }, + { + "position": 90, + "artist": "Sabrina Carpenter", + "title": "Feather" + }, + { + "position": 91, + "artist": "Future, Metro Boomin, Travis Scott, Playboi Carti", + "title": "Type Shit" + }, + { + "position": 92, + "artist": "Diplo, Morgan Wallen", + "title": "Heartless (feat. Morgan Wallen)" + }, + { + "position": 93, + "artist": "Luke Combs", + "title": "She Got the Best of Me" + }, + { + "position": 94, + "artist": "Gracie Abrams", + "title": "Close To You" + }, + { + "position": 95, + "artist": "Drake, Young Thug, 21 Savage", + "title": "It's Up (feat. Young Thug & 21 Savage)" + }, + { + "position": 96, + "artist": "Hotel Ugly", + "title": "Shut up My Moms Calling" + }, + { + "position": 97, + "artist": "Drake", + "title": "No Face" + }, + { + "position": 98, + "artist": "GloRilla", + "title": "Yeah Glo!" + }, + { + "position": 99, + "artist": "Chappell Roan", + "title": "My Kink Is Karma" + }, + { + "position": 100, + "artist": "SZA", + "title": "Kill Bill" + }, + { + "position": 101, + "artist": "Billie Eilish", + "title": "CHIHIRO" + }, + { + "position": 102, + "artist": "Offset, Metro Boomin", + "title": "Ric Flair Drip (with Metro Boomin)" + }, + { + "position": 103, + "artist": "Chris Stapleton", + "title": "You Should Probably Leave" + }, + { + "position": 104, + "artist": "Journey", + "title": "Don't Stop Believin' (2022 Remaster)" + }, + { + "position": 105, + "artist": "Hozier", + "title": "Take Me to Church" + }, + { + "position": 106, + "artist": "The Killers", + "title": "Mr. Brightside" + }, + { + "position": 107, + "artist": "GloRilla", + "title": "TGIF" + }, + { + "position": 108, + "artist": "Fuerza Regida", + "title": "NEL" + }, + { + "position": 109, + "artist": "The Marías", + "title": "No One Noticed" + }, + { + "position": 110, + "artist": "Artemas", + "title": "i like the way you kiss me" + }, + { + "position": 111, + "artist": "The Goo Goo Dolls", + "title": "Iris" + }, + { + "position": 112, + "artist": "Megan Thee Stallion, Yuki Chiba", + "title": "Mamushi (feat. Yuki Chiba)" + }, + { + "position": 113, + "artist": "TV Girl", + "title": "Not Allowed" + }, + { + "position": 114, + "artist": "Mac Miller, Empire Of The Sun", + "title": "The Spins" + }, + { + "position": 115, + "artist": "Bryson Tiller", + "title": "Don't" + }, + { + "position": 116, + "artist": "Post Malone, Blake Shelton", + "title": "Pour Me A Drink (Feat. Blake Shelton)" + }, + { + "position": 117, + "artist": "Luis R Conriquez, Neton Vega", + "title": "Si No Quieres No" + }, + { + "position": 118, + "artist": "Earth, Wind & Fire", + "title": "September" + }, + { + "position": 119, + "artist": "Zach Bryan", + "title": "Burn, Burn, Burn" + }, + { + "position": 120, + "artist": "Josh Meloy", + "title": "Porch Light" + }, + { + "position": 121, + "artist": "Frank Ocean", + "title": "Thinkin Bout You" + }, + { + "position": 122, + "artist": "Koe Wetzel, Jessie Murph", + "title": "High Road (feat. Jessie Murph)" + }, + { + "position": 123, + "artist": "Morgan Wallen", + "title": "Wasted On You" + }, + { + "position": 124, + "artist": "Cage The Elephant", + "title": "Cigarette Daydreams" + }, + { + "position": 125, + "artist": "Eminem", + "title": "Houdini" + }, + { + "position": 126, + "artist": "Zach Bryan", + "title": "Nine Ball" + }, + { + "position": 127, + "artist": "Post Malone, Tim McGraw", + "title": "Wrong Ones (Feat. Tim McGraw)" + }, + { + "position": 128, + "artist": "Steve Lacy", + "title": "Dark Red" + }, + { + "position": 129, + "artist": "Gunna", + "title": "fukumean" + }, + { + "position": 130, + "artist": "Zach Bryan, The War And Treaty", + "title": "Hey Driver (feat. The War and Treaty)" + }, + { + "position": 131, + "artist": "The Cranberries", + "title": "Linger" + }, + { + "position": 132, + "artist": "Luke Combs", + "title": "Where the Wild Things Are" + }, + { + "position": 133, + "artist": "Luke Combs", + "title": "Beautiful Crazy" + }, + { + "position": 134, + "artist": "Drake", + "title": "Circadian Rhythm" + }, + { + "position": 135, + "artist": "The Weeknd, JENNIE, Lily-Rose Depp", + "title": "One Of The Girls (with JENNIE, Lily Rose Depp)" + }, + { + "position": 136, + "artist": "A$AP Rocky", + "title": "Tailor Swif" + }, + { + "position": 137, + "artist": "Dominic Fike", + "title": "misses" + }, + { + "position": 138, + "artist": "Kendrick Lamar, SZA", + "title": "All The Stars (with SZA) - From Black Panther: The Album" + }, + { + "position": 139, + "artist": "Creedence Clearwater Revival", + "title": "Fortunate Son" + }, + { + "position": 140, + "artist": "Post Malone, Swae Lee", + "title": "Sunflower - Spider-Man: Into the Spider-Verse" + }, + { + "position": 141, + "artist": "SZA", + "title": "Good Days" + }, + { + "position": 142, + "artist": "Marshmello, Kane Brown", + "title": "Miles On It" + }, + { + "position": 143, + "artist": "AC/DC", + "title": "You Shook Me All Night Long" + }, + { + "position": 144, + "artist": "Arctic Monkeys", + "title": "I Wanna Be Yours" + }, + { + "position": 145, + "artist": "Lil Durk, Morgan Wallen", + "title": "Broadway Girls (feat. Morgan Wallen)" + }, + { + "position": 146, + "artist": "FloyyMenor, Cris MJ", + "title": "Gata Only" + }, + { + "position": 147, + "artist": "Ella Langley, Riley Green", + "title": "you look like you love me (feat. Riley Green)" + }, + { + "position": 148, + "artist": "Taylor Swift", + "title": "august" + }, + { + "position": 149, + "artist": "J. Cole", + "title": "No Role Modelz" + }, + { + "position": 150, + "artist": "Tommy Richman", + "title": "DEVIL IS A LIE" + }, + { + "position": 151, + "artist": "SZA", + "title": "Broken Clocks" + }, + { + "position": 152, + "artist": "Morgan Wallen", + "title": "Whiskey Glasses" + }, + { + "position": 153, + "artist": "Chris Stapleton", + "title": "Tennessee Whiskey" + }, + { + "position": 154, + "artist": "d4vd", + "title": "Romantic Homicide" + }, + { + "position": 155, + "artist": "The Kid LAROI", + "title": "BABY I'M BACK" + }, + { + "position": 156, + "artist": "Lord Huron", + "title": "The Night We Met" + }, + { + "position": 157, + "artist": "Cigarettes After Sex", + "title": "Apocalypse" + }, + { + "position": 158, + "artist": "Zach Bryan", + "title": "Motorcycle Drive By" + }, + { + "position": 159, + "artist": "Hozier", + "title": "Work Song" + }, + { + "position": 160, + "artist": "SZA", + "title": "Snooze" + }, + { + "position": 161, + "artist": "TV Girl", + "title": "Cigarettes out the Window" + }, + { + "position": 162, + "artist": "Bryson Tiller", + "title": "Whatever She Wants" + }, + { + "position": 163, + "artist": "Frank Ocean", + "title": "Ivy" + }, + { + "position": 164, + "artist": "Tate McRae", + "title": "greedy" + }, + { + "position": 165, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1" + }, + { + "position": 166, + "artist": "Radiohead", + "title": "Creep" + }, + { + "position": 167, + "artist": "Kanye West", + "title": "Heartless" + }, + { + "position": 168, + "artist": "Mark Ambor", + "title": "Belong Together" + }, + { + "position": 169, + "artist": "Steve Lacy", + "title": "Bad Habit" + }, + { + "position": 170, + "artist": "Future, Drake, Tems", + "title": "WAIT FOR U (feat. Drake & Tems)" + }, + { + "position": 171, + "artist": "Tate McRae", + "title": "exes" + }, + { + "position": 172, + "artist": "Laufey", + "title": "From The Start" + }, + { + "position": 173, + "artist": "The Walters", + "title": "I Love You So" + }, + { + "position": 174, + "artist": "Tyler Childers", + "title": "All Your'n" + }, + { + "position": 175, + "artist": "Jessie Murph, Jelly Roll", + "title": "Wild Ones (feat. Jelly Roll)" + }, + { + "position": 176, + "artist": "Noah Kahan", + "title": "You’re Gonna Go Far" + }, + { + "position": 177, + "artist": "Luke Combs", + "title": "Beer Never Broke My Heart" + }, + { + "position": 178, + "artist": "Coldplay", + "title": "Yellow" + }, + { + "position": 179, + "artist": "Noah Kahan, Post Malone", + "title": "Dial Drunk (with Post Malone)" + }, + { + "position": 180, + "artist": "Kendrick Lamar, Jay Rock", + "title": "Money Trees" + }, + { + "position": 181, + "artist": "Luke Combs", + "title": "The Kind of Love We Make" + }, + { + "position": 182, + "artist": "The Red Clay Strays", + "title": "Wondering Why" + }, + { + "position": 183, + "artist": "Kendrick Lamar", + "title": "HUMBLE." + }, + { + "position": 184, + "artist": "Post Malone, Jelly Roll", + "title": "Losers (Feat. Jelly Roll)" + }, + { + "position": 185, + "artist": "XXXTENTACION", + "title": "Revenge" + }, + { + "position": 186, + "artist": "Natasha Bedingfield", + "title": "Unwritten" + }, + { + "position": 187, + "artist": "Foo Fighters", + "title": "Everlong" + }, + { + "position": 188, + "artist": "Tory Lanez", + "title": "The Color Violet" + }, + { + "position": 189, + "artist": "Zach Bryan, The Lumineers", + "title": "Spotless (feat. The Lumineers)" + }, + { + "position": 190, + "artist": "Sleepy Hallow", + "title": "2055" + }, + { + "position": 191, + "artist": "USHER, Lil Jon, Ludacris", + "title": "Yeah! (feat. Lil Jon & Ludacris)" + }, + { + "position": 192, + "artist": "Peso Pluma, Tito Double P", + "title": "LOS CUADROS" + }, + { + "position": 193, + "artist": "Creedence Clearwater Revival", + "title": "Have You Ever Seen The Rain" + }, + { + "position": 194, + "artist": "Tyler Childers", + "title": "Feathered Indians" + }, + { + "position": 195, + "artist": "Steve Lacy", + "title": "Some" + }, + { + "position": 196, + "artist": "Nickelback", + "title": "How You Remind Me" + }, + { + "position": 197, + "artist": "Marvin Gaye, Tammi Terrell", + "title": "Ain't No Mountain High Enough" + }, + { + "position": 198, + "artist": "Morgan Wallen", + "title": "Chasin' You" + }, + { + "position": 199, + "artist": "The Outfield", + "title": "Your Love" + }, + { + "position": 200, + "artist": "Frank Ocean", + "title": "White Ferrari" + } + ] + }, + { + "title": "2023 - US Top Songs", + "songs": [ + { + "position": 1, + "artist": "Doja Cat", + "title": "Paint The Town Red" + }, + { + "position": 2, + "artist": "Zach Bryan, Kacey Musgraves", + "title": "I Remember Everything (feat. Kacey Musgraves)" + }, + { + "position": 3, + "artist": "Gunna", + "title": "fukumean" + }, + { + "position": 4, + "artist": "Taylor Swift", + "title": "Cruel Summer" + }, + { + "position": 5, + "artist": "Morgan Wallen", + "title": "Last Night" + }, + { + "position": 6, + "artist": "Oliver Anthony Music", + "title": "Rich Men North of Richmond" + }, + { + "position": 7, + "artist": "Zach Bryan, The War And Treaty", + "title": "Hey Driver (feat. The War and Treaty)" + }, + { + "position": 8, + "artist": "Travis Scott", + "title": "I KNOW ?" + }, + { + "position": 9, + "artist": "Olivia Rodrigo", + "title": "vampire" + }, + { + "position": 10, + "artist": "Travis Scott, Drake", + "title": "MELTDOWN (feat. Drake)" + }, + { + "position": 11, + "artist": "Zach Bryan", + "title": "Something in the Orange" + }, + { + "position": 12, + "artist": "Nicki Minaj, Ice Spice, Aqua", + "title": "Barbie World (with Aqua) [From Barbie The Album]" + }, + { + "position": 13, + "artist": "Luke Combs", + "title": "Fast Car" + }, + { + "position": 14, + "artist": "Olivia Rodrigo", + "title": "bad idea right?" + }, + { + "position": 15, + "artist": "Zach Bryan", + "title": "Tourniquet" + }, + { + "position": 16, + "artist": "KAROL G, Peso Pluma", + "title": "QLONA" + }, + { + "position": 17, + "artist": "Billie Eilish", + "title": "What Was I Made For? [From The Motion Picture Barbie]" + }, + { + "position": 18, + "artist": "Dua Lipa", + "title": "Dance The Night - From Barbie The Album" + }, + { + "position": 19, + "artist": "Zach Bryan, The Lumineers", + "title": "Spotless (feat. The Lumineers)" + }, + { + "position": 20, + "artist": "Jung Kook, Latto", + "title": "Seven (feat. Latto)" + }, + { + "position": 21, + "artist": "SZA", + "title": "Kill Bill" + }, + { + "position": 22, + "artist": "Zach Bryan", + "title": "East Side of Sorrow" + }, + { + "position": 23, + "artist": "SZA", + "title": "Snooze" + }, + { + "position": 24, + "artist": "Tyler, The Creator, Kali Uchis", + "title": "See You Again (feat. Kali Uchis)" + }, + { + "position": 25, + "artist": "Miley Cyrus", + "title": "Used To Be Young" + }, + { + "position": 26, + "artist": "Eslabon Armado, Peso Pluma", + "title": "Ella Baila Sola" + }, + { + "position": 27, + "artist": "Morgan Wallen", + "title": "You Proof" + }, + { + "position": 28, + "artist": "Travis Scott, Playboi Carti", + "title": "FE!N (feat. Playboi Carti)" + }, + { + "position": 29, + "artist": "Travis Scott, SZA, Future", + "title": "TELEKINESIS (feat. SZA & Future)" + }, + { + "position": 30, + "artist": "Bailey Zimmerman", + "title": "Religiously" + }, + { + "position": 31, + "artist": "Peso Pluma, Gabito Ballesteros, Junior H", + "title": "LADY GAGA" + }, + { + "position": 32, + "artist": "Doja Cat", + "title": "Demons" + }, + { + "position": 33, + "artist": "J. Cole", + "title": "No Role Modelz" + }, + { + "position": 34, + "artist": "Zach Bryan", + "title": "Fear and Friday's" + }, + { + "position": 35, + "artist": "Morgan Wallen", + "title": "Wasted On You" + }, + { + "position": 36, + "artist": "Zach Bryan", + "title": "Heading South" + }, + { + "position": 37, + "artist": "Nicki Minaj", + "title": "Last Time I Saw You" + }, + { + "position": 38, + "artist": "Taylor Swift", + "title": "august" + }, + { + "position": 39, + "artist": "Drake, 21 Savage", + "title": "Jimmy Cooks (feat. 21 Savage)" + }, + { + "position": 40, + "artist": "Myke Towers", + "title": "LALA" + }, + { + "position": 41, + "artist": "Zach Bryan", + "title": "Ticking" + }, + { + "position": 42, + "artist": "Frank Ocean", + "title": "Pink + White" + }, + { + "position": 43, + "artist": "Taylor Swift", + "title": "Anti-Hero" + }, + { + "position": 44, + "artist": "Morgan Wallen", + "title": "Thinkin’ Bout Me" + }, + { + "position": 45, + "artist": "Kali Uchis", + "title": "Moonlight" + }, + { + "position": 46, + "artist": "Zach Bryan", + "title": "Overtime" + }, + { + "position": 47, + "artist": "Yng Lvcas, Peso Pluma", + "title": "La Bebe - Remix" + }, + { + "position": 48, + "artist": "Selena Gomez", + "title": "Single Soon" + }, + { + "position": 49, + "artist": "Jimmy Buffett", + "title": "Margaritaville" + }, + { + "position": 50, + "artist": "Zach Bryan", + "title": "Summertime's Close" + }, + { + "position": 51, + "artist": "Zach Bryan", + "title": "Sun to Me" + }, + { + "position": 52, + "artist": "PinkPantheress, Ice Spice", + "title": "Boy's a liar Pt. 2" + }, + { + "position": 53, + "artist": "NewJeans", + "title": "Super Shy" + }, + { + "position": 54, + "artist": "Drake", + "title": "Search & Rescue" + }, + { + "position": 55, + "artist": "Taylor Swift", + "title": "Style" + }, + { + "position": 56, + "artist": "Zach Bryan", + "title": "Smaller Acts" + }, + { + "position": 57, + "artist": "Taylor Swift", + "title": "Karma" + }, + { + "position": 58, + "artist": "The Neighbourhood", + "title": "Sweater Weather" + }, + { + "position": 59, + "artist": "Harry Styles", + "title": "As It Was" + }, + { + "position": 60, + "artist": "Zach Bryan, Maggie Rogers", + "title": "Dawns (feat. Maggie Rogers)" + }, + { + "position": 61, + "artist": "Laufey", + "title": "From The Start" + }, + { + "position": 62, + "artist": "Bad Bunny", + "title": "WHERE SHE GOES" + }, + { + "position": 63, + "artist": "David Kushner", + "title": "Daylight" + }, + { + "position": 64, + "artist": "Fuerza Regida", + "title": "SABOR FRESA" + }, + { + "position": 65, + "artist": "Kendrick Lamar, Jay Rock", + "title": "Money Trees" + }, + { + "position": 66, + "artist": "Zach Bryan, Sierra Ferrell", + "title": "Holy Roller (feat. Sierra Ferrell)" + }, + { + "position": 67, + "artist": "KAROL G", + "title": "MI EX TENÍA RAZÓN" + }, + { + "position": 68, + "artist": "The Weeknd", + "title": "Die For You" + }, + { + "position": 69, + "artist": "Ice Spice", + "title": "Deli" + }, + { + "position": 70, + "artist": "Noah Kahan, Post Malone", + "title": "Dial Drunk (with Post Malone)" + }, + { + "position": 71, + "artist": "Noah Kahan", + "title": "Stick Season" + }, + { + "position": 72, + "artist": "Miley Cyrus", + "title": "Flowers" + }, + { + "position": 73, + "artist": "Taylor Swift", + "title": "Blank Space" + }, + { + "position": 74, + "artist": "Metro Boomin, The Weeknd, 21 Savage", + "title": "Creepin' (with The Weeknd & 21 Savage)" + }, + { + "position": 75, + "artist": "Zach Bryan", + "title": "El Dorado" + }, + { + "position": 76, + "artist": "Hotel Ugly", + "title": "Shut up My Moms Calling" + }, + { + "position": 77, + "artist": "Kanye West", + "title": "Heartless" + }, + { + "position": 78, + "artist": "Miguel", + "title": "Sure Thing" + }, + { + "position": 79, + "artist": "Lil Durk, J. Cole", + "title": "All My Life (feat. J. Cole)" + }, + { + "position": 80, + "artist": "Grupo Frontera, Bad Bunny", + "title": "un x100to" + }, + { + "position": 81, + "artist": "Taylor Swift", + "title": "cardigan" + }, + { + "position": 82, + "artist": "Steve Lacy", + "title": "Dark Red" + }, + { + "position": 83, + "artist": "Post Malone, Swae Lee", + "title": "Sunflower - Spider-Man: Into the Spider-Verse" + }, + { + "position": 84, + "artist": "Junior H, Peso Pluma", + "title": "El Azul" + }, + { + "position": 85, + "artist": "d4vd", + "title": "Romantic Homicide" + }, + { + "position": 86, + "artist": "Peso Pluma, Grupo Frontera", + "title": "TULUM" + }, + { + "position": 87, + "artist": "Drake, 21 Savage", + "title": "Rich Flex" + }, + { + "position": 88, + "artist": "Brent Faiyaz", + "title": "Clouded" + }, + { + "position": 89, + "artist": "Kanye West, Dwele", + "title": "Flashing Lights" + }, + { + "position": 90, + "artist": "Morgan Wallen", + "title": "Whiskey Glasses" + }, + { + "position": 91, + "artist": "Fuerza Regida", + "title": "TQM" + }, + { + "position": 92, + "artist": "Tory Lanez", + "title": "The Color Violet" + }, + { + "position": 93, + "artist": "Post Malone", + "title": "Chemical" + }, + { + "position": 94, + "artist": "Taylor Swift", + "title": "Don’t Blame Me" + }, + { + "position": 95, + "artist": "Rema, Selena Gomez", + "title": "Calm Down (with Selena Gomez)" + }, + { + "position": 96, + "artist": "Travis Scott, Bad Bunny, The Weeknd", + "title": "K-POP" + }, + { + "position": 97, + "artist": "Charli xcx", + "title": "Speed Drive (From Barbie The Album)" + }, + { + "position": 98, + "artist": "Peso Pluma, Jasiel Nuñez", + "title": "LAGUNAS" + }, + { + "position": 99, + "artist": "Zach Bryan", + "title": "Oklahoma Smokeshow" + }, + { + "position": 100, + "artist": "Zach Bryan", + "title": "Jake's Piano - Long Island" + }, + { + "position": 101, + "artist": "Travis Scott", + "title": "MY EYES" + }, + { + "position": 102, + "artist": "Fleetwood Mac", + "title": "Dreams - 2004 Remaster" + }, + { + "position": 103, + "artist": "TV Girl", + "title": "Lovers Rock" + }, + { + "position": 104, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1" + }, + { + "position": 105, + "artist": "Steve Lacy", + "title": "Bad Habit" + }, + { + "position": 106, + "artist": "Luke Combs", + "title": "The Kind of Love We Make" + }, + { + "position": 107, + "artist": "Sabrina Carpenter", + "title": "Nonsense" + }, + { + "position": 108, + "artist": "Young Nudy, 21 Savage", + "title": "Peaches & Eggplants (feat. 21 Savage)" + }, + { + "position": 109, + "artist": "Zach Bryan", + "title": "Tradesman" + }, + { + "position": 110, + "artist": "Metro Boomin, Future, Chris Brown", + "title": "Superhero (Heroes & Villains) [with Future & Chris Brown]" + }, + { + "position": 111, + "artist": "Tyler Childers", + "title": "In Your Love" + }, + { + "position": 112, + "artist": "Future, Drake, Tems", + "title": "WAIT FOR U (feat. Drake & Tems)" + }, + { + "position": 113, + "artist": "Calle 24, Chino Pacas, Fuerza Regida", + "title": "Que Onda" + }, + { + "position": 114, + "artist": "Bailey Zimmerman", + "title": "Rock and A Hard Place" + }, + { + "position": 115, + "artist": "Taylor Swift", + "title": "I Can See You (Taylor’s Version) (From The Vault)" + }, + { + "position": 116, + "artist": "Morgan Wallen, ERNEST", + "title": "Cowgirls" + }, + { + "position": 117, + "artist": "Travis Scott, Rob49, 21 Savage", + "title": "TOPIA TWINS (feat. Rob49 & 21 Savage)" + }, + { + "position": 118, + "artist": "Tyler Childers", + "title": "Feathered Indians" + }, + { + "position": 119, + "artist": "FIFTY FIFTY", + "title": "Cupid - Twin Version" + }, + { + "position": 120, + "artist": "21 Savage, Metro Boomin", + "title": "Glock In My Lap" + }, + { + "position": 121, + "artist": "Baby Keem, Kendrick Lamar", + "title": "family ties (with Kendrick Lamar)" + }, + { + "position": 122, + "artist": "Steve Lacy", + "title": "Infrunami" + }, + { + "position": 123, + "artist": "Metro Boomin, Travis Scott, Young Thug", + "title": "Trance (with Travis Scott & Young Thug)" + }, + { + "position": 124, + "artist": "Tyler Childers", + "title": "All Your'n" + }, + { + "position": 125, + "artist": "Drake", + "title": "Passionfruit" + }, + { + "position": 126, + "artist": "Morgan Wallen", + "title": "Thought You Should Know" + }, + { + "position": 127, + "artist": "Chris Stapleton", + "title": "Tennessee Whiskey" + }, + { + "position": 128, + "artist": "Morgan Wallen", + "title": "Chasin' You" + }, + { + "position": 129, + "artist": "The Weeknd, Playboi Carti, Madonna", + "title": "Popular (with Playboi Carti & Madonna) - From The Idol Vol. 1 (Music from the HBO Original Series)" + }, + { + "position": 130, + "artist": "Arctic Monkeys", + "title": "505" + }, + { + "position": 131, + "artist": "Zach Bryan", + "title": "Burn, Burn, Burn" + }, + { + "position": 132, + "artist": "Chris Stapleton", + "title": "You Should Probably Leave" + }, + { + "position": 133, + "artist": "Kanye West", + "title": "I Wonder" + }, + { + "position": 134, + "artist": "Odetari, 9lives", + "title": "I LOVE YOU HOE (w/ 9lives)" + }, + { + "position": 135, + "artist": "Arctic Monkeys", + "title": "I Wanna Be Yours" + }, + { + "position": 136, + "artist": "That Mexican OT, Paul Wall, DRODi", + "title": "Johnny Dang (with Paul Wall & DRODi)" + }, + { + "position": 137, + "artist": "PARTYNEXTDOOR", + "title": "Break from Toronto" + }, + { + "position": 138, + "artist": "Metro Boomin, Future, Don Toliver", + "title": "Too Many Nights (feat. Don Toliver & with Future)" + }, + { + "position": 139, + "artist": "Zach Bryan", + "title": "Revival" + }, + { + "position": 140, + "artist": "The Weeknd, Lana Del Rey", + "title": "Stargirl Interlude" + }, + { + "position": 141, + "artist": "Zach Bryan", + "title": "Oklahoman Son" + }, + { + "position": 142, + "artist": "Carín León", + "title": "Primera Cita" + }, + { + "position": 143, + "artist": "Tears For Fears", + "title": "Everybody Wants To Rule The World" + }, + { + "position": 144, + "artist": "Bizarrap, Peso Pluma", + "title": "Peso Pluma: Bzrp Music Sessions, Vol. 55" + }, + { + "position": 145, + "artist": "HARDY", + "title": "TRUCK BED" + }, + { + "position": 146, + "artist": "JVKE", + "title": "golden hour" + }, + { + "position": 147, + "artist": "J. Cole", + "title": "Wet Dreamz" + }, + { + "position": 148, + "artist": "Dave, Central Cee", + "title": "Sprinter" + }, + { + "position": 149, + "artist": "Cigarettes After Sex", + "title": "Apocalypse" + }, + { + "position": 150, + "artist": "Zach Bryan", + "title": "Fear and Friday's (Poem)" + }, + { + "position": 151, + "artist": "Alan Jackson, Jimmy Buffett", + "title": "It's Five O'Clock Somewhere" + }, + { + "position": 152, + "artist": "Drake, 21 Savage", + "title": "Spin Bout U" + }, + { + "position": 153, + "artist": "Foo Fighters", + "title": "Everlong" + }, + { + "position": 154, + "artist": "juju<3", + "title": "Wasted Summers" + }, + { + "position": 155, + "artist": "Feid, Young Miko", + "title": "CLASSY 101" + }, + { + "position": 156, + "artist": "Lil Wayne, Drake, Future", + "title": "Love Me" + }, + { + "position": 157, + "artist": "Peso Pluma", + "title": "Por Las Noches" + }, + { + "position": 158, + "artist": "Lil Uzi Vert", + "title": "20 Min" + }, + { + "position": 159, + "artist": "Taylor Swift", + "title": "Lover" + }, + { + "position": 160, + "artist": "Luke Combs", + "title": "When It Rains It Pours" + }, + { + "position": 161, + "artist": "Lord Huron", + "title": "The Night We Met" + }, + { + "position": 162, + "artist": "Peso Pluma", + "title": "BYE" + }, + { + "position": 163, + "artist": "OneRepublic", + "title": "I Ain't Worried" + }, + { + "position": 164, + "artist": "Jimin", + "title": "Like Crazy" + }, + { + "position": 165, + "artist": "Jordan Davis, Luke Bryan", + "title": "Buy Dirt" + }, + { + "position": 166, + "artist": "KAROL G", + "title": "AMARGURA" + }, + { + "position": 167, + "artist": "Glass Animals", + "title": "Heat Waves" + }, + { + "position": 168, + "artist": "Beach House", + "title": "Space Song" + }, + { + "position": 169, + "artist": "KAROL G", + "title": "S91" + }, + { + "position": 170, + "artist": "Lil Uzi Vert", + "title": "Just Wanna Rock" + }, + { + "position": 171, + "artist": "The Killers", + "title": "Mr. Brightside" + }, + { + "position": 172, + "artist": "Baby Keem", + "title": "ORANGE SODA" + }, + { + "position": 173, + "artist": "Radiohead", + "title": "Creep" + }, + { + "position": 174, + "artist": "Bryson Tiller", + "title": "Don't" + }, + { + "position": 175, + "artist": "Lil Baby", + "title": "Freestyle" + }, + { + "position": 176, + "artist": "Lil Uzi Vert", + "title": "Flooded The Face" + }, + { + "position": 177, + "artist": "Peso Pluma, Junior H", + "title": "LUNA" + }, + { + "position": 178, + "artist": "Miley Cyrus", + "title": "Party In The U.S.A." + }, + { + "position": 179, + "artist": "Kendrick Lamar, Zacari", + "title": "LOVE. FEAT. ZACARI." + }, + { + "position": 180, + "artist": "Chino Pacas", + "title": "El Gordo Trae El Mando" + }, + { + "position": 181, + "artist": "Jordan Davis", + "title": "Next Thing You Know" + }, + { + "position": 182, + "artist": "Faye Webster", + "title": "I Know You" + }, + { + "position": 183, + "artist": "Bruno Mars", + "title": "Locked out of Heaven" + }, + { + "position": 184, + "artist": "Drake, Wizkid, Kyla", + "title": "One Dance" + }, + { + "position": 185, + "artist": "Peso Pluma", + "title": "RUBICON" + }, + { + "position": 186, + "artist": "Mac Miller, Empire Of The Sun", + "title": "The Spins" + }, + { + "position": 187, + "artist": "NLE Choppa", + "title": "SLUT ME OUT" + }, + { + "position": 188, + "artist": "Megan Moroney", + "title": "Tennessee Orange" + }, + { + "position": 189, + "artist": "J. Cole", + "title": "Work Out" + }, + { + "position": 190, + "artist": "TV Girl", + "title": "Not Allowed" + }, + { + "position": 191, + "artist": "Morgan Wallen", + "title": "Ain’t That Some" + }, + { + "position": 192, + "artist": "The Weeknd, Daft Punk", + "title": "Starboy" + }, + { + "position": 193, + "artist": "SZA", + "title": "Good Days" + }, + { + "position": 194, + "artist": "Offset, Metro Boomin", + "title": "Ric Flair Drip (with Metro Boomin)" + }, + { + "position": 195, + "artist": "Taylor Swift", + "title": "Lavender Haze" + }, + { + "position": 196, + "artist": "Bad Bunny, Chencho Corleone", + "title": "Me Porto Bonito" + }, + { + "position": 197, + "artist": "Taylor Swift", + "title": "Getaway Car" + }, + { + "position": 198, + "artist": "Travis Scott", + "title": "HYAENA" + }, + { + "position": 199, + "artist": "Marvin Gaye, Tammi Terrell", + "title": "Ain't No Mountain High Enough" + }, + { + "position": 200, + "artist": "Sexyy Red", + "title": "SkeeYee" + } + ] + }, + { + "title": "2022 - US Top Songs", + "songs": [ + { + "position": 1, + "artist": "Steve Lacy", + "title": "Bad Habit" + }, + { + "position": 2, + "artist": "Bad Bunny, Chencho Corleone", + "title": "Me Porto Bonito" + }, + { + "position": 3, + "artist": "Harry Styles", + "title": "As It Was" + }, + { + "position": 4, + "artist": "Nicki Minaj", + "title": "Super Freaky Girl" + }, + { + "position": 5, + "artist": "Bad Bunny", + "title": "Tití Me Preguntó" + }, + { + "position": 6, + "artist": "Drake, 21 Savage", + "title": "Jimmy Cooks (feat. 21 Savage)" + }, + { + "position": 7, + "artist": "Post Malone, Doja Cat", + "title": "I Like You (A Happier Song) (with Doja Cat)" + }, + { + "position": 8, + "artist": "Joji", + "title": "Glimpse of Us" + }, + { + "position": 9, + "artist": "Kate Bush", + "title": "Running Up That Hill (A Deal With God)" + }, + { + "position": 10, + "artist": "Bad Bunny", + "title": "Efecto" + }, + { + "position": 11, + "artist": "OneRepublic", + "title": "I Ain't Worried" + }, + { + "position": 12, + "artist": "Morgan Wallen", + "title": "You Proof" + }, + { + "position": 13, + "artist": "DJ Khaled, Drake, Lil Baby", + "title": "STAYING ALIVE (feat. Drake & Lil Baby)" + }, + { + "position": 14, + "artist": "Harry Styles", + "title": "Late Night Talking" + }, + { + "position": 15, + "artist": "Elton John, Britney Spears", + "title": "Hold Me Closer" + }, + { + "position": 16, + "artist": "Glass Animals", + "title": "Heat Waves" + }, + { + "position": 17, + "artist": "Doja Cat", + "title": "Vegas (From the Original Motion Picture Soundtrack ELVIS)" + }, + { + "position": 18, + "artist": "Future, Drake, Tems", + "title": "WAIT FOR U (feat. Drake & Tems)" + }, + { + "position": 19, + "artist": "Yung Gravy", + "title": "Betty (Get Money)" + }, + { + "position": 20, + "artist": "BLACKPINK", + "title": "Pink Venom" + }, + { + "position": 21, + "artist": "Bad Bunny", + "title": "Moscow Mule" + }, + { + "position": 22, + "artist": "Lizzo", + "title": "About Damn Time" + }, + { + "position": 23, + "artist": "JVKE", + "title": "golden hour" + }, + { + "position": 24, + "artist": "Nicky Youre, hey daisy", + "title": "Sunroof" + }, + { + "position": 25, + "artist": "The Weeknd", + "title": "Die For You" + }, + { + "position": 26, + "artist": "The Neighbourhood", + "title": "Sweater Weather" + }, + { + "position": 27, + "artist": "Steve Lacy", + "title": "Dark Red" + }, + { + "position": 28, + "artist": "Nardo Wick", + "title": "Dah Dah DahDah" + }, + { + "position": 29, + "artist": "DJ Khaled, Future, SZA", + "title": "BEAUTIFUL (feat. Future & SZA)" + }, + { + "position": 30, + "artist": "Lil Tjay", + "title": "Beat the Odds" + }, + { + "position": 31, + "artist": "Zach Bryan", + "title": "Something in the Orange" + }, + { + "position": 32, + "artist": "DJ Khaled, Rick Ross, Lil Wayne, JAY-Z, John Legend, Fridayy", + "title": "GOD DID (feat. Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy)" + }, + { + "position": 33, + "artist": "Luke Combs", + "title": "The Kind of Love We Make" + }, + { + "position": 34, + "artist": "Jack Harlow", + "title": "First Class" + }, + { + "position": 35, + "artist": "Bad Bunny, Bomba Estéreo", + "title": "Ojitos Lindos" + }, + { + "position": 36, + "artist": "DJ Khaled, Future, Lil Baby", + "title": "BIG TIME (feat. Future & Lil Baby)" + }, + { + "position": 37, + "artist": "J. Cole", + "title": "No Role Modelz" + }, + { + "position": 38, + "artist": "Arctic Monkeys", + "title": "505" + }, + { + "position": 39, + "artist": "Bailey Zimmerman", + "title": "Rock and A Hard Place" + }, + { + "position": 40, + "artist": "Ghost", + "title": "Mary On A Cross" + }, + { + "position": 41, + "artist": "Bizarrap, Quevedo", + "title": "Quevedo: Bzrp Music Sessions, Vol. 52" + }, + { + "position": 42, + "artist": "Bad Bunny, Rauw Alejandro", + "title": "Party" + }, + { + "position": 43, + "artist": "Beyoncé", + "title": "BREAK MY SOUL" + }, + { + "position": 44, + "artist": "Stephen Sanchez", + "title": "Until I Found You" + }, + { + "position": 45, + "artist": "d4vd", + "title": "Romantic Homicide" + }, + { + "position": 46, + "artist": "Bad Bunny", + "title": "Después de la Playa" + }, + { + "position": 47, + "artist": "The Kid LAROI, Justin Bieber", + "title": "STAY (with Justin Bieber)" + }, + { + "position": 48, + "artist": "KAROL G", + "title": "PROVENZA" + }, + { + "position": 49, + "artist": "Morgan Wallen", + "title": "Wasted On You" + }, + { + "position": 50, + "artist": "Kanye West", + "title": "Heartless" + }, + { + "position": 51, + "artist": "Joji", + "title": "YUKON (INTERLUDE)" + }, + { + "position": 52, + "artist": "DJ Khaled, Juice WRLD", + "title": "Juice WRLD DID (feat. Juice WRLD)" + }, + { + "position": 53, + "artist": "Steve Lacy", + "title": "Static" + }, + { + "position": 54, + "artist": "Cole Swindell", + "title": "She Had Me At Heads Carolina" + }, + { + "position": 55, + "artist": "Drake, 21 Savage, Project Pat", + "title": "Knife Talk (with 21 Savage ft. Project Pat)" + }, + { + "position": 56, + "artist": "Bad Bunny, JHAYCO", + "title": "Tarot" + }, + { + "position": 57, + "artist": "KAROL G, Maldy", + "title": "GATÚBELA" + }, + { + "position": 58, + "artist": "ROSALÍA", + "title": "DESPECHÁ" + }, + { + "position": 59, + "artist": "Bad Bunny", + "title": "Neverita" + }, + { + "position": 60, + "artist": "Chris Brown", + "title": "Under The Influence" + }, + { + "position": 61, + "artist": "Baby Keem", + "title": "HONEST" + }, + { + "position": 62, + "artist": "David Guetta, Bebe Rexha", + "title": "I'm Good (Blue)" + }, + { + "position": 63, + "artist": "Kanye West", + "title": "Bound 2" + }, + { + "position": 64, + "artist": "Bad Bunny, Tony Dize", + "title": "La Corriente" + }, + { + "position": 65, + "artist": "Baby Keem, Kendrick Lamar", + "title": "family ties (with Kendrick Lamar)" + }, + { + "position": 66, + "artist": "Charlie Puth, Jung Kook, BTS", + "title": "Left and Right (Feat. Jung Kook of BTS)" + }, + { + "position": 67, + "artist": "Tears For Fears", + "title": "Everybody Wants To Rule The World" + }, + { + "position": 68, + "artist": "Justin Bieber", + "title": "Ghost" + }, + { + "position": 69, + "artist": "Drake, Lil Baby", + "title": "Wants and Needs (feat. Lil Baby)" + }, + { + "position": 70, + "artist": "Morgan Wallen", + "title": "Whiskey Glasses" + }, + { + "position": 71, + "artist": "Future", + "title": "PUFFIN ON ZOOTIEZ" + }, + { + "position": 72, + "artist": "Beyoncé", + "title": "ALIEN SUPERSTAR" + }, + { + "position": 73, + "artist": "Doja Cat", + "title": "Woman" + }, + { + "position": 74, + "artist": "The Killers", + "title": "Mr. Brightside" + }, + { + "position": 75, + "artist": "The Weeknd, Lana Del Rey", + "title": "Stargirl Interlude" + }, + { + "position": 76, + "artist": "DJ Khaled, Kanye West, Eminem", + "title": "USE THIS GOSPEL (feat. Kanye West & Eminem) - REMIX" + }, + { + "position": 77, + "artist": "Elton John, Dua Lipa, PNAU", + "title": "Cold Heart - PNAU Remix" + }, + { + "position": 78, + "artist": "Kendrick Lamar, Jay Rock", + "title": "Money Trees" + }, + { + "position": 79, + "artist": "Tyler, The Creator, Kali Uchis", + "title": "See You Again (feat. Kali Uchis)" + }, + { + "position": 80, + "artist": "The Walters", + "title": "I Love You So" + }, + { + "position": 81, + "artist": "The Weeknd, Daft Punk", + "title": "Starboy" + }, + { + "position": 82, + "artist": "Cigarettes After Sex", + "title": "Apocalypse" + }, + { + "position": 83, + "artist": "The Weeknd", + "title": "Blinding Lights" + }, + { + "position": 84, + "artist": "Rosa Linn", + "title": "SNAP" + }, + { + "position": 85, + "artist": "Joji", + "title": "SLOW DANCING IN THE DARK" + }, + { + "position": 86, + "artist": "The Weeknd", + "title": "The Hills" + }, + { + "position": 87, + "artist": "Childish Gambino", + "title": "Me and Your Mama" + }, + { + "position": 88, + "artist": "Taylor Swift", + "title": "august" + }, + { + "position": 89, + "artist": "J. Cole", + "title": "Wet Dreamz" + }, + { + "position": 90, + "artist": "Olivia Rodrigo", + "title": "good 4 u" + }, + { + "position": 91, + "artist": "Olivia Rodrigo", + "title": "traitor" + }, + { + "position": 92, + "artist": "DJ Khaled, Don Toliver, Travis Scott", + "title": "LET'S PRAY (feat. Don Toliver & Travis Scott)" + }, + { + "position": 93, + "artist": "Bad Bunny", + "title": "Un Ratito" + }, + { + "position": 94, + "artist": "JID, Kenny Mason", + "title": "Dance Now (feat. Kenny Mason)" + }, + { + "position": 95, + "artist": "Jax", + "title": "Victoria's Secret" + }, + { + "position": 96, + "artist": "The Weeknd, Gesaffelstein", + "title": "I Was Never There" + }, + { + "position": 97, + "artist": "J Balvin, Bad Bunny", + "title": "LA CANCIÓN" + }, + { + "position": 98, + "artist": "Lil Nas X, Jack Harlow", + "title": "INDUSTRY BABY (feat. Jack Harlow)" + }, + { + "position": 99, + "artist": "Noah Kahan", + "title": "Stick Season" + }, + { + "position": 100, + "artist": "NAV, Lil Baby, Travis Scott", + "title": "Never Sleep (with Lil Baby feat. Travis Scott)" + }, + { + "position": 101, + "artist": "The Weeknd", + "title": "Call Out My Name" + }, + { + "position": 102, + "artist": "Kanye West, Dwele", + "title": "Flashing Lights" + }, + { + "position": 103, + "artist": "Manuel Turizo", + "title": "La Bachata" + }, + { + "position": 104, + "artist": "Olivia Rodrigo", + "title": "deja vu" + }, + { + "position": 105, + "artist": "Metallica", + "title": "Master of Puppets (Remastered)" + }, + { + "position": 106, + "artist": "Mac Miller, Empire Of The Sun", + "title": "The Spins" + }, + { + "position": 107, + "artist": "Lil Uzi Vert", + "title": "20 Min" + }, + { + "position": 108, + "artist": "Billie Eilish", + "title": "Happier Than Ever" + }, + { + "position": 109, + "artist": "Rema, Selena Gomez", + "title": "Calm Down (with Selena Gomez)" + }, + { + "position": 110, + "artist": "AJR", + "title": "World's Smallest Violin" + }, + { + "position": 111, + "artist": "Lil Baby, Gunna", + "title": "Drip Too Hard (Lil Baby & Gunna)" + }, + { + "position": 112, + "artist": "Post Malone, Swae Lee", + "title": "Sunflower - Spider-Man: Into the Spider-Verse" + }, + { + "position": 113, + "artist": "Pierce The Veil, Kellin Quinn", + "title": "King For A Day" + }, + { + "position": 114, + "artist": "JID, 21 Savage, Baby Tate", + "title": "Surround Sound (feat. 21 Savage & Baby Tate)" + }, + { + "position": 115, + "artist": "Marshmello, Khalid", + "title": "Numb" + }, + { + "position": 116, + "artist": "Ed Sheeran", + "title": "Shivers" + }, + { + "position": 117, + "artist": "Pharrell Williams, 21 Savage, Tyler, The Creator", + "title": "Cash In Cash Out" + }, + { + "position": 118, + "artist": "DJ Khaled, Lil Durk, 21 Savage, Roddy Ricch", + "title": "KEEP GOING (feat. Lil Durk, 21 Savage & Roddy Ricch)" + }, + { + "position": 119, + "artist": "Lil Baby", + "title": "Freestyle" + }, + { + "position": 120, + "artist": "Bailey Zimmerman", + "title": "Where It Ends" + }, + { + "position": 121, + "artist": "Frank Ocean", + "title": "Novacane" + }, + { + "position": 122, + "artist": "TWICE", + "title": "Talk that Talk" + }, + { + "position": 123, + "artist": "Lil Baby, Drake", + "title": "Yes Indeed" + }, + { + "position": 124, + "artist": "Tyler Hubbard", + "title": "5 Foot 9" + }, + { + "position": 125, + "artist": "Post Malone", + "title": "Circles" + }, + { + "position": 126, + "artist": "DJ Khaled, Quavo, Takeoff", + "title": "PARTY (feat. Quavo & Takeoff)" + }, + { + "position": 127, + "artist": "Drake", + "title": "Sticky" + }, + { + "position": 128, + "artist": "Harry Styles", + "title": "Music For a Sushi Restaurant" + }, + { + "position": 129, + "artist": "DJ Khaled, Nardo Wick, Kodak Black", + "title": "IT AIN'T SAFE (feat. Nardo Wick & Kodak Black)" + }, + { + "position": 130, + "artist": "Armani White", + "title": "BILLIE EILISH." + }, + { + "position": 131, + "artist": "Harry Styles", + "title": "Matilda" + }, + { + "position": 132, + "artist": "Frank Ocean", + "title": "Lost" + }, + { + "position": 133, + "artist": "XXXTENTACION", + "title": "Revenge" + }, + { + "position": 134, + "artist": "Childish Gambino", + "title": "Redbone" + }, + { + "position": 135, + "artist": "Harry Styles", + "title": "Watermelon Sugar" + }, + { + "position": 136, + "artist": "The Weeknd", + "title": "Save Your Tears" + }, + { + "position": 137, + "artist": "JAY-Z, Kanye West", + "title": "Ni**as In Paris" + }, + { + "position": 138, + "artist": "Imagine Dragons", + "title": "Bones" + }, + { + "position": 139, + "artist": "Brent Faiyaz", + "title": "ALL MINE" + }, + { + "position": 140, + "artist": "Kendrick Lamar", + "title": "N95" + }, + { + "position": 141, + "artist": "Doja Cat, SZA", + "title": "Kiss Me More (feat. SZA)" + }, + { + "position": 142, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1" + }, + { + "position": 143, + "artist": "Beyoncé", + "title": "CUFF IT" + }, + { + "position": 144, + "artist": "Dua Lipa, DaBaby", + "title": "Levitating (feat. DaBaby)" + }, + { + "position": 145, + "artist": "Latto", + "title": "Big Energy" + }, + { + "position": 146, + "artist": "Bailey Zimmerman", + "title": "Fall In Love" + }, + { + "position": 147, + "artist": "Beach House", + "title": "Space Song" + }, + { + "position": 148, + "artist": "ERNEST, Morgan Wallen", + "title": "Flower Shops (feat. Morgan Wallen)" + }, + { + "position": 149, + "artist": "Yot Club", + "title": "YKWIM?" + }, + { + "position": 150, + "artist": "Kodak Black", + "title": "Super Gremlin" + }, + { + "position": 151, + "artist": "Taylor Swift", + "title": "Don’t Blame Me" + }, + { + "position": 152, + "artist": "Camila Cabello, Ed Sheeran", + "title": "Bam Bam (feat. Ed Sheeran)" + }, + { + "position": 153, + "artist": "Harry Styles", + "title": "Daylight" + }, + { + "position": 154, + "artist": "Fleetwood Mac", + "title": "Dreams - 2004 Remaster" + }, + { + "position": 155, + "artist": "Dove Cameron", + "title": "Boyfriend" + }, + { + "position": 156, + "artist": "Chris Stapleton", + "title": "Tennessee Whiskey" + }, + { + "position": 157, + "artist": "Beach Weather", + "title": "Sex, Drugs, Etc." + }, + { + "position": 158, + "artist": "Bad Bunny", + "title": "Yo No Soy Celoso" + }, + { + "position": 159, + "artist": "Juice WRLD", + "title": "Lucid Dreams" + }, + { + "position": 160, + "artist": "Kid Cudi, MGMT, Ratatat", + "title": "Pursuit Of Happiness (Nightmare)" + }, + { + "position": 161, + "artist": "JID", + "title": "Raydar" + }, + { + "position": 162, + "artist": "Central Cee", + "title": "Doja" + }, + { + "position": 163, + "artist": "Morgan Wallen", + "title": "Thought You Should Know" + }, + { + "position": 164, + "artist": "Becky G, KAROL G", + "title": "MAMIII" + }, + { + "position": 165, + "artist": "Chief Keef", + "title": "Love Sosa" + }, + { + "position": 166, + "artist": "Offset, Moneybagg Yo", + "title": "CODE (feat. Moneybagg Yo)" + }, + { + "position": 167, + "artist": "Surf Curse", + "title": "Freaks" + }, + { + "position": 168, + "artist": "benny blanco, BTS, Snoop Dogg", + "title": "Bad Decisions (with BTS & Snoop Dogg)" + }, + { + "position": 169, + "artist": "Imagine Dragons, JID, Arcane, League of Legends", + "title": "Enemy (with JID) - from the series Arcane League of Legends" + }, + { + "position": 170, + "artist": "Doja Cat", + "title": "Need to Know" + }, + { + "position": 171, + "artist": "Bad Bunny, Tainy", + "title": "Callaita" + }, + { + "position": 172, + "artist": "WILLOW", + "title": "Wait a Minute!" + }, + { + "position": 173, + "artist": "Mr.Kitty", + "title": "After Dark" + }, + { + "position": 174, + "artist": "Morgan Wallen", + "title": "More Than My Hometown" + }, + { + "position": 175, + "artist": "Bad Bunny, JHAYCO", + "title": "DÁKITI" + }, + { + "position": 176, + "artist": "Morgan Wallen", + "title": "Sand In My Boots" + }, + { + "position": 177, + "artist": "Ruth B.", + "title": "Dandelions" + }, + { + "position": 178, + "artist": "Lil Durk, Morgan Wallen", + "title": "Broadway Girls (feat. Morgan Wallen)" + }, + { + "position": 179, + "artist": "Quavo, Takeoff", + "title": "HOTEL LOBBY (Unc & Phew)" + }, + { + "position": 180, + "artist": "Demi Lovato", + "title": "29" + }, + { + "position": 181, + "artist": "Playboi Carti", + "title": "Sky" + }, + { + "position": 182, + "artist": "Tyler, The Creator", + "title": "NEW MAGIC WAND" + }, + { + "position": 183, + "artist": "Frank Ocean", + "title": "Pink + White" + }, + { + "position": 184, + "artist": "DJ Khaled, Drake", + "title": "NO SECRET (feat. Drake)" + }, + { + "position": 185, + "artist": "$uicideboy$", + "title": "...And to Those I Love, Thanks for Sticking Around" + }, + { + "position": 186, + "artist": "Bad Bunny", + "title": "Un Coco" + }, + { + "position": 187, + "artist": "Jordan Davis, Luke Bryan", + "title": "Buy Dirt" + }, + { + "position": 188, + "artist": "Olivia Rodrigo", + "title": "drivers license" + }, + { + "position": 189, + "artist": "Harry Styles", + "title": "Satellite" + }, + { + "position": 190, + "artist": "Lil Nas X", + "title": "THATS WHAT I WANT" + }, + { + "position": 191, + "artist": "Foo Fighters", + "title": "Everlong" + }, + { + "position": 192, + "artist": "Coldplay", + "title": "Sparks" + }, + { + "position": 193, + "artist": "$uicideboy$", + "title": "Antarctica" + }, + { + "position": 194, + "artist": "The Neighbourhood", + "title": "Daddy Issues" + }, + { + "position": 195, + "artist": "Lord Huron", + "title": "The Night We Met" + }, + { + "position": 196, + "artist": "Taylor Swift", + "title": "Cruel Summer" + }, + { + "position": 197, + "artist": "Nirvana", + "title": "Smells Like Teen Spirit" + }, + { + "position": 198, + "artist": "Journey", + "title": "Don't Stop Believin' (2022 Remaster)" + }, + { + "position": 199, + "artist": "Jelly Roll", + "title": "Son Of A Sinner" + }, + { + "position": 200, + "artist": "Morgan Wallen", + "title": "Cover Me Up" + } + ] + }, + { + "songs": [ + { + "artist": "Steve Lacy", + "position": 1, + "title": "Bad Habit" + }, + { + "artist": "Nicky Youre & dazy", + "position": 2, + "title": "Sunroof" + }, + { + "artist": "Kate Bush", + "position": 3, + "title": "Running Up That Hill (A Deal With God)" + }, + { + "artist": "Zach Bryan", + "position": 4, + "title": "Something In The Orange" + }, + { + "artist": "Jelly Roll", + "position": 5, + "title": "Son Of A Sinner" + }, + { + "artist": "Imagine Dragons", + "position": 6, + "title": "Bones" + }, + { + "artist": "Imagine Dragons X JID", + "position": 7, + "title": "Enemy" + }, + { + "artist": "Stephen Sanchez", + "position": 8, + "title": "Until I Found You" + }, + { + "artist": "d4vd", + "position": 9, + "title": "Romantic Homicide" + }, + { + "artist": "GAYLE", + "position": 10, + "title": "abcdefu" + }, + { + "artist": "Steve Lacy", + "position": 11, + "title": "Static" + }, + { + "artist": "Zach Bryan", + "position": 12, + "title": "Oklahoma Smoke Show" + }, + { + "artist": "Foo Fighters", + "position": 13, + "title": "Everlong" + }, + { + "artist": "AJR", + "position": 14, + "title": "World's Smallest Violin" + }, + { + "artist": "Gorillaz Featuring Tame Impala & Bootie Brown", + "position": 15, + "title": "New Gold" + }, + { + "artist": "Cafune", + "position": 16, + "title": "Tek It" + }, + { + "artist": "Metallica", + "position": 17, + "title": "Master Of Puppets" + }, + { + "artist": "Koe Wetzel", + "position": 18, + "title": "Creeps" + }, + { + "artist": "Beach Weather", + "position": 19, + "title": "Sex, Drugs, Etc." + }, + { + "artist": "Noah Kahan", + "position": 20, + "title": "Stick Season" + }, + { + "artist": "Foo Fighters", + "position": 21, + "title": "My Hero" + }, + { + "artist": "Demi Lovato", + "position": 22, + "title": "29" + }, + { + "artist": "Elvis Presley", + "position": 23, + "title": "Suspicious Minds" + }, + { + "artist": "Pierce The Veil", + "position": 24, + "title": "Pass The Nirvana" + }, + { + "artist": "TALK", + "position": 25, + "title": "Run Away To Mars" + }, + { + "artist": "Billie Eilish", + "position": 26, + "title": "TV" + }, + { + "artist": "The 1975", + "position": 27, + "title": "I'm In Love With You" + }, + { + "artist": "Maneskin", + "position": 28, + "title": "Supermodel" + }, + { + "artist": "Imagine Dragons", + "position": 29, + "title": "Sharks" + }, + { + "artist": "Nessa Barrett", + "position": 30, + "title": "Die First" + }, + { + "artist": "Zach Williams", + "position": 31, + "title": "Heart Of God" + }, + { + "artist": "Billie Eilish", + "position": 32, + "title": "The 30th" + }, + { + "artist": "Falling In Reverse", + "position": 33, + "title": "Voices In My Head" + }, + { + "artist": "Gorillaz Featuring Thundercat", + "position": 34, + "title": "Cracker Island" + }, + { + "artist": "CORPSE, Scarlxrd & Kordhell", + "position": 35, + "title": "Misa Misa!" + }, + { + "artist": "Rex Orange County", + "position": 36, + "title": "Amazing" + }, + { + "artist": "Arctic Monkeys", + "position": 37, + "title": "There'd Better Be A Mirrorball" + }, + { + "artist": "Zach Bryan", + "position": 38, + "title": "Sun To Me" + }, + { + "artist": "Zach Bryan", + "position": 39, + "title": "Heavy Eyes" + }, + { + "artist": "Steve Lacy", + "position": 40, + "title": "Mercury" + }, + { + "artist": "Steve Lacy Featuring Foushee", + "position": 41, + "title": "Sunshine" + }, + { + "artist": "Shinedown", + "position": 42, + "title": "Daylight" + }, + { + "artist": "The Killers", + "position": 43, + "title": "Boy" + }, + { + "artist": "Suki Waterhouse", + "position": 44, + "title": "Good Looking" + }, + { + "artist": "Panic! At The Disco", + "position": 45, + "title": "Don't Let The Light Go Out" + }, + { + "artist": "Rex Orange County", + "position": 46, + "title": "The Shade" + }, + { + "artist": "Steve Lacy", + "position": 47, + "title": "Helmet" + }, + { + "artist": "Disturbed", + "position": 48, + "title": "Hey You" + }, + { + "artist": "AJR", + "position": 49, + "title": "I Won't" + }, + { + "artist": "Vance Joy", + "position": 50, + "title": "Clarity" + } + ], + "title": "2022 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Steve Lacy", + "position": 1, + "title": "Bad Habit" + }, + { + "artist": "Lizzo", + "position": 2, + "title": "About Damn Time" + }, + { + "artist": "Nicki Minaj", + "position": 3, + "title": "Super Freaky Girl" + }, + { + "artist": "Future Featuring Drake & Tems", + "position": 4, + "title": "Wait For U" + }, + { + "artist": "Beyonce", + "position": 5, + "title": "Break My Soul" + }, + { + "artist": "Jack Harlow", + "position": 6, + "title": "First Class" + }, + { + "artist": "Drake Featuring 21 Savage", + "position": 7, + "title": "Jimmy Cooks" + }, + { + "artist": "Lil Baby", + "position": 8, + "title": "Detox" + }, + { + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "position": 9, + "title": "Staying Alive" + }, + { + "artist": "Lil Baby", + "position": 10, + "title": "In A Minute" + }, + { + "artist": "Yeat", + "position": 11, + "title": "Talk" + }, + { + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "position": 12, + "title": "God Did" + }, + { + "artist": "Nardo Wick", + "position": 13, + "title": "Dah Dah DahDah" + }, + { + "artist": "Chris Brown", + "position": 14, + "title": "Under The Influence" + }, + { + "artist": "The Weeknd", + "position": 15, + "title": "Die For You" + }, + { + "artist": "Cardi B, Ye & Lil Durk", + "position": 16, + "title": "Hot Shit" + }, + { + "artist": "Tems", + "position": 17, + "title": "Free Mind" + }, + { + "artist": "SleazyWorld Go Featuring Lil Baby", + "position": 18, + "title": "Sleazy Flow" + }, + { + "artist": "Hitkidd & GloRilla", + "position": 19, + "title": "F.N.F. (Let's Go)" + }, + { + "artist": "Lil Tjay", + "position": 20, + "title": "Beat The Odds" + }, + { + "artist": "Drake", + "position": 21, + "title": "Sticky" + }, + { + "artist": "DJ Khaled Featuring Future & SZA", + "position": 22, + "title": "Beautiful" + }, + { + "artist": "Rod Wave", + "position": 23, + "title": "Alone" + }, + { + "artist": "Brent Faiyaz", + "position": 24, + "title": "All Mine" + }, + { + "artist": "Future", + "position": 25, + "title": "Puffin On Zootiez" + }, + { + "artist": "Quavo & Takeoff", + "position": 26, + "title": "Hotel Lobby (Unc And Phew)" + }, + { + "artist": "Steve Lacy", + "position": 27, + "title": "Static" + }, + { + "artist": "Armani White", + "position": 28, + "title": "Billie Eilish." + }, + { + "artist": "Beyonce", + "position": 29, + "title": "Alien Superstar" + }, + { + "artist": "DJ Khaled Featuring Future & Lil Baby", + "position": 30, + "title": "Big Time" + }, + { + "artist": "Beyonce", + "position": 31, + "title": "Cuff It" + }, + { + "artist": "Post Malone Featuring Roddy Ricch", + "position": 32, + "title": "Cooped Up" + }, + { + "artist": "City Girls & Usher", + "position": 33, + "title": "Good Love" + }, + { + "artist": "Ice Spice", + "position": 34, + "title": "Munch (Feelin' U)" + }, + { + "artist": "Diddy & Bryson Tiller", + "position": 35, + "title": "Gotta Move On" + }, + { + "artist": "DJ Khaled Featuring Juice WRLD", + "position": 36, + "title": "Juice WRLD Did" + }, + { + "artist": "GloRilla", + "position": 37, + "title": "Blessed" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 38, + "title": "Vette Motors" + }, + { + "artist": "Finesse2Tymes", + "position": 39, + "title": "Back End" + }, + { + "artist": "NAV, Travis Scott & Lil Baby", + "position": 40, + "title": "Never Sleep" + }, + { + "artist": "Moneybagg Yo", + "position": 41, + "title": "See Wat I'm Sayin" + }, + { + "artist": "Kendrick Lamar, Blxst & Amanda Reifer", + "position": 42, + "title": "Die Hard" + }, + { + "artist": "Pharrell Williams Featuring 21 Savage & Tyler, The Creator", + "position": 43, + "title": "Cash In Cash Out" + }, + { + "artist": "YG", + "position": 44, + "title": "Toxic" + }, + { + "artist": "Beyonce", + "position": 45, + "title": "Church Girl" + }, + { + "artist": "Rod Wave", + "position": 46, + "title": "Sweet Little Lies" + }, + { + "artist": "Chris Brown Featuring WizKid", + "position": 47, + "title": "Call Me Everyday" + }, + { + "artist": "Future", + "position": 48, + "title": "Love You Better" + }, + { + "artist": "Lil Baby, 42 Dugg & Veeze", + "position": 49, + "title": "U-Digg" + }, + { + "artist": "Rod Wave Featuring Jack Harlow", + "position": 50, + "title": "Yungen" + } + ], + "title": "2022 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Nicky Youre & dazy", + "position": 1, + "title": "Sunroof" + }, + { + "artist": "Harry Styles", + "position": 2, + "title": "Late Night Talking" + }, + { + "artist": "Harry Styles", + "position": 3, + "title": "As It Was" + }, + { + "artist": "Lizzo", + "position": 4, + "title": "About Damn Time" + }, + { + "artist": "Post Malone Featuring Doja Cat", + "position": 5, + "title": "I Like You (A Happier Song)" + }, + { + "artist": "Kate Bush", + "position": 6, + "title": "Running Up That Hill (A Deal With God)" + }, + { + "artist": "Doja Cat", + "position": 7, + "title": "Vegas" + }, + { + "artist": "OneRepublic", + "position": 8, + "title": "I Ain't Worried" + }, + { + "artist": "Steve Lacy", + "position": 9, + "title": "Bad Habit" + }, + { + "artist": "Jack Harlow", + "position": 10, + "title": "First Class" + }, + { + "artist": "Halsey", + "position": 11, + "title": "So Good" + }, + { + "artist": "Marshmello & Khalid", + "position": 12, + "title": "Numb" + }, + { + "artist": "Joji", + "position": 13, + "title": "Glimpse Of Us" + }, + { + "artist": "Charlie Puth Featuring Jung Kook", + "position": 14, + "title": "Left And Right" + }, + { + "artist": "Yung Gravy", + "position": 15, + "title": "Betty (Get Money)" + }, + { + "artist": "Lizzo", + "position": 16, + "title": "2 Be Loved (Am I Ready)" + }, + { + "artist": "Elton John & Britney Spears", + "position": 17, + "title": "Hold Me Closer" + }, + { + "artist": "Black Eyed Peas, Shakira + David Guetta", + "position": 18, + "title": "Don't You Worry" + }, + { + "artist": "Beyonce", + "position": 19, + "title": "Break My Soul" + }, + { + "artist": "Harry Styles", + "position": 20, + "title": "Music For A Sushi Restaurant" + }, + { + "artist": "Nicki Minaj", + "position": 21, + "title": "Super Freaky Girl" + }, + { + "artist": "Future Featuring Drake & Tems", + "position": 22, + "title": "Wait For U" + }, + { + "artist": "Jax", + "position": 23, + "title": "Victoria’s Secret" + }, + { + "artist": "Imagine Dragons", + "position": 24, + "title": "Bones" + }, + { + "artist": "Kane Brown", + "position": 25, + "title": "Grand" + }, + { + "artist": "Morgan Wallen", + "position": 26, + "title": "Wasted On You" + }, + { + "artist": "benny blanco, BTS & Snoop Dogg", + "position": 27, + "title": "Bad Decisions" + }, + { + "artist": "Sia", + "position": 28, + "title": "Unstoppable" + }, + { + "artist": "Stephen Sanchez", + "position": 29, + "title": "Until I Found You" + }, + { + "artist": "Pitbull + Zac Brown", + "position": 30, + "title": "Can't Stop Us Now" + }, + { + "artist": "The Weeknd", + "position": 31, + "title": "Die For You" + }, + { + "artist": "Rosa Linn", + "position": 32, + "title": "Snap" + }, + { + "artist": "Ellie Goulding Featuring Big Sean", + "position": 33, + "title": "Easy Lover" + }, + { + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "position": 34, + "title": "Staying Alive" + }, + { + "artist": "Kx5 Featuring Hayla", + "position": 35, + "title": "Escape" + }, + { + "artist": "BLACKPINK", + "position": 36, + "title": "Pink Venom" + }, + { + "artist": "Macklemore Featuring Windser", + "position": 37, + "title": "Maniac" + }, + { + "artist": "Louis Tomlinson", + "position": 38, + "title": "Bigger Than Me" + }, + { + "artist": "David Guetta & Bebe Rexha", + "position": 39, + "title": "I'm Good (Blue)" + }, + { + "artist": "Zedd, Maren Morris & BEAUZ", + "position": 40, + "title": "Make You Say" + } + ], + "title": "2022 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Harry Styles", + "position": 1, + "title": "As It Was" + }, + { + "artist": "Steve Lacy", + "position": 2, + "title": "Bad Habit" + }, + { + "artist": "Harry Styles", + "position": 3, + "title": "Late Night Talking" + }, + { + "artist": "Nicky Youre & dazy", + "position": 4, + "title": "Sunroof" + }, + { + "artist": "Lizzo", + "position": 5, + "title": "About Damn Time" + }, + { + "artist": "Post Malone Featuring Doja Cat", + "position": 6, + "title": "I Like You (A Happier Song)" + }, + { + "artist": "Nicki Minaj", + "position": 7, + "title": "Super Freaky Girl" + }, + { + "artist": "OneRepublic", + "position": 8, + "title": "I Ain't Worried" + }, + { + "artist": "Kate Bush", + "position": 9, + "title": "Running Up That Hill (A Deal With God)" + }, + { + "artist": "Morgan Wallen", + "position": 10, + "title": "You Proof" + }, + { + "artist": "Future Featuring Drake & Tems", + "position": 11, + "title": "Wait For U" + }, + { + "artist": "Bad Bunny & Chencho Corleone", + "position": 12, + "title": "Me Porto Bonito" + }, + { + "artist": "Bad Bunny", + "position": 13, + "title": "Titi Me Pregunto" + }, + { + "artist": "Luke Combs", + "position": 14, + "title": "The Kind Of Love We Make" + }, + { + "artist": "Beyonce", + "position": 15, + "title": "Break My Soul" + }, + { + "artist": "Jack Harlow", + "position": 16, + "title": "First Class" + }, + { + "artist": "Morgan Wallen", + "position": 17, + "title": "Wasted On You" + }, + { + "artist": "Glass Animals", + "position": 18, + "title": "Heat Waves" + }, + { + "artist": "Cole Swindell", + "position": 19, + "title": "She Had Me At Heads Carolina" + }, + { + "artist": "Doja Cat", + "position": 20, + "title": "Vegas" + }, + { + "artist": "Drake Featuring 21 Savage", + "position": 21, + "title": "Jimmy Cooks" + }, + { + "artist": "The Kid LAROI & Justin Bieber", + "position": 22, + "title": "Stay" + }, + { + "artist": "Elton John & Britney Spears", + "position": 23, + "title": "Hold Me Closer" + }, + { + "artist": "Tyler Hubbard", + "position": 24, + "title": "5 Foot 9" + }, + { + "artist": "Lil Baby", + "position": 25, + "title": "Detox" + }, + { + "artist": "Joji", + "position": 26, + "title": "Glimpse Of Us" + }, + { + "artist": "Jon Pardi", + "position": 27, + "title": "Last Night Lonely" + }, + { + "artist": "Bad Bunny", + "position": 28, + "title": "Moscow Mule" + }, + { + "artist": "Latto", + "position": 29, + "title": "Big Energy" + }, + { + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "position": 30, + "title": "Staying Alive" + }, + { + "artist": "Yung Gravy", + "position": 31, + "title": "Betty (Get Money)" + }, + { + "artist": "Zach Bryan", + "position": 32, + "title": "Something In The Orange" + }, + { + "artist": "Justin Bieber", + "position": 33, + "title": "Ghost" + }, + { + "artist": "Ed Sheeran", + "position": 34, + "title": "Shivers" + }, + { + "artist": "Lil Baby", + "position": 35, + "title": "In A Minute" + }, + { + "artist": "Bailey Zimmerman", + "position": 36, + "title": "Rock And A Hard Place" + }, + { + "artist": "Charlie Puth Featuring Jung Kook", + "position": 37, + "title": "Left And Right" + }, + { + "artist": "Bad Bunny", + "position": 38, + "title": "Efecto" + }, + { + "artist": "Jelly Roll", + "position": 39, + "title": "Son Of A Sinner" + }, + { + "artist": "Marshmello & Khalid", + "position": 40, + "title": "Numb" + }, + { + "artist": "Bailey Zimmerman", + "position": 41, + "title": "Fall In Love" + }, + { + "artist": "Yeat", + "position": 42, + "title": "Talk" + }, + { + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "position": 43, + "title": "God Did" + }, + { + "artist": "Karol G", + "position": 44, + "title": "Provenza" + }, + { + "artist": "Sia", + "position": 45, + "title": "Unstoppable" + }, + { + "artist": "David Guetta & Bebe Rexha", + "position": 46, + "title": "I'm Good (Blue)" + }, + { + "artist": "Em Beihold", + "position": 47, + "title": "Numb Little Bug" + }, + { + "artist": "Imagine Dragons", + "position": 48, + "title": "Bones" + }, + { + "artist": "Nardo Wick", + "position": 49, + "title": "Dah Dah DahDah" + }, + { + "artist": "Jax", + "position": 50, + "title": "Victoria’s Secret" + }, + { + "artist": "Karol G x Maldy", + "position": 51, + "title": "Gatubela" + }, + { + "artist": "The Weeknd", + "position": 52, + "title": "Die For You" + }, + { + "artist": "Burna Boy", + "position": 53, + "title": "Last Last" + }, + { + "artist": "Mitchell Tenpenny", + "position": 54, + "title": "Truth About You" + }, + { + "artist": "Cardi B, Ye & Lil Durk", + "position": 55, + "title": "Hot Shit" + }, + { + "artist": "Tems", + "position": 56, + "title": "Free Mind" + }, + { + "artist": "SleazyWorld Go Featuring Lil Baby", + "position": 57, + "title": "Sleazy Flow" + }, + { + "artist": "Halsey", + "position": 58, + "title": "So Good" + }, + { + "artist": "Justin Moore", + "position": 59, + "title": "With A Woman You Love" + }, + { + "artist": "Kane Brown", + "position": 60, + "title": "Like I Love Country Music" + }, + { + "artist": "Ingrid Andress With Sam Hunt", + "position": 61, + "title": "Wishful Drinking" + }, + { + "artist": "Bad Bunny & Rauw Alejandro", + "position": 62, + "title": "Party" + }, + { + "artist": "Rosalia", + "position": 63, + "title": "Despecha" + }, + { + "artist": "Hitkidd & GloRilla", + "position": 64, + "title": "F.N.F. (Let's Go)" + }, + { + "artist": "JVKE", + "position": 65, + "title": "Golden Hour" + }, + { + "artist": "Bad Bunny & Bomba Estereo", + "position": 66, + "title": "Ojitos Lindos" + }, + { + "artist": "BLACKPINK", + "position": 67, + "title": "Pink Venom" + }, + { + "artist": "Lil Tjay", + "position": 68, + "title": "Beat The Odds" + }, + { + "artist": "Drake", + "position": 69, + "title": "Sticky" + }, + { + "artist": "Gabby Barrett", + "position": 70, + "title": "Pick Me Up" + }, + { + "artist": "Nate Smith", + "position": 71, + "title": "Whiskey On You" + }, + { + "artist": "Bad Bunny", + "position": 72, + "title": "Despues de La Playa" + }, + { + "artist": "DJ Khaled Featuring Future & SZA", + "position": 73, + "title": "Beautiful" + }, + { + "artist": "Russell Dickerson & Jake Scott", + "position": 74, + "title": "She Likes It" + }, + { + "artist": "Stephen Sanchez", + "position": 75, + "title": "Until I Found You" + }, + { + "artist": "Carrie Underwood", + "position": 76, + "title": "Ghost Story" + }, + { + "artist": "d4vd", + "position": 77, + "title": "Romantic Homicide" + }, + { + "artist": "Lizzo", + "position": 78, + "title": "2 Be Loved (Am I Ready)" + }, + { + "artist": "Bailey Zimmerman", + "position": 79, + "title": "Where It Ends" + }, + { + "artist": "Rod Wave", + "position": 80, + "title": "Alone" + }, + { + "artist": "Bad Bunny", + "position": 81, + "title": "Neverita" + }, + { + "artist": "Brent Faiyaz", + "position": 82, + "title": "All Mine" + }, + { + "artist": "Bad Bunny & Jhay Cortez", + "position": 83, + "title": "Tarot" + }, + { + "artist": "Jordan Davis", + "position": 84, + "title": "What My World Spins Around" + }, + { + "artist": "Thomas Rhett Featuring Riley Green", + "position": 85, + "title": "Half Of Me" + }, + { + "artist": "Manuel Turizo", + "position": 86, + "title": "La Bachata" + }, + { + "artist": "Harry Styles", + "position": 87, + "title": "Music For A Sushi Restaurant" + }, + { + "artist": "Jackson Dean", + "position": 88, + "title": "Don't Come Lookin'" + }, + { + "artist": "Lee Brice", + "position": 89, + "title": "Soul" + }, + { + "artist": "benny blanco, BTS & Snoop Dogg", + "position": 90, + "title": "Bad Decisions" + }, + { + "artist": "Rema & Selena Gomez", + "position": 91, + "title": "Calm Down" + }, + { + "artist": "Future", + "position": 92, + "title": "Puffin On Zootiez" + }, + { + "artist": "Rosa Linn", + "position": 93, + "title": "Snap" + }, + { + "artist": "Quavo & Takeoff", + "position": 94, + "title": "Hotel Lobby (Unc And Phew)" + }, + { + "artist": "Bizarrap & Quevedo", + "position": 95, + "title": "Bzrp Music Sessions, Vol. 52" + }, + { + "artist": "Morgan Wallen", + "position": 96, + "title": "Thought You Should Know" + }, + { + "artist": "Luke Bryan", + "position": 97, + "title": "Country On" + }, + { + "artist": "Steve Lacy", + "position": 98, + "title": "Static" + }, + { + "artist": "Armani White", + "position": 99, + "title": "Billie Eilish." + }, + { + "artist": "Romeo Santos & Justin Timberlake", + "position": 100, + "title": "Sin Fin" + } + ], + "title": "2022 - Hot 100" + }, + { + "songs": [ + { + "artist": "Morgan Wallen", + "position": 1, + "title": "You Proof" + }, + { + "artist": "Luke Combs", + "position": 2, + "title": "The Kind Of Love We Make" + }, + { + "artist": "Morgan Wallen", + "position": 3, + "title": "Wasted On You" + }, + { + "artist": "Cole Swindell", + "position": 4, + "title": "She Had Me At Heads Carolina" + }, + { + "artist": "Tyler Hubbard", + "position": 5, + "title": "5 Foot 9" + }, + { + "artist": "Jon Pardi", + "position": 6, + "title": "Last Night Lonely" + }, + { + "artist": "Zach Bryan", + "position": 7, + "title": "Something In The Orange" + }, + { + "artist": "Bailey Zimmerman", + "position": 8, + "title": "Rock And A Hard Place" + }, + { + "artist": "Jelly Roll", + "position": 9, + "title": "Son Of A Sinner" + }, + { + "artist": "Bailey Zimmerman", + "position": 10, + "title": "Fall In Love" + }, + { + "artist": "Mitchell Tenpenny", + "position": 11, + "title": "Truth About You" + }, + { + "artist": "Justin Moore", + "position": 12, + "title": "With A Woman You Love" + }, + { + "artist": "Kane Brown", + "position": 13, + "title": "Like I Love Country Music" + }, + { + "artist": "Ingrid Andress With Sam Hunt", + "position": 14, + "title": "Wishful Drinking" + }, + { + "artist": "Gabby Barrett", + "position": 15, + "title": "Pick Me Up" + }, + { + "artist": "Nate Smith", + "position": 16, + "title": "Whiskey On You" + }, + { + "artist": "Russell Dickerson & Jake Scott", + "position": 17, + "title": "She Likes It" + }, + { + "artist": "Carrie Underwood", + "position": 18, + "title": "Ghost Story" + }, + { + "artist": "Bailey Zimmerman", + "position": 19, + "title": "Where It Ends" + }, + { + "artist": "Jordan Davis", + "position": 20, + "title": "What My World Spins Around" + }, + { + "artist": "Thomas Rhett Featuring Riley Green", + "position": 21, + "title": "Half Of Me" + }, + { + "artist": "Jackson Dean", + "position": 22, + "title": "Don't Come Lookin'" + }, + { + "artist": "Lee Brice", + "position": 23, + "title": "Soul" + }, + { + "artist": "Morgan Wallen", + "position": 24, + "title": "Thought You Should Know" + }, + { + "artist": "Luke Bryan", + "position": 25, + "title": "Country On" + }, + { + "artist": "Zach Bryan", + "position": 26, + "title": "Oklahoma Smoke Show" + }, + { + "artist": "Corey Kent", + "position": 27, + "title": "Wild As Her" + }, + { + "artist": "Old Dominion", + "position": 28, + "title": "No Hard Feelings" + }, + { + "artist": "HARDY Featuring Lainey Wilson", + "position": 29, + "title": "Wait In The Truck" + }, + { + "artist": "Chris Stapleton", + "position": 30, + "title": "Joy Of My Life" + }, + { + "artist": "Kelsea Ballerini", + "position": 31, + "title": "Heartfirst" + }, + { + "artist": "Jimmie Allen", + "position": 32, + "title": "Down Home" + }, + { + "artist": "Carly Pearce", + "position": 33, + "title": "What He Didn't Do" + }, + { + "artist": "Zac Brown Band", + "position": 34, + "title": "Out In The Middle" + }, + { + "artist": "BRELAND Featuring Lady A", + "position": 35, + "title": "Told You I Could Drink" + }, + { + "artist": "Hailey Whitters", + "position": 36, + "title": "Everything She Ain't" + }, + { + "artist": "David Morris", + "position": 37, + "title": "Dutton Ranch Freestyle" + }, + { + "artist": "Koe Wetzel", + "position": 38, + "title": "Creeps" + }, + { + "artist": "Jason Aldean", + "position": 39, + "title": "That's What Tequila Does" + }, + { + "artist": "Dustin Lynch", + "position": 40, + "title": "Party Mode" + }, + { + "artist": "Little Big Town", + "position": 41, + "title": "Hell Yeah" + }, + { + "artist": "Parker McCollum", + "position": 42, + "title": "Handle On You" + }, + { + "artist": "Walker Hayes", + "position": 43, + "title": "Y'all Life" + }, + { + "artist": "Drew Green", + "position": 44, + "title": "Good Ol' Man" + }, + { + "artist": "Luke Combs", + "position": 45, + "title": "Tomorrow Me" + }, + { + "artist": "Jordan Davis", + "position": 46, + "title": "Next Thing You Know" + }, + { + "artist": "Frank Ray", + "position": 47, + "title": "Country'd Look Good On You" + }, + { + "artist": "Lainey Wilson", + "position": 48, + "title": "Heart Like A Truck" + }, + { + "artist": "Sam Hunt", + "position": 49, + "title": "Water Under The Bridge" + }, + { + "artist": "Dylan Scott", + "position": 50, + "title": "Can't Have Mine" + } + ], + "title": "2022 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Billie Eilish", + "position": 1, + "title": "Happier Than Ever" + }, + { + "artist": "The Kid LAROI", + "position": 2, + "title": "Without You" + }, + { + "artist": "Glass Animals", + "position": 3, + "title": "Heat Waves" + }, + { + "artist": "Maneskin", + "position": 4, + "title": "Beggin'" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 5, + "title": "My Ex's Best Friend" + }, + { + "artist": "24kGoldn Featuring iann dior", + "position": 6, + "title": "Mood" + }, + { + "artist": "Elle King & Miranda Lambert", + "position": 7, + "title": "Drunk (And I Don't Wanna Go Home)" + }, + { + "artist": "Billie Eilish", + "position": 8, + "title": "NDA" + }, + { + "artist": "Tai Verdes", + "position": 9, + "title": "A-O-K" + }, + { + "artist": "Billie Eilish", + "position": 10, + "title": "Getting Older" + }, + { + "artist": "Billie Eilish", + "position": 11, + "title": "Billie Bossa Nova" + }, + { + "artist": "Billie Eilish", + "position": 12, + "title": "Oxytocin" + }, + { + "artist": "Fleetwood Mac", + "position": 13, + "title": "Dreams" + }, + { + "artist": "Billie Eilish", + "position": 14, + "title": "I Didn't Change My Number" + }, + { + "artist": "AJR", + "position": 15, + "title": "Way Less Sad" + }, + { + "artist": "Billie Eilish", + "position": 16, + "title": "Lost Cause" + }, + { + "artist": "Billie Eilish", + "position": 17, + "title": "Halley's Comet" + }, + { + "artist": "Billie Eilish", + "position": 18, + "title": "Your Power" + }, + { + "artist": "Billie Eilish", + "position": 19, + "title": "Goldwing" + }, + { + "artist": "Billie Eilish", + "position": 20, + "title": "Male Fantasy" + }, + { + "artist": "Olivia Rodrigo", + "position": 21, + "title": "Brutal" + }, + { + "artist": "Maneskin", + "position": 22, + "title": "I Wanna Be Your Slave" + }, + { + "artist": "Willow Featuring Travis Barker", + "position": 23, + "title": "transparentsoul" + }, + { + "artist": "Imagine Dragons", + "position": 24, + "title": "Follow You" + }, + { + "artist": "Billie Eilish", + "position": 25, + "title": "OverHeated" + }, + { + "artist": "Billie Eilish", + "position": 26, + "title": "Everybody Dies" + }, + { + "artist": "Billie Eilish", + "position": 27, + "title": "Not My Responsibility" + }, + { + "artist": "Surf Curse", + "position": 28, + "title": "Freaks" + }, + { + "artist": "Weezer", + "position": 29, + "title": "All My Favorite Songs" + }, + { + "artist": "twenty one pilots", + "position": 30, + "title": "Saturday" + }, + { + "artist": "Imagine Dragons", + "position": 31, + "title": "Wrecked" + }, + { + "artist": "Big Red Machine Featuring Taylor Swift", + "position": 32, + "title": "Renegade" + }, + { + "artist": "Lorde", + "position": 33, + "title": "Solar Power" + }, + { + "artist": "AURORA", + "position": 34, + "title": "Runaway" + }, + { + "artist": "Coldplay", + "position": 35, + "title": "Higher Power" + }, + { + "artist": "Vance Joy", + "position": 36, + "title": "Missing Piece" + }, + { + "artist": "girl in red", + "position": 37, + "title": "Serotonin" + }, + { + "artist": "PinkPantheress", + "position": 38, + "title": "Break It Off" + }, + { + "artist": "John Mayer", + "position": 39, + "title": "Last Train Home" + }, + { + "artist": "Rise Against", + "position": 40, + "title": "Nowhere Generation" + }, + { + "artist": "PinkPantheress", + "position": 41, + "title": "Passion" + }, + { + "artist": "Modest Mouse", + "position": 42, + "title": "We Are Between" + }, + { + "artist": "twenty one pilots", + "position": 43, + "title": "Shy Away" + }, + { + "artist": "Bleachers", + "position": 44, + "title": "Stop Making This Hurt" + }, + { + "artist": "Machine Gun Kelly Featuring Kellin Quinn", + "position": 45, + "title": "Love Race" + }, + { + "artist": "Lorde", + "position": 46, + "title": "Stoned At The Nail Salon" + }, + { + "artist": "Foo Fighters", + "position": 47, + "title": "Making A Fire" + }, + { + "artist": "bbno$ Featuring Rich Brian", + "position": 48, + "title": "Edamame" + }, + { + "artist": "Five Finger Death Punch", + "position": 49, + "title": "Darkness Settles In" + }, + { + "artist": "Clairo", + "position": 50, + "title": "Amoeba" + } + ], + "title": "2021 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Lil Nas X & Jack Harlow", + "position": 1, + "title": "Industry Baby" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 2, + "title": "Leave The Door Open" + }, + { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "position": 3, + "title": "Peaches" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 4, + "title": "Skate" + }, + { + "artist": "Giveon", + "position": 5, + "title": "Heartbreak Anniversary" + }, + { + "artist": "Doja Cat & The Weeknd", + "position": 6, + "title": "You Right" + }, + { + "artist": "Polo G", + "position": 7, + "title": "Rapstar" + }, + { + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "position": 8, + "title": "Every Chance I Get" + }, + { + "artist": "Masked Wolf", + "position": 9, + "title": "Astronaut In The Ocean" + }, + { + "artist": "Roddy Ricch", + "position": 10, + "title": "Late At Night" + }, + { + "artist": "Megan Thee Stallion", + "position": 11, + "title": "Thot Shit" + }, + { + "artist": "Post Malone", + "position": 12, + "title": "Motley Crew" + }, + { + "artist": "Doja Cat", + "position": 13, + "title": "Ain't Shit" + }, + { + "artist": "Moneybagg Yo", + "position": 14, + "title": "Wockesha" + }, + { + "artist": "BIA Featuring Nicki Minaj", + "position": 15, + "title": "Whole Lotta Money" + }, + { + "artist": "Drake Featuring Lil Baby", + "position": 16, + "title": "Wants And Needs" + }, + { + "artist": "Sleepy Hallow", + "position": 17, + "title": "2055" + }, + { + "artist": "Wizkid Featuring Tems", + "position": 18, + "title": "Essence" + }, + { + "artist": "Lil Tjay Featuring 6LACK", + "position": 19, + "title": "Calling My Phone" + }, + { + "artist": "Normani Featuring Cardi B", + "position": 20, + "title": "Wild Side" + }, + { + "artist": "Moneybagg Yo", + "position": 21, + "title": "Time Today" + }, + { + "artist": "Rod Wave", + "position": 22, + "title": "Tombstone" + }, + { + "artist": "DaBaby", + "position": 23, + "title": "Ball If I Want To" + }, + { + "artist": "J. Cole, 21 Savage & Morray", + "position": 24, + "title": "my.life" + }, + { + "artist": "Migos", + "position": 25, + "title": "Straightenin" + }, + { + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "position": 26, + "title": "Not Sober" + }, + { + "artist": "Smiley Featuring Drake", + "position": 27, + "title": "Over The Top" + }, + { + "artist": "H.E.R. Featuring Chris Brown", + "position": 28, + "title": "Come Through" + }, + { + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "position": 29, + "title": "Baddest" + }, + { + "artist": "Lil Baby, Lil Durk & Travis Scott", + "position": 30, + "title": "Hats Off" + }, + { + "artist": "Capella Grey", + "position": 31, + "title": "Gyalis" + }, + { + "artist": "MO3 X OG Bobby Billions", + "position": 32, + "title": "Outside" + }, + { + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "position": 33, + "title": "From The Garden" + }, + { + "artist": "City Girls", + "position": 34, + "title": "Twerkulator" + }, + { + "artist": "Tyler, The Creator Featuring YoungBoy Never Broke Again & Ty Dolla $ign", + "position": 35, + "title": "WUSYANAME" + }, + { + "artist": "Young Thug & Gunna", + "position": 36, + "title": "Ski" + }, + { + "artist": "DaBaby", + "position": 37, + "title": "Red Light Green Light" + }, + { + "artist": "Doja Cat", + "position": 38, + "title": "Woman" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 39, + "title": "Nevada" + }, + { + "artist": "T-Pain & Kehlani", + "position": 40, + "title": "I Like Dat" + }, + { + "artist": "42 Dugg & Roddy Ricch", + "position": 41, + "title": "4 Da Gang" + }, + { + "artist": "Brent Faiyaz Featuring Drake", + "position": 42, + "title": "Wasting Time" + }, + { + "artist": "42 Dugg Featuring Future", + "position": 43, + "title": "Maybach" + }, + { + "artist": "Trippie Redd & Playboi Carti", + "position": 44, + "title": "Miss The Rage" + }, + { + "artist": "Trippie Redd Featuring Lil Uzi Vert", + "position": 45, + "title": "Holy Smokes" + }, + { + "artist": "Wale Featuring Chris Brown", + "position": 46, + "title": "Angles" + }, + { + "artist": "Isaiah Rashad", + "position": 47, + "title": "RIP Young" + }, + { + "artist": "Cochise & $NOT", + "position": 48, + "title": "Tell Em" + }, + { + "artist": "J. Cole & Lil Baby", + "position": 49, + "title": "pride.is.the.devil" + }, + { + "artist": "EST Gee", + "position": 50, + "title": "Lick Back" + } + ], + "title": "2021 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Olivia Rodrigo", + "position": 1, + "title": "Good 4 U" + }, + { + "artist": "Olivia Rodrigo", + "position": 2, + "title": "Deja Vu" + }, + { + "artist": "Doja Cat Featuring SZA", + "position": 3, + "title": "Kiss Me More" + }, + { + "artist": "Lil Nas X", + "position": 4, + "title": "Montero (Call Me By Your Name)" + }, + { + "artist": "Ed Sheeran", + "position": 5, + "title": "Bad Habits" + }, + { + "artist": "Dua Lipa", + "position": 6, + "title": "Levitating" + }, + { + "artist": "The Kid LAROI & Justin Bieber", + "position": 7, + "title": "Stay" + }, + { + "artist": "BTS", + "position": 8, + "title": "Butter" + }, + { + "artist": "Marshmello X Jonas Brothers", + "position": 9, + "title": "Leave Before You Love Me" + }, + { + "artist": "The Weeknd", + "position": 10, + "title": "Save Your Tears" + }, + { + "artist": "Kali Uchis", + "position": 11, + "title": "Telepatia" + }, + { + "artist": "Regard x Troye Sivan x Tate McRae", + "position": 12, + "title": "You" + }, + { + "artist": "Duncan Laurence", + "position": 13, + "title": "Arcade" + }, + { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "position": 14, + "title": "Peaches" + }, + { + "artist": "Doja Cat & The Weeknd", + "position": 15, + "title": "You Right" + }, + { + "artist": "Giveon", + "position": 16, + "title": "Heartbreak Anniversary" + }, + { + "artist": "Dua Lipa", + "position": 17, + "title": "Love Again" + }, + { + "artist": "Ariana Grande", + "position": 18, + "title": "pov" + }, + { + "artist": "Camila Cabello", + "position": 19, + "title": "Don't Go Yet" + }, + { + "artist": "Tate McRae X Khalid", + "position": 20, + "title": "Working" + }, + { + "artist": "Tai Verdes", + "position": 21, + "title": "A-O-K" + }, + { + "artist": "Post Malone", + "position": 22, + "title": "Motley Crew" + }, + { + "artist": "Lil Nas X & Jack Harlow", + "position": 23, + "title": "Industry Baby" + }, + { + "artist": "Kane Brown X blackbear", + "position": 24, + "title": "Memory" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 25, + "title": "Skate" + }, + { + "artist": "The Weeknd", + "position": 26, + "title": "Take My Breath" + }, + { + "artist": "Billie Eilish", + "position": 27, + "title": "NDA" + }, + { + "artist": "Bella Poarch", + "position": 28, + "title": "Build A Bitch" + }, + { + "artist": "Maroon 5", + "position": 29, + "title": "Lost" + }, + { + "artist": "Bazzi", + "position": 30, + "title": "I Like That" + }, + { + "artist": "Pop Smoke Featuring Dua Lipa", + "position": 31, + "title": "Demeanor" + }, + { + "artist": "Olivia Rodrigo", + "position": 32, + "title": "Traitor" + }, + { + "artist": "Normani Featuring Cardi B", + "position": 33, + "title": "Wild Side" + }, + { + "artist": "Maneskin", + "position": 34, + "title": "Beggin'" + }, + { + "artist": "Tones And I", + "position": 35, + "title": "Cloudy Day" + }, + { + "artist": "twenty one pilots", + "position": 36, + "title": "Saturday" + }, + { + "artist": "Dixie Featuring Rubi Rose", + "position": 37, + "title": "Psycho" + }, + { + "artist": "Alessia Cara", + "position": 38, + "title": "Sweet Dream" + }, + { + "artist": "Tesher X Jason Derulo", + "position": 39, + "title": "Jalebi Baby" + }, + { + "artist": "Swedish House Mafia Featuring Ty Dolla $ign & 070 Shake", + "position": 40, + "title": "Lifetime" + } + ], + "title": "2021 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "The Kid LAROI & Justin Bieber", + "position": 1, + "title": "Stay" + }, + { + "artist": "Olivia Rodrigo", + "position": 2, + "title": "Good 4 U" + }, + { + "artist": "Dua Lipa Featuring DaBaby", + "position": 3, + "title": "Levitating" + }, + { + "artist": "BTS", + "position": 4, + "title": "Butter" + }, + { + "artist": "Ed Sheeran", + "position": 5, + "title": "Bad Habits" + }, + { + "artist": "Doja Cat Featuring SZA", + "position": 6, + "title": "Kiss Me More" + }, + { + "artist": "Lil Nas X & Jack Harlow", + "position": 7, + "title": "Industry Baby" + }, + { + "artist": "Lil Nas X", + "position": 8, + "title": "Montero (Call Me By Your Name)" + }, + { + "artist": "Olivia Rodrigo", + "position": 9, + "title": "Deja Vu" + }, + { + "artist": "The Weeknd & Ariana Grande", + "position": 10, + "title": "Save Your Tears" + }, + { + "artist": "Billie Eilish", + "position": 11, + "title": "Happier Than Ever" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 12, + "title": "Leave The Door Open" + }, + { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "position": 13, + "title": "Peaches" + }, + { + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "position": 14, + "title": "Skate" + }, + { + "artist": "Walker Hayes", + "position": 15, + "title": "Fancy Like" + }, + { + "artist": "The Weeknd", + "position": 16, + "title": "Blinding Lights" + }, + { + "artist": "Giveon", + "position": 17, + "title": "Heartbreak Anniversary" + }, + { + "artist": "Doja Cat & The Weeknd", + "position": 18, + "title": "You Right" + }, + { + "artist": "Polo G", + "position": 19, + "title": "Rapstar" + }, + { + "artist": "Marshmello X Jonas Brothers", + "position": 20, + "title": "Leave Before You Love Me" + }, + { + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "position": 21, + "title": "Every Chance I Get" + }, + { + "artist": "The Kid LAROI", + "position": 22, + "title": "Without You" + }, + { + "artist": "Luke Combs", + "position": 23, + "title": "Forever After All" + }, + { + "artist": "Chase Rice Featuring Florida Georgia Line", + "position": 24, + "title": "Drinkin' Beer. Talkin' God. Amen." + }, + { + "artist": "Dan + Shay", + "position": 25, + "title": "Glad You Exist" + }, + { + "artist": "Nelly & Florida Georgia Line", + "position": 26, + "title": "Lil Bit" + }, + { + "artist": "BTS", + "position": 27, + "title": "Permission To Dance" + }, + { + "artist": "Masked Wolf", + "position": 28, + "title": "Astronaut In The Ocean" + }, + { + "artist": "Roddy Ricch", + "position": 29, + "title": "Late At Night" + }, + { + "artist": "Megan Thee Stallion", + "position": 30, + "title": "Thot Shit" + }, + { + "artist": "Glass Animals", + "position": 31, + "title": "Heat Waves" + }, + { + "artist": "Doja Cat", + "position": 32, + "title": "Need To Know" + }, + { + "artist": "Kali Uchis", + "position": 33, + "title": "Telepatia" + }, + { + "artist": "Maroon 5 Featuring Megan Thee Stallion", + "position": 34, + "title": "Beautiful Mistakes" + }, + { + "artist": "Luke Bryan", + "position": 35, + "title": "Waves" + }, + { + "artist": "Chris Young + Kane Brown", + "position": 36, + "title": "Famous Friends" + }, + { + "artist": "Aventura x Bad Bunny", + "position": 37, + "title": "Volvi" + }, + { + "artist": "Saweetie Featuring Doja Cat", + "position": 38, + "title": "Best Friend" + }, + { + "artist": "Post Malone", + "position": 39, + "title": "Motley Crew" + }, + { + "artist": "Cole Swindell", + "position": 40, + "title": "Single Saturday Night" + }, + { + "artist": "Doja Cat", + "position": 41, + "title": "Ain't Shit" + }, + { + "artist": "Moneybagg Yo", + "position": 42, + "title": "Wockesha" + }, + { + "artist": "BIA Featuring Nicki Minaj", + "position": 43, + "title": "Whole Lotta Money" + }, + { + "artist": "Maneskin", + "position": 44, + "title": "Beggin'" + }, + { + "artist": "Lainey Wilson", + "position": 45, + "title": "Things A Man Oughta Know" + }, + { + "artist": "Ryan Hurd With Maren Morris", + "position": 46, + "title": "Chasing After You" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 47, + "title": "My Ex's Best Friend" + }, + { + "artist": "24kGoldn Featuring iann dior", + "position": 48, + "title": "Mood" + }, + { + "artist": "Olivia Rodrigo", + "position": 49, + "title": "Traitor" + }, + { + "artist": "Duncan Laurence", + "position": 50, + "title": "Arcade" + }, + { + "artist": "Thomas Rhett", + "position": 51, + "title": "Country Again" + }, + { + "artist": "Jason Aldean & Carrie Underwood", + "position": 52, + "title": "If I Didn't Love You" + }, + { + "artist": "Sleepy Hallow", + "position": 53, + "title": "2055" + }, + { + "artist": "Wizkid Featuring Tems", + "position": 54, + "title": "Essence" + }, + { + "artist": "Bad Bunny", + "position": 55, + "title": "Yonaguni" + }, + { + "artist": "Rauw Alejandro", + "position": 56, + "title": "Todo de Ti" + }, + { + "artist": "Keith Urban Duet With P!nk", + "position": 57, + "title": "One Too Many" + }, + { + "artist": "Elle King & Miranda Lambert", + "position": 58, + "title": "Drunk (And I Don't Wanna Go Home)" + }, + { + "artist": "Billie Eilish", + "position": 59, + "title": "NDA" + }, + { + "artist": "Justin Moore", + "position": 60, + "title": "We Didn't Have Much" + }, + { + "artist": "Normani Featuring Cardi B", + "position": 61, + "title": "Wild Side" + }, + { + "artist": "Regard x Troye Sivan x Tate McRae", + "position": 62, + "title": "You" + }, + { + "artist": "Camila Cabello", + "position": 63, + "title": "Don't Go Yet" + }, + { + "artist": "Old Dominion", + "position": 64, + "title": "I Was On A Boat That Day" + }, + { + "artist": "Dua Lipa", + "position": 65, + "title": "Love Again" + }, + { + "artist": "Farruko", + "position": 66, + "title": "Pepas" + }, + { + "artist": "Tai Verdes", + "position": 67, + "title": "A-O-K" + }, + { + "artist": "Kane Brown X blackbear", + "position": 68, + "title": "Memory" + }, + { + "artist": "Billie Eilish", + "position": 69, + "title": "Getting Older" + }, + { + "artist": "Billie Eilish", + "position": 70, + "title": "Billie Bossa Nova" + }, + { + "artist": "Rod Wave", + "position": 71, + "title": "Tombstone" + }, + { + "artist": "Billie Eilish", + "position": 72, + "title": "Oxytocin" + }, + { + "artist": "DaBaby", + "position": 73, + "title": "Ball If I Want To" + }, + { + "artist": "J. Cole, 21 Savage & Morray", + "position": 74, + "title": "my.life" + }, + { + "artist": "Jason Aldean", + "position": 75, + "title": "Blame It On You" + }, + { + "artist": "Migos", + "position": 76, + "title": "Straightenin" + }, + { + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "position": 77, + "title": "Not Sober" + }, + { + "artist": "Smiley Featuring Drake", + "position": 78, + "title": "Over The Top" + }, + { + "artist": "Jameson Rodgers Featuring Luke Combs", + "position": 79, + "title": "Cold Beer Calling My Name" + }, + { + "artist": "Billie Eilish", + "position": 80, + "title": "I Didn't Change My Number" + }, + { + "artist": "AJR", + "position": 81, + "title": "Way Less Sad" + }, + { + "artist": "H.E.R. Featuring Chris Brown", + "position": 82, + "title": "Come Through" + }, + { + "artist": "Elvie Shane", + "position": 83, + "title": "My Boy" + }, + { + "artist": "Billie Eilish", + "position": 84, + "title": "Lost Cause" + }, + { + "artist": "Nio Garcia X J Balvin X Bad Bunny", + "position": 85, + "title": "AM" + }, + { + "artist": "Olivia Rodrigo", + "position": 86, + "title": "Favorite Crime" + }, + { + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "position": 87, + "title": "Baddest" + }, + { + "artist": "Lee Brice", + "position": 88, + "title": "Memory I Don't Mess With" + }, + { + "artist": "Chris Stapleton", + "position": 89, + "title": "You Should Probably Leave" + }, + { + "artist": "Billie Eilish", + "position": 90, + "title": "Halley's Comet" + }, + { + "artist": "Billie Eilish", + "position": 91, + "title": "My Future" + }, + { + "artist": "Bella Poarch", + "position": 92, + "title": "Build A Bitch" + }, + { + "artist": "Olivia Rodrigo", + "position": 93, + "title": "Happier" + }, + { + "artist": "Lil Baby, Lil Durk & Travis Scott", + "position": 94, + "title": "Hats Off" + }, + { + "artist": "Capella Grey", + "position": 95, + "title": "Gyalis" + }, + { + "artist": "Scotty McCreery", + "position": 96, + "title": "You Time" + }, + { + "artist": "Los Legendarios, Wisin & Jhay Cortez", + "position": 97, + "title": "Fiel" + }, + { + "artist": "MO3 X OG Bobby Billions", + "position": 98, + "title": "Outside" + }, + { + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "position": 99, + "title": "From The Garden" + }, + { + "artist": "Tate McRae X Khalid", + "position": 100, + "title": "Working" + } + ], + "title": "2021 - Hot 100" + }, + { + "songs": [ + { + "artist": "Walker Hayes", + "position": 1, + "title": "Fancy Like" + }, + { + "artist": "Luke Combs", + "position": 2, + "title": "Forever After All" + }, + { + "artist": "Chase Rice Featuring Florida Georgia Line", + "position": 3, + "title": "Drinkin' Beer. Talkin' God. Amen." + }, + { + "artist": "Dan + Shay", + "position": 4, + "title": "Glad You Exist" + }, + { + "artist": "Nelly & Florida Georgia Line", + "position": 5, + "title": "Lil Bit" + }, + { + "artist": "Luke Bryan", + "position": 6, + "title": "Waves" + }, + { + "artist": "Chris Young + Kane Brown", + "position": 7, + "title": "Famous Friends" + }, + { + "artist": "Cole Swindell", + "position": 8, + "title": "Single Saturday Night" + }, + { + "artist": "Lainey Wilson", + "position": 9, + "title": "Things A Man Oughta Know" + }, + { + "artist": "Ryan Hurd With Maren Morris", + "position": 10, + "title": "Chasing After You" + }, + { + "artist": "Thomas Rhett", + "position": 11, + "title": "Country Again" + }, + { + "artist": "Jason Aldean & Carrie Underwood", + "position": 12, + "title": "If I Didn't Love You" + }, + { + "artist": "Keith Urban Duet With P!nk", + "position": 13, + "title": "One Too Many" + }, + { + "artist": "Elle King & Miranda Lambert", + "position": 14, + "title": "Drunk (And I Don't Wanna Go Home)" + }, + { + "artist": "Justin Moore", + "position": 15, + "title": "We Didn't Have Much" + }, + { + "artist": "Old Dominion", + "position": 16, + "title": "I Was On A Boat That Day" + }, + { + "artist": "Kane Brown X blackbear", + "position": 17, + "title": "Memory" + }, + { + "artist": "Jameson Rodgers Featuring Luke Combs", + "position": 18, + "title": "Cold Beer Calling My Name" + }, + { + "artist": "Elvie Shane", + "position": 19, + "title": "My Boy" + }, + { + "artist": "Lee Brice", + "position": 20, + "title": "Memory I Don't Mess With" + }, + { + "artist": "Chris Stapleton", + "position": 21, + "title": "You Should Probably Leave" + }, + { + "artist": "Scotty McCreery", + "position": 22, + "title": "You Time" + }, + { + "artist": "Luke Combs", + "position": 23, + "title": "Cold As You" + }, + { + "artist": "Carly Pearce", + "position": 24, + "title": "Next Girl" + }, + { + "artist": "Kenny Chesney", + "position": 25, + "title": "Knowing You" + }, + { + "artist": "Jordan Davis Featuring Luke Bryan", + "position": 26, + "title": "Buy Dirt" + }, + { + "artist": "Dustin Lynch Featuring Lauren Alaina Or MacKenzie Porter", + "position": 27, + "title": "Thinking 'Bout You" + }, + { + "artist": "Parker McCollum", + "position": 28, + "title": "To Be Loved By You" + }, + { + "artist": "Morgan Wallen", + "position": 29, + "title": "Sand In My Boots" + }, + { + "artist": "Lady A", + "position": 30, + "title": "Like A Lady" + }, + { + "artist": "Jimmie Allen & Brad Paisley", + "position": 31, + "title": "Freedom Was A Highway" + }, + { + "artist": "Michael Ray", + "position": 32, + "title": "Whiskey And Rain" + }, + { + "artist": "Zac Brown Band", + "position": 33, + "title": "Same Boat" + }, + { + "artist": "Jon Pardi", + "position": 34, + "title": "Tequila Little Time" + }, + { + "artist": "Priscilla Block", + "position": 35, + "title": "Just About Over You" + }, + { + "artist": "Dierks Bentley, Breland & HARDY", + "position": 36, + "title": "Beers On Me" + }, + { + "artist": "Kelsea Ballerini Featuring Kenny Chesney", + "position": 37, + "title": "Half Of My Hometown" + }, + { + "artist": "Russell Dickerson", + "position": 38, + "title": "Home Sweet" + }, + { + "artist": "HARDY", + "position": 39, + "title": "Give Heaven Some Hell" + }, + { + "artist": "Chase Matthew", + "position": 40, + "title": "County Line" + }, + { + "artist": "Aaron Lewis", + "position": 41, + "title": "Am I The Only One" + }, + { + "artist": "Dan + Shay", + "position": 42, + "title": "Good Things" + }, + { + "artist": "Breland Featuring Keith Urban", + "position": 43, + "title": "Throw It Back" + }, + { + "artist": "Brett Young", + "position": 44, + "title": "Not Yet" + }, + { + "artist": "Kelsea Ballerini & LANY", + "position": 45, + "title": "I Quit Drinking" + }, + { + "artist": "Callista Clark", + "position": 46, + "title": "It's 'Cause I Am" + }, + { + "artist": "Garth Brooks", + "position": 47, + "title": "That's What Cowboys Do" + }, + { + "artist": "Mitchell Tenpenny", + "position": 48, + "title": "Truth About You" + }, + { + "artist": "Riley Green", + "position": 49, + "title": "If It Wasn't For Trucks" + }, + { + "artist": "Ingrid Andress", + "position": 50, + "title": "Lady Like" + } + ], + "title": "2021 - Country-Songs" + }, + { + "songs": [ + { + "artist": "24kGoldn Featuring iann dior", + "position": 1, + "title": "Mood" + }, + { + "artist": "Billie Eilish", + "position": 2, + "title": "Therefore I Am" + }, + { + "artist": "AJR", + "position": 3, + "title": "Bang!" + }, + { + "artist": "Juice WRLD x Marshmello", + "position": 4, + "title": "Come & Go" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 5, + "title": "My Ex's Best Friend" + }, + { + "artist": "Taylor Swift Featuring Bon Iver", + "position": 6, + "title": "Exile" + }, + { + "artist": "Clairo", + "position": 7, + "title": "Sofia" + }, + { + "artist": "Miley Cyrus", + "position": 8, + "title": "Plastic Hearts" + }, + { + "artist": "Machine Gun Kelly", + "position": 9, + "title": "Bloody Valentine" + }, + { + "artist": "Taylor Swift", + "position": 10, + "title": "Cardigan" + }, + { + "artist": "Wallows Featuring Clairo", + "position": 11, + "title": "Are You Bored Yet?" + }, + { + "artist": "Miley Cyrus Featuring Billy Idol", + "position": 12, + "title": "Night Crawling" + }, + { + "artist": "Miley Cyrus", + "position": 13, + "title": "WTF Do I Know" + }, + { + "artist": "Machine Gun Kelly & Halsey", + "position": 14, + "title": "Forget Me Too" + }, + { + "artist": "Glass Animals", + "position": 15, + "title": "Heat Waves" + }, + { + "artist": "Miley Cyrus", + "position": 16, + "title": "Gimme What I Want" + }, + { + "artist": "All Time Low Featuring blackbear", + "position": 17, + "title": "Monsters" + }, + { + "artist": "Miley Cyrus", + "position": 18, + "title": "High" + }, + { + "artist": "Miley Cyrus Featuring Joan Jett", + "position": 19, + "title": "Bad Karma" + }, + { + "artist": "BANNERS", + "position": 20, + "title": "Someone To You" + }, + { + "artist": "347aidan", + "position": 21, + "title": "Dancing In My Room" + }, + { + "artist": "Foo Fighters", + "position": 22, + "title": "Shame Shame" + }, + { + "artist": "Billie Eilish", + "position": 23, + "title": "My Future" + }, + { + "artist": "Royal & The Serpent", + "position": 24, + "title": "Overwhelmed" + }, + { + "artist": "Peach Tree Rascals", + "position": 25, + "title": "Mariposa" + }, + { + "artist": "Miley Cyrus", + "position": 26, + "title": "Zombie" + }, + { + "artist": "Taylor Swift", + "position": 27, + "title": "My Tears Ricochet" + }, + { + "artist": "Taylor Swift", + "position": 28, + "title": "August" + }, + { + "artist": "NEEDTOBREATHE", + "position": 29, + "title": "Who Am I" + }, + { + "artist": "AC/DC", + "position": 30, + "title": "Shot In The Dark" + }, + { + "artist": "Cannons", + "position": 31, + "title": "Fire For You" + }, + { + "artist": "Sista_Prod Featuring Subvrbs", + "position": 32, + "title": "Eyes Blue Like The Atlantic" + }, + { + "artist": "Taylor Swift", + "position": 33, + "title": "This Is Me Trying" + }, + { + "artist": "Taylor Swift", + "position": 34, + "title": "Mirrorball" + }, + { + "artist": "Penelope Scott", + "position": 35, + "title": "Rat" + }, + { + "artist": "Tai Verdes", + "position": 36, + "title": "Drugs" + }, + { + "artist": "Taylor Swift", + "position": 37, + "title": "Seven" + }, + { + "artist": "Machine Gun Kelly", + "position": 38, + "title": "Drunk Face" + }, + { + "artist": "Frances Forever", + "position": 39, + "title": "Space Girl" + }, + { + "artist": "Royal Blood", + "position": 40, + "title": "Trouble's Coming" + }, + { + "artist": "Tame Impala", + "position": 41, + "title": "Is It True" + }, + { + "artist": "Stellar", + "position": 42, + "title": "Ashes" + }, + { + "artist": "Bastille", + "position": 43, + "title": "Survivin'" + }, + { + "artist": "Tones And I", + "position": 44, + "title": "Fly Away" + }, + { + "artist": "Coldplay", + "position": 45, + "title": "Christmas Lights" + }, + { + "artist": "CORPSE", + "position": 46, + "title": "Miss You!" + }, + { + "artist": "Zach Bryan", + "position": 47, + "title": "Heading South" + }, + { + "artist": "ILLENIUM", + "position": 48, + "title": "Nightlight" + }, + { + "artist": "Taylor Swift", + "position": 49, + "title": "Mad Woman" + }, + { + "artist": "I Prevail Featuring Delaney Jane", + "position": 50, + "title": "Every Time You Leave" + } + ], + "title": "2020 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Drake Featuring Lil Durk", + "position": 1, + "title": "Laugh Now Cry Later" + }, + { + "artist": "The Weeknd", + "position": 2, + "title": "Blinding Lights" + }, + { + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "position": 3, + "title": "Lemonade" + }, + { + "artist": "Megan Thee Stallion", + "position": 4, + "title": "Body" + }, + { + "artist": "Chris Brown & Young Thug", + "position": 5, + "title": "Go Crazy" + }, + { + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "position": 6, + "title": "For The Night" + }, + { + "artist": "Cardi B Featuring Megan Thee Stallion", + "position": 7, + "title": "WAP" + }, + { + "artist": "DaBaby Featuring Roddy Ricch", + "position": 8, + "title": "Rockstar" + }, + { + "artist": "Moneybagg Yo", + "position": 9, + "title": "Said Sum" + }, + { + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "position": 10, + "title": "Whats Poppin" + }, + { + "artist": "Lil Nas X", + "position": 11, + "title": "Holiday" + }, + { + "artist": "Pop Smoke", + "position": 12, + "title": "What You Know Bout Love" + }, + { + "artist": "CJ", + "position": 13, + "title": "Whoopty" + }, + { + "artist": "Rod Wave Featuring ATR Son Son", + "position": 14, + "title": "Rags2Riches" + }, + { + "artist": "21 Savage & Metro Boomin Featuring Drake", + "position": 15, + "title": "Mr. Right Now" + }, + { + "artist": "Pop Smoke Featuring 50 Cent & Roddy Ricch", + "position": 16, + "title": "The Woo" + }, + { + "artist": "Jhene Aiko Featuring H.E.R.", + "position": 17, + "title": "B.S." + }, + { + "artist": "Pop Smoke Featuring Lil Tjay", + "position": 18, + "title": "Mood Swings" + }, + { + "artist": "BRS Kash", + "position": 19, + "title": "Throat Baby (Go Baby)" + }, + { + "artist": "King Von", + "position": 20, + "title": "Took Her To The O" + }, + { + "artist": "Megan Thee Stallion Featuring Young Thug", + "position": 21, + "title": "Don't Stop" + }, + { + "artist": "SZA Featuring Ty Dolla $ign", + "position": 22, + "title": "Hit Different" + }, + { + "artist": "Jack Harlow", + "position": 23, + "title": "Tyler Herro" + }, + { + "artist": "Saweetie Featuring Jhene Aiko", + "position": 24, + "title": "Back To The Streets" + }, + { + "artist": "Polo G", + "position": 25, + "title": "Martin & Gina" + }, + { + "artist": "Travis Scott Featuring Young Thug & M.I.A.", + "position": 26, + "title": "Franchise" + }, + { + "artist": "DaBaby", + "position": 27, + "title": "Practice" + }, + { + "artist": "Ne-Yo & Jeremih", + "position": 28, + "title": "U 2 Luv" + }, + { + "artist": "DJ Khaled Featuring Drake", + "position": 29, + "title": "Popstar" + }, + { + "artist": "Future & Lil Uzi Vert", + "position": 30, + "title": "Drankin N Smokin" + }, + { + "artist": "Money Man Featuring Lil Baby", + "position": 31, + "title": "24" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 32, + "title": "Kacey Talk" + }, + { + "artist": "DDG", + "position": 33, + "title": "Moonwalking In Calabasas" + }, + { + "artist": "H.E.R.", + "position": 34, + "title": "Damage" + }, + { + "artist": "21 Savage & Metro Boomin", + "position": 35, + "title": "Runnin" + }, + { + "artist": "DaBaby Featuring Young Thug", + "position": 36, + "title": "Blind" + }, + { + "artist": "Lil Yachty, Future & Playboi Carti", + "position": 37, + "title": "Flex Up" + }, + { + "artist": "Meek Mill Featuring Lil Durk", + "position": 38, + "title": "Pain Away" + }, + { + "artist": "Megan Thee Stallion Featuring DaBaby", + "position": 39, + "title": "Cry Baby" + }, + { + "artist": "DJ Chose Featuring BeatKing", + "position": 40, + "title": "Thick" + }, + { + "artist": "Pop Smoke Featuring A Boogie Wit da Hoodie", + "position": 41, + "title": "Hello" + }, + { + "artist": "K Camp Featuring Jacquees", + "position": 42, + "title": "What's On Your Mind" + }, + { + "artist": "Ty Dolla $ign Featuring Post Malone", + "position": 43, + "title": "Spicy" + }, + { + "artist": "Future & Lil Uzi Vert", + "position": 44, + "title": "That's It" + }, + { + "artist": "Yung Bleu Featuring Drake", + "position": 45, + "title": "You're Mines Still" + }, + { + "artist": "Juice WRLD & The Weeknd", + "position": 46, + "title": "Smile" + }, + { + "artist": "King Von Featuring Lil Durk", + "position": 47, + "title": "Crazy Story 2.0" + }, + { + "artist": "Kid LAROI & Juice WRLD", + "position": 48, + "title": "Go!" + }, + { + "artist": "Usher", + "position": 49, + "title": "Bad Habits" + }, + { + "artist": "Big Sean Featuring Post Malone", + "position": 50, + "title": "Wolves" + } + ], + "title": "2020 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "24kGoldn Featuring iann dior", + "position": 1, + "title": "Mood" + }, + { + "artist": "Ava Max", + "position": 2, + "title": "Kings & Queens" + }, + { + "artist": "Ariana Grande", + "position": 3, + "title": "Positions" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 4, + "title": "Holy" + }, + { + "artist": "Gabby Barrett Featuring Charlie Puth", + "position": 5, + "title": "I Hope" + }, + { + "artist": "BTS", + "position": 6, + "title": "Dynamite" + }, + { + "artist": "surf mesa Featuring Emilee", + "position": 7, + "title": "ily" + }, + { + "artist": "Kane Brown With Swae Lee & Khalid", + "position": 8, + "title": "Be Like That" + }, + { + "artist": "Dua Lipa Featuring DaBaby", + "position": 9, + "title": "Levitating" + }, + { + "artist": "AJR", + "position": 10, + "title": "Bang!" + }, + { + "artist": "Drake Featuring Lil Durk", + "position": 11, + "title": "Laugh Now Cry Later" + }, + { + "artist": "The Weeknd", + "position": 12, + "title": "Blinding Lights" + }, + { + "artist": "Jawsh 685 x Jason Derulo", + "position": 13, + "title": "Savage Love (Laxed - Siren Beat)" + }, + { + "artist": "Chris Brown & Young Thug", + "position": 14, + "title": "Go Crazy" + }, + { + "artist": "Sam Smith", + "position": 15, + "title": "Diamonds" + }, + { + "artist": "Billie Eilish", + "position": 16, + "title": "Therefore I Am" + }, + { + "artist": "Justin Bieber & benny blanco", + "position": 17, + "title": "Lonely" + }, + { + "artist": "Harry Styles", + "position": 18, + "title": "Golden" + }, + { + "artist": "Shawn Mendes & Justin Bieber", + "position": 19, + "title": "Monster" + }, + { + "artist": "Ariana Grande", + "position": 20, + "title": "34+35" + }, + { + "artist": "Zoe Wees", + "position": 21, + "title": "Control" + }, + { + "artist": "Bebe Rexha Featuring Doja Cat", + "position": 22, + "title": "Baby, I'm Jealous" + }, + { + "artist": "Jason Derulo", + "position": 23, + "title": "Take You Dancing" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 24, + "title": "My Ex's Best Friend" + }, + { + "artist": "Tate McRae", + "position": 25, + "title": "You Broke Me First." + }, + { + "artist": "Why Don't We", + "position": 26, + "title": "Fallin'" + }, + { + "artist": "Lil Nas X", + "position": 27, + "title": "Holiday" + }, + { + "artist": "Ritt Momney", + "position": 28, + "title": "Put Your Records On" + }, + { + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "position": 29, + "title": "Lemonade" + }, + { + "artist": "Miley Cyrus Featuring Dua Lipa", + "position": 30, + "title": "Prisoner" + }, + { + "artist": "Conan Gray", + "position": 31, + "title": "Heather" + }, + { + "artist": "Pop Smoke", + "position": 32, + "title": "What You Know Bout Love" + }, + { + "artist": "Zara Larsson", + "position": 33, + "title": "Wow" + }, + { + "artist": "The Weeknd", + "position": 34, + "title": "Save Your Tears" + }, + { + "artist": "Joel Corry X MNEK", + "position": 35, + "title": "Head & Heart" + }, + { + "artist": "Juice WRLD x Marshmello", + "position": 36, + "title": "Come & Go" + }, + { + "artist": "Shawn Mendes", + "position": 37, + "title": "Wonder" + }, + { + "artist": "G-Eazy Featuring blackbear", + "position": 38, + "title": "Hate The Way" + }, + { + "artist": "Maluma & The Weeknd", + "position": 39, + "title": "Hawai" + }, + { + "artist": "The Kid LAROI", + "position": 40, + "title": "So Done" + } + ], + "title": "2020 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "24kGoldn Featuring iann dior", + "position": 1, + "title": "Mood" + }, + { + "artist": "Mariah Carey", + "position": 2, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Ariana Grande", + "position": 3, + "title": "Positions" + }, + { + "artist": "Brenda Lee", + "position": 4, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Bad Bunny & Jhay Cortez", + "position": 5, + "title": "Dakiti" + }, + { + "artist": "Drake Featuring Lil Durk", + "position": 6, + "title": "Laugh Now Cry Later" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 7, + "title": "Holy" + }, + { + "artist": "Gabby Barrett Featuring Charlie Puth", + "position": 8, + "title": "I Hope" + }, + { + "artist": "Bobby Helms", + "position": 9, + "title": "Jingle Bell Rock" + }, + { + "artist": "BTS", + "position": 10, + "title": "Dynamite" + }, + { + "artist": "The Weeknd", + "position": 11, + "title": "Blinding Lights" + }, + { + "artist": "Andy Williams", + "position": 12, + "title": "It's The Most Wonderful Time Of The Year" + }, + { + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "position": 13, + "title": "Lemonade" + }, + { + "artist": "Megan Thee Stallion", + "position": 14, + "title": "Body" + }, + { + "artist": "Chris Brown & Young Thug", + "position": 15, + "title": "Go Crazy" + }, + { + "artist": "Jose Feliciano", + "position": 16, + "title": "Feliz Navidad" + }, + { + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "position": 17, + "title": "For The Night" + }, + { + "artist": "Nat King Cole", + "position": 18, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Ava Max", + "position": 19, + "title": "Kings & Queens" + }, + { + "artist": "Billie Eilish", + "position": 20, + "title": "Therefore I Am" + }, + { + "artist": "Wham!", + "position": 21, + "title": "Last Christmas" + }, + { + "artist": "Dean Martin", + "position": 22, + "title": "Let It Snow, Let It Snow, Let It Snow" + }, + { + "artist": "The Ronettes", + "position": 23, + "title": "Sleigh Ride" + }, + { + "artist": "Burl Ives", + "position": 24, + "title": "A Holly Jolly Christmas" + }, + { + "artist": "Ariana Grande", + "position": 25, + "title": "34+35" + }, + { + "artist": "Dua Lipa Featuring DaBaby", + "position": 26, + "title": "Levitating" + }, + { + "artist": "AJR", + "position": 27, + "title": "Bang!" + }, + { + "artist": "BTS", + "position": 28, + "title": "Life Goes On" + }, + { + "artist": "Jawsh 685 x Jason Derulo", + "position": 29, + "title": "Savage Love (Laxed - Siren Beat)" + }, + { + "artist": "Kelly Clarkson", + "position": 30, + "title": "Underneath The Tree" + }, + { + "artist": "Kane Brown With Swae Lee & Khalid", + "position": 31, + "title": "Be Like That" + }, + { + "artist": "Morgan Wallen", + "position": 32, + "title": "More Than My Hometown" + }, + { + "artist": "Cardi B Featuring Megan Thee Stallion", + "position": 33, + "title": "WAP" + }, + { + "artist": "Andy Williams", + "position": 34, + "title": "Happy Holiday / The Holiday Season" + }, + { + "artist": "DaBaby Featuring Roddy Ricch", + "position": 35, + "title": "Rockstar" + }, + { + "artist": "Gene Autry", + "position": 36, + "title": "Here Comes Santa Claus (Right Down Santa Claus Lane)" + }, + { + "artist": "Bing Crosby", + "position": 37, + "title": "White Christmas" + }, + { + "artist": "Shawn Mendes & Justin Bieber", + "position": 38, + "title": "Monster" + }, + { + "artist": "Michael Buble", + "position": 39, + "title": "It's Beginning To Look A Lot Like Christmas" + }, + { + "artist": "Gene Autry", + "position": 40, + "title": "Rudolph The Red-Nosed Reindeer" + }, + { + "artist": "Darlene Love", + "position": 41, + "title": "Christmas (Baby Please Come Home)" + }, + { + "artist": "Lewis Capaldi", + "position": 42, + "title": "Before You Go" + }, + { + "artist": "surf mesa Featuring Emilee", + "position": 43, + "title": "ily" + }, + { + "artist": "Moneybagg Yo", + "position": 44, + "title": "Said Sum" + }, + { + "artist": "Perry Como And The Fontane Sisters With Mitchell Ayres And His Orchestra", + "position": 45, + "title": "It's Beginning To Look A Lot Like Christmas" + }, + { + "artist": "Justin Bieber & benny blanco", + "position": 46, + "title": "Lonely" + }, + { + "artist": "Perry Como", + "position": 47, + "title": "(There's No Place Like) Home For The Holidays" + }, + { + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "position": 48, + "title": "Whats Poppin" + }, + { + "artist": "Blake Shelton Featuring Gwen Stefani", + "position": 49, + "title": "Happy Anywhere" + }, + { + "artist": "Harry Styles", + "position": 50, + "title": "Watermelon Sugar" + }, + { + "artist": "Lil Nas X", + "position": 51, + "title": "Holiday" + }, + { + "artist": "Pop Smoke", + "position": 52, + "title": "What You Know Bout Love" + }, + { + "artist": "Bad Bunny & ROSALIA", + "position": 53, + "title": "La Noche de Anoche" + }, + { + "artist": "Maluma & The Weeknd", + "position": 54, + "title": "Hawai" + }, + { + "artist": "Luke Combs", + "position": 55, + "title": "Better Together" + }, + { + "artist": "Chris Lane", + "position": 56, + "title": "Big, Big Plans" + }, + { + "artist": "Miley Cyrus", + "position": 57, + "title": "Midnight Sky" + }, + { + "artist": "Sam Smith", + "position": 58, + "title": "Diamonds" + }, + { + "artist": "Miley Cyrus Featuring Dua Lipa", + "position": 59, + "title": "Prisoner" + }, + { + "artist": "Bad Bunny", + "position": 60, + "title": "Te Mudaste" + }, + { + "artist": "Russell Dickerson", + "position": 61, + "title": "Love You Like I Used To" + }, + { + "artist": "Chris Stapleton", + "position": 62, + "title": "Starting Over" + }, + { + "artist": "Jon Pardi", + "position": 63, + "title": "Ain't Always The Cowboy" + }, + { + "artist": "Bad Bunny", + "position": 64, + "title": "Yo Visto Asi" + }, + { + "artist": "Trey Lewis", + "position": 65, + "title": "Dicked Down In Dallas" + }, + { + "artist": "Dan + Shay", + "position": 66, + "title": "I Should Probably Go To Bed" + }, + { + "artist": "Tate McRae", + "position": 67, + "title": "You Broke Me First." + }, + { + "artist": "Luke Combs", + "position": 68, + "title": "Forever After All" + }, + { + "artist": "CJ", + "position": 69, + "title": "Whoopty" + }, + { + "artist": "21 Savage & Metro Boomin Featuring Drake", + "position": 70, + "title": "Mr. Right Now" + }, + { + "artist": "Jhene Aiko Featuring H.E.R.", + "position": 71, + "title": "B.S." + }, + { + "artist": "Bad Bunny", + "position": 72, + "title": "Haciendo Que Me Amas" + }, + { + "artist": "Machine Gun Kelly X blackbear", + "position": 73, + "title": "My Ex's Best Friend" + }, + { + "artist": "Bad Bunny", + "position": 74, + "title": "Te Deseo Lo Mejor" + }, + { + "artist": "Kelly Clarkson & Brett Eldredge", + "position": 75, + "title": "Under The Mistletoe" + }, + { + "artist": "Morgan Wallen", + "position": 76, + "title": "7 Summers" + }, + { + "artist": "Shawn Mendes", + "position": 77, + "title": "Wonder" + }, + { + "artist": "Bad Bunny", + "position": 78, + "title": "Booker T" + }, + { + "artist": "Bad Bunny", + "position": 79, + "title": "El Mundo Es Mio" + }, + { + "artist": "Ariana Grande", + "position": 80, + "title": "pov" + }, + { + "artist": "Bad Bunny", + "position": 81, + "title": "Hoy Cobre" + }, + { + "artist": "Lady A", + "position": 82, + "title": "Champagne Night" + }, + { + "artist": "Justin Bieber", + "position": 83, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Morgan Wallen", + "position": 84, + "title": "Somebody's Problem" + }, + { + "artist": "BRS Kash", + "position": 85, + "title": "Throat Baby (Go Baby)" + }, + { + "artist": "Morgan Wallen", + "position": 86, + "title": "Still Goin Down" + }, + { + "artist": "Bad Bunny", + "position": 87, + "title": "Maldita Pobreza" + }, + { + "artist": "King Von", + "position": 88, + "title": "Took Her To The O" + }, + { + "artist": "Megan Thee Stallion Featuring Young Thug", + "position": 89, + "title": "Don't Stop" + }, + { + "artist": "SZA Featuring Ty Dolla $ign", + "position": 90, + "title": "Hit Different" + }, + { + "artist": "Jack Harlow", + "position": 91, + "title": "Tyler Herro" + }, + { + "artist": "Harry Styles", + "position": 92, + "title": "Golden" + }, + { + "artist": "Niko Moon", + "position": 93, + "title": "Good Time" + }, + { + "artist": "Bad Bunny", + "position": 94, + "title": "La Droga" + }, + { + "artist": "Carrie Underwood", + "position": 95, + "title": "Favorite Time Of Year" + }, + { + "artist": "Saweetie Featuring Jhene Aiko", + "position": 96, + "title": "Back To The Streets" + }, + { + "artist": "Polo G", + "position": 97, + "title": "Martin & Gina" + }, + { + "artist": "Kelsea Ballerini", + "position": 98, + "title": "Hole In The Bottle" + }, + { + "artist": "The Kid LAROI", + "position": 99, + "title": "So Done" + }, + { + "artist": "Karol G", + "position": 100, + "title": "Bichota" + } + ], + "title": "2020 - Hot 100" + }, + { + "songs": [ + { + "artist": "Gabby Barrett", + "position": 1, + "title": "I Hope" + }, + { + "artist": "Morgan Wallen", + "position": 2, + "title": "More Than My Hometown" + }, + { + "artist": "Blake Shelton Featuring Gwen Stefani", + "position": 3, + "title": "Happy Anywhere" + }, + { + "artist": "Parker McCollum", + "position": 4, + "title": "Pretty Heart" + }, + { + "artist": "Luke Combs", + "position": 5, + "title": "Better Together" + }, + { + "artist": "Chris Lane", + "position": 6, + "title": "Big, Big Plans" + }, + { + "artist": "Lee Brice", + "position": 7, + "title": "One Of Them Girls" + }, + { + "artist": "HARDY Featuring Lauren Alaina & Devin Dawson", + "position": 8, + "title": "One Beer" + }, + { + "artist": "Russell Dickerson", + "position": 9, + "title": "Love You Like I Used To" + }, + { + "artist": "Chris Stapleton", + "position": 10, + "title": "Starting Over" + }, + { + "artist": "Jon Pardi", + "position": 11, + "title": "Ain't Always The Cowboy" + }, + { + "artist": "Trey Lewis", + "position": 12, + "title": "Dicked Down In Dallas" + }, + { + "artist": "Dan + Shay", + "position": 13, + "title": "I Should Probably Go To Bed" + }, + { + "artist": "Luke Combs", + "position": 14, + "title": "Forever After All" + }, + { + "artist": "Kelly Clarkson & Brett Eldredge", + "position": 15, + "title": "Under The Mistletoe" + }, + { + "artist": "Morgan Wallen", + "position": 16, + "title": "7 Summers" + }, + { + "artist": "Lady A", + "position": 17, + "title": "Champagne Night" + }, + { + "artist": "Morgan Wallen", + "position": 18, + "title": "Somebody's Problem" + }, + { + "artist": "Morgan Wallen", + "position": 19, + "title": "Still Goin Down" + }, + { + "artist": "Niko Moon", + "position": 20, + "title": "Good Time" + }, + { + "artist": "Carrie Underwood", + "position": 21, + "title": "Favorite Time Of Year" + }, + { + "artist": "Kelsea Ballerini", + "position": 22, + "title": "Hole In The Bottle" + }, + { + "artist": "Kenny Chesney", + "position": 23, + "title": "Happy Does" + }, + { + "artist": "Thomas Rhett", + "position": 24, + "title": "What's Your Country Song" + }, + { + "artist": "Darius Rucker", + "position": 25, + "title": "Beers And Sunshine" + }, + { + "artist": "Carrie Underwood", + "position": 26, + "title": "Silent Night" + }, + { + "artist": "Florida Georgia Line", + "position": 27, + "title": "Long Live" + }, + { + "artist": "Gabby Barrett", + "position": 28, + "title": "The Good Ones" + }, + { + "artist": "Luke Bryan", + "position": 29, + "title": "Down To One" + }, + { + "artist": "Carrie Underwood & John Legend", + "position": 30, + "title": "Hallelujah" + }, + { + "artist": "Keith Urban Duet With P!nk", + "position": 31, + "title": "One Too Many" + }, + { + "artist": "Dustin Lynch", + "position": 32, + "title": "Momma's House" + }, + { + "artist": "Jordan Davis", + "position": 33, + "title": "Almost Maybes" + }, + { + "artist": "Dan + Shay", + "position": 34, + "title": "Take Me Home For Christmas" + }, + { + "artist": "Parmalee x Blanco Brown", + "position": 35, + "title": "Just The Way" + }, + { + "artist": "Morgan Wallen", + "position": 36, + "title": "Livin' The Dream" + }, + { + "artist": "Rascal Flatts", + "position": 37, + "title": "How They Remember You" + }, + { + "artist": "Eric Church", + "position": 38, + "title": "Hell Of A View" + }, + { + "artist": "Brett Young", + "position": 39, + "title": "Lady" + }, + { + "artist": "Sam Hunt", + "position": 40, + "title": "Breaking Up Was Easy In The 90's" + }, + { + "artist": "Dierks Bentley", + "position": 41, + "title": "Gone" + }, + { + "artist": "Little Big Town", + "position": 42, + "title": "Wine, Beer, Whiskey" + }, + { + "artist": "Miranda Lambert", + "position": 43, + "title": "Settling Down" + }, + { + "artist": "Tenille Arts", + "position": 44, + "title": "Somebody Like That" + }, + { + "artist": "Brothers Osborne", + "position": 45, + "title": "All Night" + }, + { + "artist": "Garth Brooks & Trisha Yearwood", + "position": 46, + "title": "Shallow" + }, + { + "artist": "Maren Morris", + "position": 47, + "title": "To Hell & Back" + }, + { + "artist": "Taylor Swift", + "position": 48, + "title": "Betty" + }, + { + "artist": "Nelly & Florida Georgia Line", + "position": 49, + "title": "Lil Bit" + }, + { + "artist": "Dylan Scott", + "position": 50, + "title": "Nobody" + } + ], + "title": "2020 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Panic! At The Disco", + "position": 1, + "title": "High Hopes" + }, + { + "artist": "Panic! At The Disco", + "position": 2, + "title": "Hey Look Ma, I Made It" + }, + { + "artist": "Marshmello, YUNGBLUD & blackbear", + "position": 3, + "title": "Tongue Tied" + }, + { + "artist": "Coldplay", + "position": 4, + "title": "Orphans" + }, + { + "artist": "twenty one pilots", + "position": 5, + "title": "The Hype" + }, + { + "artist": "Highly Suspect", + "position": 6, + "title": "16" + }, + { + "artist": "Machine Gun Kelly X YUNGBLUD X Travis Barker", + "position": 7, + "title": "I Think I'm OKAY" + }, + { + "artist": "Meg Myers", + "position": 8, + "title": "Running Up That Hill" + }, + { + "artist": "Weezer", + "position": 9, + "title": "The End Of The Game" + }, + { + "artist": "Ozzy Osbourne", + "position": 10, + "title": "Under The Graveyard" + }, + { + "artist": "Green Day", + "position": 11, + "title": "Father Of All..." + }, + { + "artist": "Cage The Elephant", + "position": 12, + "title": "Social Cues" + }, + { + "artist": "Rex Orange County", + "position": 13, + "title": "10/10" + }, + { + "artist": "Cory Marks Featuring Travis Tritt, Ivan Moody & Mick Mars", + "position": 14, + "title": "Outlaws & Outsiders" + }, + { + "artist": "Dermot Kennedy", + "position": 15, + "title": "Outnumbered" + }, + { + "artist": "Tool", + "position": 16, + "title": "Fear Inoculum" + }, + { + "artist": "White Reaper", + "position": 17, + "title": "Might Be Right" + }, + { + "artist": "girl in red", + "position": 18, + "title": "we fell in love in october" + }, + { + "artist": "Fall Out Boy Featuring Wyclef Jean", + "position": 19, + "title": "Dear Future Self (Hands Up)" + }, + { + "artist": "Local Natives", + "position": 20, + "title": "When Am I Gonna Lose You" + }, + { + "artist": "Bad Wolves", + "position": 21, + "title": "Killing Me Slowly" + }, + { + "artist": "AJR", + "position": 22, + "title": "Dear Winter" + }, + { + "artist": "The Black Keys", + "position": 23, + "title": "Go" + }, + { + "artist": "Neon Trees", + "position": 24, + "title": "Used To Like" + }, + { + "artist": "Blink-182", + "position": 25, + "title": "I Really Wish I Hated You" + }, + { + "artist": "Badflower", + "position": 26, + "title": "The Jester" + }, + { + "artist": "YUNGBLUD Featuring Dan Reynolds", + "position": 27, + "title": "Original Me" + }, + { + "artist": "Mumford & Sons", + "position": 28, + "title": "Blind Leading The Blind" + }, + { + "artist": "Tame Impala", + "position": 29, + "title": "It Might Be Time" + }, + { + "artist": "Papa Roach", + "position": 30, + "title": "Come Around" + }, + { + "artist": "Bring Me The Horizon", + "position": 31, + "title": "Ludens" + }, + { + "artist": "Dayglow", + "position": 32, + "title": "Can I Call You Tonight?" + }, + { + "artist": "Skillet", + "position": 33, + "title": "Legendary" + }, + { + "artist": "The Lumineers", + "position": 34, + "title": "Life In The City" + }, + { + "artist": "Dinosaur Pile-Up", + "position": 35, + "title": "Back Foot" + }, + { + "artist": "AWOLNATION", + "position": 36, + "title": "The Best" + }, + { + "artist": "ONE OK ROCK", + "position": 37, + "title": "Stand Out Fit In" + }, + { + "artist": "Rex Orange County", + "position": 38, + "title": "Pluto Projector" + }, + { + "artist": "I Prevail", + "position": 39, + "title": "Hurricane" + }, + { + "artist": "Coldplay", + "position": 40, + "title": "Everyday Life" + }, + { + "artist": "guardin", + "position": 41, + "title": "i think you're really cool" + }, + { + "artist": "The Unlikely Candidates", + "position": 42, + "title": "Novocaine" + }, + { + "artist": "Beach Bunny", + "position": 43, + "title": "Prom Queen" + }, + { + "artist": "YUNGBLUD", + "position": 44, + "title": "Parents" + }, + { + "artist": "Falling In Reverse", + "position": 45, + "title": "Popular Monster" + }, + { + "artist": "Cold War Kids", + "position": 46, + "title": "Complainer" + }, + { + "artist": "Beck", + "position": 47, + "title": "Uneventful Days" + }, + { + "artist": "HAIM", + "position": 48, + "title": "Now I'm In It" + }, + { + "artist": "X Ambassadors", + "position": 49, + "title": "Hold You Down" + }, + { + "artist": "Of Monsters And Men", + "position": 50, + "title": "Wars" + } + ], + "title": "2019 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Lizzo", + "position": 1, + "title": "Good As Hell" + }, + { + "artist": "Chris Brown Featuring Drake", + "position": 2, + "title": "No Guidance" + }, + { + "artist": "Lizzo", + "position": 3, + "title": "Truth Hurts" + }, + { + "artist": "Lil Nas X", + "position": 4, + "title": "Panini" + }, + { + "artist": "Arizona Zervas", + "position": 5, + "title": "Roxanne" + }, + { + "artist": "Travis Scott", + "position": 6, + "title": "HIGHEST IN THE ROOM" + }, + { + "artist": "Lil Baby", + "position": 7, + "title": "Woah" + }, + { + "artist": "DaBaby", + "position": 8, + "title": "BOP" + }, + { + "artist": "Mustard Featuring Roddy Ricch", + "position": 9, + "title": "Ballin'" + }, + { + "artist": "Young Thug Featuring Gunna", + "position": 10, + "title": "Hot" + }, + { + "artist": "Lil Tecca", + "position": 11, + "title": "Ran$om" + }, + { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "position": 12, + "title": "Bandit" + }, + { + "artist": "Wale Featuring Jeremih", + "position": 13, + "title": "On Chill" + }, + { + "artist": "Post Malone Featuring Young Thug", + "position": 14, + "title": "Goodbyes" + }, + { + "artist": "Lil Baby & DaBaby", + "position": 15, + "title": "Baby" + }, + { + "artist": "Summer Walker", + "position": 16, + "title": "Playing Games" + }, + { + "artist": "Chris Brown Featuring Gunna", + "position": 17, + "title": "Heat" + }, + { + "artist": "blackbear", + "position": 18, + "title": "Hot Girl Bummer" + }, + { + "artist": "NF", + "position": 19, + "title": "Time" + }, + { + "artist": "Tory Lanez & T-Pain", + "position": 20, + "title": "Jerry Sprunger" + }, + { + "artist": "Drake Featuring Rick Ross", + "position": 21, + "title": "Money In The Grave" + }, + { + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "position": 22, + "title": "Reply" + }, + { + "artist": "Doja Cat & Tyga", + "position": 23, + "title": "Juicy" + }, + { + "artist": "Kanye West", + "position": 24, + "title": "Follow God" + }, + { + "artist": "Rod Wave", + "position": 25, + "title": "Heart On Ice" + }, + { + "artist": "Jhene Aiko Featuring Big Sean", + "position": 26, + "title": "None Of Your Concern" + }, + { + "artist": "YNW Melly & 9lokknine", + "position": 27, + "title": "223's" + }, + { + "artist": "NLE Choppa", + "position": 28, + "title": "Camelot" + }, + { + "artist": "DaBaby", + "position": 29, + "title": "VIBEZ" + }, + { + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "position": 30, + "title": "Leave Em Alone" + }, + { + "artist": "DaBaby Featuring Offset", + "position": 31, + "title": "Baby Sitter" + }, + { + "artist": "Tory Lanez Featuring Chris Brown", + "position": 32, + "title": "The Take" + }, + { + "artist": "Post Malone Featuring DaBaby", + "position": 33, + "title": "Enemies" + }, + { + "artist": "Trevor Daniel", + "position": 34, + "title": "Falling" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 35, + "title": "Make No Sense" + }, + { + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "position": 36, + "title": "Hot Girl Summer" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 37, + "title": "Lonely Child" + }, + { + "artist": "Lil Mosey x Gunna", + "position": 38, + "title": "Stuck In A Dream" + }, + { + "artist": "Joji", + "position": 39, + "title": "Slow Dancing In The Dark" + }, + { + "artist": "Tory Lanez Featuring Snoop Dogg", + "position": 40, + "title": "Beauty In The Benz" + }, + { + "artist": "DaniLeigh Featuring Chris Brown", + "position": 41, + "title": "Easy" + }, + { + "artist": "Khalid", + "position": 42, + "title": "Up All Night" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 43, + "title": "Self Control" + }, + { + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "position": 44, + "title": "Hot Shower" + }, + { + "artist": "Trippie Redd Featuring DaBaby", + "position": 45, + "title": "Death" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 46, + "title": "Hot Now" + }, + { + "artist": "Summer Walker & Usher", + "position": 47, + "title": "Come Thru" + }, + { + "artist": "Tory Lanez Featuring Jagged Edge & Jermaine Dupri", + "position": 48, + "title": "The Trade" + }, + { + "artist": "Russ & BIA", + "position": 49, + "title": "BEST ON EARTH" + }, + { + "artist": "Alicia Keys Featuring Miguel", + "position": 50, + "title": "Show Me Love" + } + ], + "title": "2019 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Lizzo", + "position": 1, + "title": "Good As Hell" + }, + { + "artist": "Post Malone", + "position": 2, + "title": "Circles" + }, + { + "artist": "Lewis Capaldi", + "position": 3, + "title": "Someone You Loved" + }, + { + "artist": "Jonas Brothers", + "position": 4, + "title": "Only Human" + }, + { + "artist": "SHAED", + "position": 5, + "title": "Trampoline" + }, + { + "artist": "Ed Sheeran Featuring Khalid", + "position": 6, + "title": "Beautiful People" + }, + { + "artist": "Lizzo", + "position": 7, + "title": "Truth Hurts" + }, + { + "artist": "Maroon 5", + "position": 8, + "title": "Memories" + }, + { + "artist": "Selena Gomez", + "position": 9, + "title": "Lose You To Love Me" + }, + { + "artist": "Sam Smith", + "position": 10, + "title": "How Do You Sleep?" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 11, + "title": "Senorita" + }, + { + "artist": "NF", + "position": 12, + "title": "Time" + }, + { + "artist": "Lil Nas X", + "position": 13, + "title": "Panini" + }, + { + "artist": "Halsey", + "position": 14, + "title": "Graveyard" + }, + { + "artist": "Dan + Shay & Justin Bieber", + "position": 15, + "title": "10,000 Hours" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "Lover" + }, + { + "artist": "Marshmello & Kane Brown", + "position": 17, + "title": "One Thing Right" + }, + { + "artist": "Dua Lipa", + "position": 18, + "title": "Don't Start Now" + }, + { + "artist": "Tones And I", + "position": 19, + "title": "Dance Monkey" + }, + { + "artist": "Billie Eilish", + "position": 20, + "title": "All The Good Girls Go To Hell" + }, + { + "artist": "Niall Horan", + "position": 21, + "title": "Nice To Meet Ya" + }, + { + "artist": "Camila Cabello", + "position": 22, + "title": "Liar" + }, + { + "artist": "Why Don't We", + "position": 23, + "title": "What Am I" + }, + { + "artist": "blackbear", + "position": 24, + "title": "Hot Girl Bummer" + }, + { + "artist": "Saweetie", + "position": 25, + "title": "My Type" + }, + { + "artist": "Kesha Featuring Big Freedia", + "position": 26, + "title": "Raising Hell" + }, + { + "artist": "Diplo Presents Thomas Wesley With Jonas Brothers", + "position": 27, + "title": "Lonely" + }, + { + "artist": "5 Seconds Of Summer", + "position": 28, + "title": "Teeth" + }, + { + "artist": "French Montana Featuring Post Malone, Cardi B & Rvssian", + "position": 29, + "title": "Writing On The Wall" + }, + { + "artist": "Arizona Zervas", + "position": 30, + "title": "Roxanne" + }, + { + "artist": "AJ Mitchell & Ava Max", + "position": 31, + "title": "Slow Dance" + }, + { + "artist": "Travis Scott", + "position": 32, + "title": "HIGHEST IN THE ROOM" + }, + { + "artist": "Lauv Featuring Anne-Marie", + "position": 33, + "title": "fuck, i'm lonely" + }, + { + "artist": "Chris Brown Featuring Drake", + "position": 34, + "title": "No Guidance" + }, + { + "artist": "BTS Featuring Lauv", + "position": 35, + "title": "Make It Right" + }, + { + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "position": 36, + "title": "Take What You Want" + }, + { + "artist": "Loud Luxury And Bryce Vine", + "position": 37, + "title": "I'm Not Alright" + }, + { + "artist": "Charlie Puth", + "position": 38, + "title": "Mother" + }, + { + "artist": "Public", + "position": 39, + "title": "Make You Mine" + }, + { + "artist": "Zedd & Kehlani", + "position": 40, + "title": "Good Thing" + } + ], + "title": "2019 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Post Malone", + "position": 1, + "title": "Circles" + }, + { + "artist": "Lewis Capaldi", + "position": 2, + "title": "Someone You Loved" + }, + { + "artist": "Lizzo", + "position": 3, + "title": "Good As Hell" + }, + { + "artist": "Maroon 5", + "position": 4, + "title": "Memories" + }, + { + "artist": "Selena Gomez", + "position": 5, + "title": "Lose You To Love Me" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 6, + "title": "Senorita" + }, + { + "artist": "Chris Brown Featuring Drake", + "position": 7, + "title": "No Guidance" + }, + { + "artist": "Billie Eilish", + "position": 8, + "title": "everything i wanted" + }, + { + "artist": "Dan + Shay & Justin Bieber", + "position": 9, + "title": "10,000 Hours" + }, + { + "artist": "Lizzo", + "position": 10, + "title": "Truth Hurts" + }, + { + "artist": "Lil Nas X", + "position": 11, + "title": "Panini" + }, + { + "artist": "Arizona Zervas", + "position": 12, + "title": "Roxanne" + }, + { + "artist": "SHAED", + "position": 13, + "title": "Trampoline" + }, + { + "artist": "Travis Scott", + "position": 14, + "title": "HIGHEST IN THE ROOM" + }, + { + "artist": "Taylor Swift", + "position": 15, + "title": "Lover" + }, + { + "artist": "Lil Baby", + "position": 16, + "title": "Woah" + }, + { + "artist": "Billie Eilish", + "position": 17, + "title": "Bad Guy" + }, + { + "artist": "DaBaby", + "position": 18, + "title": "BOP" + }, + { + "artist": "Tones And I", + "position": 19, + "title": "Dance Monkey" + }, + { + "artist": "Mustard Featuring Roddy Ricch", + "position": 20, + "title": "Ballin'" + }, + { + "artist": "Young Thug Featuring Gunna", + "position": 21, + "title": "Hot" + }, + { + "artist": "Old Dominion", + "position": 22, + "title": "One Man Band" + }, + { + "artist": "Ed Sheeran Featuring Khalid", + "position": 23, + "title": "Beautiful People" + }, + { + "artist": "Jonas Brothers", + "position": 24, + "title": "Only Human" + }, + { + "artist": "Luke Combs", + "position": 25, + "title": "Even Though I'm Leaving" + }, + { + "artist": "Lil Tecca", + "position": 26, + "title": "Ran$om" + }, + { + "artist": "Lil Nas X Featuring Billy Ray Cyrus", + "position": 27, + "title": "Old Town Road" + }, + { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "position": 28, + "title": "Bandit" + }, + { + "artist": "Wale Featuring Jeremih", + "position": 29, + "title": "On Chill" + }, + { + "artist": "Ed Sheeran & Justin Bieber", + "position": 30, + "title": "I Don't Care" + }, + { + "artist": "Mariah Carey", + "position": 31, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Khalid", + "position": 32, + "title": "Talk" + }, + { + "artist": "Post Malone Featuring Young Thug", + "position": 33, + "title": "Goodbyes" + }, + { + "artist": "Lil Baby & DaBaby", + "position": 34, + "title": "Baby" + }, + { + "artist": "Sam Smith", + "position": 35, + "title": "How Do You Sleep?" + }, + { + "artist": "Summer Walker", + "position": 36, + "title": "Playing Games" + }, + { + "artist": "Chris Brown Featuring Gunna", + "position": 37, + "title": "Heat" + }, + { + "artist": "Jonas Brothers", + "position": 38, + "title": "Sucker" + }, + { + "artist": "Halsey", + "position": 39, + "title": "Graveyard" + }, + { + "artist": "DaBaby", + "position": 40, + "title": "Suge" + }, + { + "artist": "blackbear", + "position": 41, + "title": "Hot Girl Bummer" + }, + { + "artist": "Dua Lipa", + "position": 42, + "title": "Don't Start Now" + }, + { + "artist": "NF", + "position": 43, + "title": "Time" + }, + { + "artist": "Tory Lanez & T-Pain", + "position": 44, + "title": "Jerry Sprunger" + }, + { + "artist": "Marshmello & Kane Brown", + "position": 45, + "title": "One Thing Right" + }, + { + "artist": "Drake Featuring Rick Ross", + "position": 46, + "title": "Money In The Grave" + }, + { + "artist": "Lady Antebellum", + "position": 47, + "title": "What If I Never Get Over You" + }, + { + "artist": "Sam Smith & Normani", + "position": 48, + "title": "Dancing With A Stranger" + }, + { + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "position": 49, + "title": "Reply" + }, + { + "artist": "Maren Morris", + "position": 50, + "title": "The Bones" + }, + { + "artist": "Doja Cat & Tyga", + "position": 51, + "title": "Juicy" + }, + { + "artist": "Kanye West", + "position": 52, + "title": "Follow God" + }, + { + "artist": "Thomas Rhett", + "position": 53, + "title": "Remember You Young" + }, + { + "artist": "Rod Wave", + "position": 54, + "title": "Heart On Ice" + }, + { + "artist": "Jhene Aiko Featuring Big Sean", + "position": 55, + "title": "None Of Your Concern" + }, + { + "artist": "YNW Melly & 9lokknine", + "position": 56, + "title": "223's" + }, + { + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "position": 57, + "title": "Take What You Want" + }, + { + "artist": "NLE Choppa", + "position": 58, + "title": "Camelot" + }, + { + "artist": "DaBaby", + "position": 59, + "title": "VIBEZ" + }, + { + "artist": "Harry Styles", + "position": 60, + "title": "Watermelon Sugar" + }, + { + "artist": "Matt Stell", + "position": 61, + "title": "Prayed For You" + }, + { + "artist": "Sam Hunt", + "position": 62, + "title": "Kinfolks" + }, + { + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "position": 63, + "title": "Leave Em Alone" + }, + { + "artist": "DaBaby Featuring Offset", + "position": 64, + "title": "Baby Sitter" + }, + { + "artist": "Keith Urban", + "position": 65, + "title": "We Were" + }, + { + "artist": "Tory Lanez Featuring Chris Brown", + "position": 66, + "title": "The Take" + }, + { + "artist": "Jon Pardi", + "position": 67, + "title": "Heartache Medication" + }, + { + "artist": "Post Malone Featuring DaBaby", + "position": 68, + "title": "Enemies" + }, + { + "artist": "Ellie Goulding & Juice WRLD", + "position": 69, + "title": "Hate Me" + }, + { + "artist": "Dustin Lynch", + "position": 70, + "title": "Ridin' Roads" + }, + { + "artist": "Niall Horan", + "position": 71, + "title": "Nice To Meet Ya" + }, + { + "artist": "Camila Cabello", + "position": 72, + "title": "Liar" + }, + { + "artist": "Russell Dickerson", + "position": 73, + "title": "Every Little Thing" + }, + { + "artist": "Kenny Chesney", + "position": 74, + "title": "Tip Of My Tongue" + }, + { + "artist": "Trevor Daniel", + "position": 75, + "title": "Falling" + }, + { + "artist": "Billie Eilish", + "position": 76, + "title": "All The Good Girls Go To Hell" + }, + { + "artist": "Harry Styles", + "position": 77, + "title": "Lights Up" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 78, + "title": "Make No Sense" + }, + { + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "position": 79, + "title": "Hot Girl Summer" + }, + { + "artist": "Chris Lane", + "position": 80, + "title": "I Don't Know About You" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 81, + "title": "Lonely Child" + }, + { + "artist": "Lil Mosey x Gunna", + "position": 82, + "title": "Stuck In A Dream" + }, + { + "artist": "Kelsea Ballerini", + "position": 83, + "title": "homecoming queen?" + }, + { + "artist": "Chris Janson", + "position": 84, + "title": "Good Vibes" + }, + { + "artist": "Joji", + "position": 85, + "title": "Slow Dancing In The Dark" + }, + { + "artist": "J Balvin & Bad Bunny", + "position": 86, + "title": "La Cancion" + }, + { + "artist": "Tory Lanez Featuring Snoop Dogg", + "position": 87, + "title": "Beauty In The Benz" + }, + { + "artist": "DaniLeigh Featuring Chris Brown", + "position": 88, + "title": "Easy" + }, + { + "artist": "Khalid", + "position": 89, + "title": "Up All Night" + }, + { + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "position": 90, + "title": "Heartless" + }, + { + "artist": "Y2K & bbno$", + "position": 91, + "title": "Lalala" + }, + { + "artist": "Karol G & Nicki Minaj", + "position": 92, + "title": "Tusa" + }, + { + "artist": "Jason Aldean", + "position": 93, + "title": "We Back " + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 94, + "title": "Self Control" + }, + { + "artist": "Kane Brown", + "position": 95, + "title": "Homesick" + }, + { + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "position": 96, + "title": "Hot Shower" + }, + { + "artist": "Trippie Redd Featuring DaBaby", + "position": 97, + "title": "Death" + }, + { + "artist": "Ant Saunders", + "position": 98, + "title": "Yellow Hearts" + }, + { + "artist": "Blake Shelton Featuring Trace Adkins", + "position": 99, + "title": "Hell Right" + }, + { + "artist": "The Black Eyed Peas X J Balvin", + "position": 100, + "title": "RITMO (Bad Boys For Life)" + } + ], + "title": "2019 - Hot 100" + }, + { + "songs": [ + { + "artist": "Dan + Shay & Justin Bieber", + "position": 1, + "title": "10,000 Hours" + }, + { + "artist": "Old Dominion", + "position": 2, + "title": "One Man Band" + }, + { + "artist": "Luke Combs", + "position": 3, + "title": "Even Though I'm Leaving" + }, + { + "artist": "Marshmello & Kane Brown", + "position": 4, + "title": "One Thing Right" + }, + { + "artist": "Lady Antebellum", + "position": 5, + "title": "What If I Never Get Over You" + }, + { + "artist": "Maren Morris", + "position": 6, + "title": "The Bones" + }, + { + "artist": "Thomas Rhett", + "position": 7, + "title": "Remember You Young" + }, + { + "artist": "Matt Stell", + "position": 8, + "title": "Prayed For You" + }, + { + "artist": "Sam Hunt", + "position": 9, + "title": "Kinfolks" + }, + { + "artist": "Keith Urban", + "position": 10, + "title": "We Were" + }, + { + "artist": "Jon Pardi", + "position": 11, + "title": "Heartache Medication" + }, + { + "artist": "Dustin Lynch", + "position": 12, + "title": "Ridin' Roads" + }, + { + "artist": "Kenny Chesney", + "position": 13, + "title": "Tip Of My Tongue" + }, + { + "artist": "Kelsea Ballerini", + "position": 14, + "title": "homecoming queen?" + }, + { + "artist": "Blanco Brown", + "position": 15, + "title": "The Git Up" + }, + { + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "position": 16, + "title": "Heartless" + }, + { + "artist": "Jason Aldean", + "position": 17, + "title": "We Back " + }, + { + "artist": "Kane Brown", + "position": 18, + "title": "Homesick" + }, + { + "artist": "Blake Shelton Featuring Trace Adkins", + "position": 19, + "title": "Hell Right" + }, + { + "artist": "Luke Bryan", + "position": 20, + "title": "What She Wants Tonight" + }, + { + "artist": "Gabby Barrett", + "position": 21, + "title": "I Hope" + }, + { + "artist": "Miranda Lambert", + "position": 22, + "title": "It All Comes Out In The Wash" + }, + { + "artist": "Jimmie Allen", + "position": 23, + "title": "Make Me Want To" + }, + { + "artist": "Ingrid Andress", + "position": 24, + "title": "More Hearts Than Mine" + }, + { + "artist": "Garth Brooks & Blake Shelton", + "position": 25, + "title": "Dive Bar" + }, + { + "artist": "Jordan Davis", + "position": 26, + "title": "Slow Dance In A Parking Lot" + }, + { + "artist": "Luke Combs", + "position": 27, + "title": "Better Together" + }, + { + "artist": "Riley Green", + "position": 28, + "title": "I Wish Grandpas Never Died" + }, + { + "artist": "Ryan Hurd", + "position": 29, + "title": "To A T" + }, + { + "artist": "Brett Young", + "position": 30, + "title": "Catch" + }, + { + "artist": "Jake Owen", + "position": 31, + "title": "Homemade" + }, + { + "artist": "Morgan Wallen", + "position": 32, + "title": "Chasin' You" + }, + { + "artist": "Luke Combs & Brooks & Dunn", + "position": 33, + "title": "1, 2 Many" + }, + { + "artist": "Carly Pearce & Lee Brice", + "position": 34, + "title": "I Hope You're Happy Now" + }, + { + "artist": "Luke Combs", + "position": 35, + "title": "What You See Is What You Get" + }, + { + "artist": "Carrie Underwood", + "position": 36, + "title": "Drinking Alone" + }, + { + "artist": "Luke Combs", + "position": 37, + "title": "Refrigerator Door" + }, + { + "artist": "Luke Combs", + "position": 38, + "title": "Reasons" + }, + { + "artist": "Luke Combs", + "position": 39, + "title": "All Over Again" + }, + { + "artist": "Travis Denning", + "position": 40, + "title": "After A Few" + }, + { + "artist": "Luke Combs Featuring Eric Church", + "position": 41, + "title": "Does To Me" + }, + { + "artist": "Maddie & Tae", + "position": 42, + "title": "Die From A Broken Heart" + }, + { + "artist": "Michael Ray", + "position": 43, + "title": "Her World Or Mine" + }, + { + "artist": "Chris Young", + "position": 44, + "title": "Drowning" + }, + { + "artist": "Kane Brown", + "position": 45, + "title": "For My Daughter" + }, + { + "artist": "Luke Combs", + "position": 46, + "title": "Moon Over Mexico" + }, + { + "artist": "Luke Combs", + "position": 47, + "title": "Nothing Like You" + }, + { + "artist": "Luke Combs", + "position": 48, + "title": "Lovin' On You" + }, + { + "artist": "Caylee Hammack", + "position": 49, + "title": "Family Tree" + }, + { + "artist": "Eric Church", + "position": 50, + "title": "Monsters" + } + ], + "title": "2019 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Panic! At The Disco", + "position": 1, + "title": "High Hopes" + }, + { + "artist": "Imagine Dragons", + "position": 2, + "title": "Natural" + }, + { + "artist": "lovelytheband", + "position": 3, + "title": "Broken" + }, + { + "artist": "Queen", + "position": 4, + "title": "Bohemian Rhapsody" + }, + { + "artist": "Queen", + "position": 5, + "title": "Somebody To Love" + }, + { + "artist": "Queen", + "position": 6, + "title": "Another One Bites The Dust" + }, + { + "artist": "Queen", + "position": 7, + "title": "We Will Rock You" + }, + { + "artist": "Queen", + "position": 8, + "title": "Don't Stop Me Now" + }, + { + "artist": "twenty one pilots", + "position": 9, + "title": "My Blood" + }, + { + "artist": "Queen & David Bowie", + "position": 10, + "title": "Under Pressure" + }, + { + "artist": "Weezer", + "position": 11, + "title": "Africa" + }, + { + "artist": "Queen", + "position": 12, + "title": "Killer Queen" + }, + { + "artist": "Queen", + "position": 13, + "title": "We Are The Champions" + }, + { + "artist": "Imagine Dragons", + "position": 14, + "title": "Bad Liar" + }, + { + "artist": "Mumford & Sons", + "position": 15, + "title": "Guiding Light" + }, + { + "artist": "Imagine Dragons", + "position": 16, + "title": "Zero" + }, + { + "artist": "Queen", + "position": 17, + "title": "I Want To Break Free" + }, + { + "artist": "flora cash", + "position": 18, + "title": "You're Somebody Else" + }, + { + "artist": "Queen", + "position": 19, + "title": "Radio Ga Ga" + }, + { + "artist": "Queen", + "position": 20, + "title": "Crazy Little Thing Called Love" + }, + { + "artist": "Queen", + "position": 21, + "title": "Fat Bottomed Girls" + }, + { + "artist": "Panic! At The Disco", + "position": 22, + "title": "The Greatest Show" + }, + { + "artist": "Queen", + "position": 23, + "title": "Love Of My Life" + }, + { + "artist": "George Ezra", + "position": 24, + "title": "Shotgun" + }, + { + "artist": "Shinedown", + "position": 25, + "title": "Get Up" + }, + { + "artist": "The Revivalists", + "position": 26, + "title": "All My Friends" + }, + { + "artist": "The Interrupters", + "position": 27, + "title": "She's Kerosene" + }, + { + "artist": "Bad Wolves Featuring DIAMANTE", + "position": 28, + "title": "Hear Me Now" + }, + { + "artist": "Disturbed", + "position": 29, + "title": "Are You Ready" + }, + { + "artist": "Hozier", + "position": 30, + "title": "Movement" + }, + { + "artist": "The Struts", + "position": 31, + "title": "Body Talks" + }, + { + "artist": "The Glorious Sons", + "position": 32, + "title": "S.O.S. (Sawed Off Shotgun)" + }, + { + "artist": "Muse", + "position": 33, + "title": "Pressure" + }, + { + "artist": "Godsmack", + "position": 34, + "title": "When Legends Rise" + }, + { + "artist": "Queen", + "position": 35, + "title": "Hammer To Fall (Live Aid)" + }, + { + "artist": "Imagine Dragons", + "position": 36, + "title": "Machine" + }, + { + "artist": "The 1975", + "position": 37, + "title": "Love It If We Made It" + }, + { + "artist": "Queen", + "position": 38, + "title": "Radio Ga Ga (Live Aid)" + }, + { + "artist": "Slipknot", + "position": 39, + "title": "All Out Life" + }, + { + "artist": "Young The Giant", + "position": 40, + "title": "Superposition" + }, + { + "artist": "twenty one pilots", + "position": 41, + "title": "Chlorine" + }, + { + "artist": "Mumford & Sons", + "position": 42, + "title": "42" + }, + { + "artist": "Foster The People", + "position": 43, + "title": "Worst Nites" + }, + { + "artist": "lovelytheband", + "position": 44, + "title": "These Are My Friends" + }, + { + "artist": "Greta Van Fleet", + "position": 45, + "title": "When The Curtain Falls" + }, + { + "artist": "Ghost", + "position": 46, + "title": "Dance Macabre" + }, + { + "artist": "Queen", + "position": 47, + "title": "Ay-Oh (Live Aid)" + }, + { + "artist": "Bring Me The Horizon", + "position": 48, + "title": "Mantra" + }, + { + "artist": "Portugal. The Man", + "position": 49, + "title": "Tidal Wave" + }, + { + "artist": "Elle King", + "position": 50, + "title": "Shame" + } + ], + "title": "2018 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Travis Scott", + "position": 1, + "title": "Sicko Mode" + }, + { + "artist": "Sheck Wes", + "position": 2, + "title": "Mo Bamba" + }, + { + "artist": "Kodak Black Featuring Travis Scott & Offset", + "position": 3, + "title": "ZEZE" + }, + { + "artist": "Lil Baby & Gunna", + "position": 4, + "title": "Drip Too Hard" + }, + { + "artist": "Juice WRLD", + "position": 5, + "title": "Lucid Dreams" + }, + { + "artist": "Post Malone", + "position": 6, + "title": "Better Now" + }, + { + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "position": 7, + "title": "Wake Up In The Sky" + }, + { + "artist": "Ella Mai", + "position": 8, + "title": "Trip" + }, + { + "artist": "Post Malone & Swae Lee", + "position": 9, + "title": "Sunflower (Spider-Man: Into The Spider-Verse)" + }, + { + "artist": "Cardi B", + "position": 10, + "title": "Money" + }, + { + "artist": "Flipp Dinero", + "position": 11, + "title": "Leave Me Alone" + }, + { + "artist": "Khalid", + "position": 12, + "title": "Better" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "position": 13, + "title": "FEFE" + }, + { + "artist": "Drake", + "position": 14, + "title": "In My Feelings" + }, + { + "artist": "Lil Wayne", + "position": 15, + "title": "Uproar" + }, + { + "artist": "Drake", + "position": 16, + "title": "Nonstop" + }, + { + "artist": "Cardi B Featuring Kehlani", + "position": 17, + "title": "Ring" + }, + { + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "position": 18, + "title": "Dangerous" + }, + { + "artist": "NF", + "position": 19, + "title": "Lie" + }, + { + "artist": "XXXTENTACION", + "position": 20, + "title": "BAD!" + }, + { + "artist": "Juice WRLD", + "position": 21, + "title": "Armed And Dangerous" + }, + { + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "position": 22, + "title": "Arms Around You" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "position": 23, + "title": "MAMA" + }, + { + "artist": "6ix9ine Featuring Tory Lanez", + "position": 24, + "title": "KIKA" + }, + { + "artist": "YG Featuring 2 Chainz, Big Sean & Nicki Minaj", + "position": 25, + "title": "Big Bank" + }, + { + "artist": "6ix9ine Featuring Bobby Shmurda", + "position": 26, + "title": "STOOPID" + }, + { + "artist": "6ix9ine Featuring Lil Baby", + "position": 27, + "title": "TIC TOC" + }, + { + "artist": "Lil Baby", + "position": 28, + "title": "Close Friends" + }, + { + "artist": "Future & Juice WRLD", + "position": 29, + "title": "Fine China" + }, + { + "artist": "Trippie Redd", + "position": 30, + "title": "Topanga" + }, + { + "artist": "Yella Beezy", + "position": 31, + "title": "That's On Me" + }, + { + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "position": 32, + "title": "Smile (Living My Best Life)" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 33, + "title": "10 Freaky Girls" + }, + { + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "position": 34, + "title": "WAKA" + }, + { + "artist": "Trippie Redd Featuring Juice WRLD", + "position": 35, + "title": "1400 / 999 Freestyle" + }, + { + "artist": "French Montana Featuring Drake", + "position": 36, + "title": "No Stylist" + }, + { + "artist": "Tory Lanez & Rich The Kid", + "position": 37, + "title": "Talk To Me" + }, + { + "artist": "Pardison Fontaine Featuring Cardi B", + "position": 38, + "title": "Backin' It Up" + }, + { + "artist": "Tyga & Nicki Minaj", + "position": 39, + "title": "Dip" + }, + { + "artist": "Lil Baby & Gunna Featuring Drake", + "position": 40, + "title": "Never Recover" + }, + { + "artist": "Jacquees", + "position": 41, + "title": "You" + }, + { + "artist": "Metro Boomin Featuring Gunna", + "position": 42, + "title": "Space Cadet" + }, + { + "artist": "Daniel Caesar Featuring H.E.R.", + "position": 43, + "title": "Best Part" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 44, + "title": "Don't Come Out The House" + }, + { + "artist": "Kanye West & Lil Pump", + "position": 45, + "title": "I Love It" + }, + { + "artist": "Lil Mosey", + "position": 46, + "title": "Noticed" + }, + { + "artist": "Quavo", + "position": 47, + "title": "W O R K I N M E" + }, + { + "artist": "Eminem Featuring Joyner Lucas", + "position": 48, + "title": "Lucky You" + }, + { + "artist": "Amine", + "position": 49, + "title": "Reel It In" + }, + { + "artist": "6ix9ine Featuring DJ SPINKING", + "position": 50, + "title": "TATI" + } + ], + "title": "2018 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Marshmello & Bastille", + "position": 1, + "title": "Happier" + }, + { + "artist": "Panic! At The Disco", + "position": 2, + "title": "High Hopes" + }, + { + "artist": "Ariana Grande", + "position": 3, + "title": "Breathin" + }, + { + "artist": "5 Seconds Of Summer", + "position": 4, + "title": "Youngblood" + }, + { + "artist": "Khalid & Normani", + "position": 5, + "title": "Love Lies" + }, + { + "artist": "Halsey", + "position": 6, + "title": "Without Me" + }, + { + "artist": "Benny Blanco, Halsey & Khalid", + "position": 7, + "title": "Eastside" + }, + { + "artist": "NF", + "position": 8, + "title": "Lie" + }, + { + "artist": "Post Malone", + "position": 9, + "title": "Better Now" + }, + { + "artist": "Maroon 5 Featuring Cardi B", + "position": 10, + "title": "Girls Like You" + }, + { + "artist": "Ariana Grande", + "position": 11, + "title": "God Is A Woman" + }, + { + "artist": "Bazzi Featuring Camila Cabello", + "position": 12, + "title": "Beautiful" + }, + { + "artist": "Juice WRLD", + "position": 13, + "title": "Lucid Dreams" + }, + { + "artist": "Ariana Grande", + "position": 14, + "title": "Thank U, Next" + }, + { + "artist": "Post Malone & Swae Lee", + "position": 15, + "title": "Sunflower (Spider-Man: Into The Spider-Verse)" + }, + { + "artist": "lovelytheband", + "position": 16, + "title": "Broken" + }, + { + "artist": "Shawn Mendes X Zedd", + "position": 17, + "title": "Lost In Japan" + }, + { + "artist": "Camila Cabello", + "position": 18, + "title": "Consequences" + }, + { + "artist": "Silk City x Dua Lipa", + "position": 19, + "title": "Electricity" + }, + { + "artist": "Travis Scott", + "position": 20, + "title": "Sicko Mode" + }, + { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "position": 21, + "title": "Close To Me" + }, + { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "position": 22, + "title": "This Feeling" + }, + { + "artist": "Imagine Dragons", + "position": 23, + "title": "Natural" + }, + { + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "position": 24, + "title": "Taki Taki" + }, + { + "artist": "Labrinth, Sia & Diplo Present... LSD", + "position": 25, + "title": "Thunderclouds" + }, + { + "artist": "Khalid", + "position": 26, + "title": "Better" + }, + { + "artist": "Lady Gaga & Bradley Cooper", + "position": 27, + "title": "Shallow" + }, + { + "artist": "Alessia Cara", + "position": 28, + "title": "Trust My Lonely" + }, + { + "artist": "Dean Lewis", + "position": 29, + "title": "Be Alright" + }, + { + "artist": "Drake Featuring Michael Jackson", + "position": 30, + "title": "Don't Matter To Me" + }, + { + "artist": "Dan + Shay", + "position": 31, + "title": "Tequila" + }, + { + "artist": "Why Don't We", + "position": 32, + "title": "8 Letters" + }, + { + "artist": "Zara Larsson", + "position": 33, + "title": "Ruin My Life" + }, + { + "artist": "Loud Luxury Featuring Brando", + "position": 34, + "title": "Body" + }, + { + "artist": "twenty one pilots", + "position": 35, + "title": "My Blood" + }, + { + "artist": "DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo", + "position": 36, + "title": "No Brainer" + }, + { + "artist": "Bad Bunny Featuring Drake", + "position": 37, + "title": "MIA" + }, + { + "artist": "Steve Aoki Featuring BTS", + "position": 38, + "title": "Waste It On Me" + }, + { + "artist": "Lauv Featuring Julia Michaels", + "position": 39, + "title": "There's No Way" + }, + { + "artist": "Lukas Graham", + "position": 40, + "title": "Love Someone" + } + ], + "title": "2018 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Travis Scott", + "position": 1, + "title": "Sicko Mode" + }, + { + "artist": "Ariana Grande", + "position": 2, + "title": "Thank U, Next" + }, + { + "artist": "Marshmello & Bastille", + "position": 3, + "title": "Happier" + }, + { + "artist": "Halsey", + "position": 4, + "title": "Without Me" + }, + { + "artist": "Panic! At The Disco", + "position": 5, + "title": "High Hopes" + }, + { + "artist": "Sheck Wes", + "position": 6, + "title": "Mo Bamba" + }, + { + "artist": "Kodak Black Featuring Travis Scott & Offset", + "position": 7, + "title": "ZEZE" + }, + { + "artist": "Lil Baby & Gunna", + "position": 8, + "title": "Drip Too Hard" + }, + { + "artist": "Maroon 5 Featuring Cardi B", + "position": 9, + "title": "Girls Like You" + }, + { + "artist": "Juice WRLD", + "position": 10, + "title": "Lucid Dreams" + }, + { + "artist": "Post Malone", + "position": 11, + "title": "Better Now" + }, + { + "artist": "5 Seconds Of Summer", + "position": 12, + "title": "Youngblood" + }, + { + "artist": "Ariana Grande", + "position": 13, + "title": "Breathin" + }, + { + "artist": "Mariah Carey", + "position": 14, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "position": 15, + "title": "Wake Up In The Sky" + }, + { + "artist": "Ella Mai", + "position": 16, + "title": "Trip" + }, + { + "artist": "Post Malone & Swae Lee", + "position": 17, + "title": "Sunflower (Spider-Man: Into The Spider-Verse)" + }, + { + "artist": "Benny Blanco, Halsey & Khalid", + "position": 18, + "title": "Eastside" + }, + { + "artist": "Bad Bunny Featuring Drake", + "position": 19, + "title": "MIA" + }, + { + "artist": "Khalid & Normani", + "position": 20, + "title": "Love Lies" + }, + { + "artist": "Andy Williams", + "position": 21, + "title": "It's The Most Wonderful Time Of The Year" + }, + { + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "position": 22, + "title": "Taki Taki" + }, + { + "artist": "Brenda Lee", + "position": 23, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Cardi B", + "position": 24, + "title": "Money" + }, + { + "artist": "Imagine Dragons", + "position": 25, + "title": "Natural" + }, + { + "artist": "Burl Ives", + "position": 26, + "title": "A Holly Jolly Christmas" + }, + { + "artist": "Flipp Dinero", + "position": 27, + "title": "Leave Me Alone" + }, + { + "artist": "Lady Gaga & Bradley Cooper", + "position": 28, + "title": "Shallow" + }, + { + "artist": "Khalid", + "position": 29, + "title": "Better" + }, + { + "artist": "Bazzi Featuring Camila Cabello", + "position": 30, + "title": "Beautiful" + }, + { + "artist": "Cardi B, Bad Bunny & J Balvin", + "position": 31, + "title": "I Like It" + }, + { + "artist": "lovelytheband", + "position": 32, + "title": "Broken" + }, + { + "artist": "Bobby Helms", + "position": 33, + "title": "Jingle Bell Rock" + }, + { + "artist": "Ariana Grande", + "position": 34, + "title": "God Is A Woman" + }, + { + "artist": "Tyga Featuring Offset", + "position": 35, + "title": "Taste" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "position": 36, + "title": "FEFE" + }, + { + "artist": "Drake", + "position": 37, + "title": "In My Feelings" + }, + { + "artist": "Dan + Shay", + "position": 38, + "title": "Speechless" + }, + { + "artist": "Nat King Cole", + "position": 39, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Lil Wayne", + "position": 40, + "title": "Uproar" + }, + { + "artist": "Kane Brown", + "position": 41, + "title": "Lose It" + }, + { + "artist": "Luke Combs", + "position": 42, + "title": "She Got The Best Of Me " + }, + { + "artist": "Wham!", + "position": 43, + "title": "Last Christmas" + }, + { + "artist": "Lil Baby & Drake", + "position": 44, + "title": "Yes Indeed" + }, + { + "artist": "Dan + Shay", + "position": 45, + "title": "Tequila" + }, + { + "artist": "Drake", + "position": 46, + "title": "Nonstop" + }, + { + "artist": "Cardi B Featuring Kehlani", + "position": 47, + "title": "Ring" + }, + { + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "position": 48, + "title": "Dangerous" + }, + { + "artist": "Jimmie Allen", + "position": 49, + "title": "Best Shot" + }, + { + "artist": "Ella Mai", + "position": 50, + "title": "Boo'd Up" + }, + { + "artist": "NF", + "position": 51, + "title": "Lie" + }, + { + "artist": "Billie Eilish", + "position": 52, + "title": "When The Party's Over" + }, + { + "artist": "Mitchell Tenpenny", + "position": 53, + "title": "Drunk Me" + }, + { + "artist": "XXXTENTACION", + "position": 54, + "title": "BAD!" + }, + { + "artist": "Juice WRLD", + "position": 55, + "title": "Armed And Dangerous" + }, + { + "artist": "Shawn Mendes X Zedd", + "position": 56, + "title": "Lost In Japan" + }, + { + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "position": 57, + "title": "Arms Around You" + }, + { + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "position": 58, + "title": "MAMA" + }, + { + "artist": "6ix9ine Featuring Tory Lanez", + "position": 59, + "title": "KIKA" + }, + { + "artist": "Lauren Daigle", + "position": 60, + "title": "You Say" + }, + { + "artist": "6ix9ine Featuring Bobby Shmurda", + "position": 61, + "title": "STOOPID" + }, + { + "artist": "6ix9ine Featuring Lil Baby", + "position": 62, + "title": "TIC TOC" + }, + { + "artist": "Lil Baby", + "position": 63, + "title": "Close Friends" + }, + { + "artist": "Future & Juice WRLD", + "position": 64, + "title": "Fine China" + }, + { + "artist": "Dean Lewis", + "position": 65, + "title": "Be Alright" + }, + { + "artist": "Trippie Redd", + "position": 66, + "title": "Topanga" + }, + { + "artist": "Yella Beezy", + "position": 67, + "title": "That's On Me" + }, + { + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "position": 68, + "title": "Smile (Living My Best Life)" + }, + { + "artist": "Billie Eilish", + "position": 69, + "title": "Come Out And Play" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 70, + "title": "10 Freaky Girls" + }, + { + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "position": 71, + "title": "WAKA" + }, + { + "artist": "Trippie Redd Featuring Juice WRLD", + "position": 72, + "title": "1400 / 999 Freestyle" + }, + { + "artist": "French Montana Featuring Drake", + "position": 73, + "title": "No Stylist" + }, + { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "position": 74, + "title": "Burning Man" + }, + { + "artist": "Tory Lanez & Rich The Kid", + "position": 75, + "title": "Talk To Me" + }, + { + "artist": "Pardison Fontaine Featuring Cardi B", + "position": 76, + "title": "Backin' It Up" + }, + { + "artist": "Camila Cabello", + "position": 77, + "title": "Consequences" + }, + { + "artist": "Bebe Rexha", + "position": 78, + "title": "I'm A Mess" + }, + { + "artist": "Chris Young", + "position": 79, + "title": "Hangin' On" + }, + { + "artist": "Tyga & Nicki Minaj", + "position": 80, + "title": "Dip" + }, + { + "artist": "Dustin Lynch", + "position": 81, + "title": "Good Girl" + }, + { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "position": 82, + "title": "This Feeling" + }, + { + "artist": "Billie Eilish & Khalid", + "position": 83, + "title": "Lovely" + }, + { + "artist": "Anuel AA & Romeo Santos", + "position": 84, + "title": "Ella Quiere Beber" + }, + { + "artist": "Lil Baby & Gunna Featuring Drake", + "position": 85, + "title": "Never Recover" + }, + { + "artist": "6ix9ine Featuring Anuel AA", + "position": 86, + "title": "BEBE" + }, + { + "artist": "Maren Morris", + "position": 87, + "title": "Rich" + }, + { + "artist": "Thomas Rhett", + "position": 88, + "title": "Sixteen" + }, + { + "artist": "Russell Dickerson", + "position": 89, + "title": "Blue Tacoma" + }, + { + "artist": "Jacquees", + "position": 90, + "title": "You" + }, + { + "artist": "Metro Boomin Featuring Gunna", + "position": 91, + "title": "Space Cadet" + }, + { + "artist": "Kip Moore", + "position": 92, + "title": "Last Shot" + }, + { + "artist": "Daniel Caesar Featuring H.E.R.", + "position": 93, + "title": "Best Part" + }, + { + "artist": "Jason Aldean", + "position": 94, + "title": "Girl Like You" + }, + { + "artist": "Metro Boomin Featuring 21 Savage", + "position": 95, + "title": "Don't Come Out The House" + }, + { + "artist": "Billie Eilish", + "position": 96, + "title": "Ocean Eyes" + }, + { + "artist": "Kanye West & Lil Pump", + "position": 97, + "title": "I Love It" + }, + { + "artist": "Lil Peep & XXXTENTACION", + "position": 98, + "title": "Falling Down" + }, + { + "artist": "Lil Mosey", + "position": 99, + "title": "Noticed" + }, + { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "position": 100, + "title": "Close To Me" + } + ], + "title": "2018 - Hot 100" + }, + { + "songs": [ + { + "artist": "Dan + Shay", + "position": 1, + "title": "Speechless" + }, + { + "artist": "Kane Brown", + "position": 2, + "title": "Lose It" + }, + { + "artist": "Luke Combs", + "position": 3, + "title": "She Got The Best Of Me " + }, + { + "artist": "Dan + Shay", + "position": 4, + "title": "Tequila" + }, + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 5, + "title": "Meant To Be" + }, + { + "artist": "Jimmie Allen", + "position": 6, + "title": "Best Shot" + }, + { + "artist": "Mitchell Tenpenny", + "position": 7, + "title": "Drunk Me" + }, + { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "position": 8, + "title": "Burning Man" + }, + { + "artist": "Chris Young", + "position": 9, + "title": "Hangin' On" + }, + { + "artist": "Dustin Lynch", + "position": 10, + "title": "Good Girl" + }, + { + "artist": "Thomas Rhett", + "position": 11, + "title": "Sixteen" + }, + { + "artist": "Kip Moore", + "position": 12, + "title": "Last Shot" + }, + { + "artist": "Jason Aldean", + "position": 13, + "title": "Girl Like You" + }, + { + "artist": "Scotty McCreery", + "position": 14, + "title": "This Is It" + }, + { + "artist": "Chris Stapleton", + "position": 15, + "title": "Millionaire" + }, + { + "artist": "Blake Shelton", + "position": 16, + "title": "Turnin' Me On" + }, + { + "artist": "Eric Church", + "position": 17, + "title": "Desperate Man" + }, + { + "artist": "Jordan Davis", + "position": 18, + "title": "Take It From Me" + }, + { + "artist": "Luke Combs", + "position": 19, + "title": "Beautiful Crazy" + }, + { + "artist": "Jake Owen", + "position": 20, + "title": "Down To The Honkytonk" + }, + { + "artist": "Midland", + "position": 21, + "title": "Burn Out" + }, + { + "artist": "Luke Bryan", + "position": 22, + "title": "What Makes You Country" + }, + { + "artist": "Riley Green", + "position": 23, + "title": "There Was This Girl" + }, + { + "artist": "Tim McGraw", + "position": 24, + "title": "Neon Church" + }, + { + "artist": "Kelsea Ballerini", + "position": 25, + "title": "Miss Me More" + }, + { + "artist": "Jon Pardi", + "position": 26, + "title": "Night Shift" + }, + { + "artist": "Old Dominion", + "position": 27, + "title": "Make It Sweet" + }, + { + "artist": "Carrie Underwood", + "position": 28, + "title": "Love Wins" + }, + { + "artist": "Brett Young", + "position": 29, + "title": "Here Tonight" + }, + { + "artist": "Cody Johnson", + "position": 30, + "title": "On My Way To You" + }, + { + "artist": "Keith Urban", + "position": 31, + "title": "Never Comin Down" + }, + { + "artist": "Morgan Wallen", + "position": 32, + "title": "Whiskey Glasses" + }, + { + "artist": "Michael Ray", + "position": 33, + "title": "One That Got Away" + }, + { + "artist": "Lee Brice", + "position": 34, + "title": "Rumor" + }, + { + "artist": "Kenny Chesney Featuring Mindy Smith", + "position": 35, + "title": "Better Boat" + }, + { + "artist": "Tyler Rich", + "position": 36, + "title": "The Difference" + }, + { + "artist": "Florida Georgia Line", + "position": 37, + "title": "Talk You Out Of It" + }, + { + "artist": "Chris Lane", + "position": 38, + "title": "I Don't Know About You" + }, + { + "artist": "Eli Young Band", + "position": 39, + "title": "Love Ain't" + }, + { + "artist": "Rodney Atkins Featuring The Fisk Jubilee Singers", + "position": 40, + "title": "Caught Up In The Country" + }, + { + "artist": "Granger Smith", + "position": 41, + "title": "You're In It" + }, + { + "artist": "Chase Rice", + "position": 42, + "title": "Eyes On You" + }, + { + "artist": "Kane Brown", + "position": 43, + "title": "Homesick" + }, + { + "artist": "Brett Eldredge", + "position": 44, + "title": "Love Someone" + }, + { + "artist": "Kane Brown", + "position": 45, + "title": "Good As You" + }, + { + "artist": "Travis Denning", + "position": 46, + "title": "David Ashley Parker From Powder Springs" + }, + { + "artist": "Billy Currington", + "position": 47, + "title": "Bring It On Over" + }, + { + "artist": "Maddie & Tae", + "position": 48, + "title": "Die From A Broken Heart" + }, + { + "artist": "Rascal Flatts", + "position": 49, + "title": "Back To Life" + }, + { + "artist": "Maddie & Tae", + "position": 50, + "title": "Friends Don't" + } + ], + "title": "2018 - Country-Songs" + }, + { + "songs": [ + { + "artist": "Imagine Dragons", + "position": 1, + "title": "Thunder" + }, + { + "artist": "Portugal. The Man", + "position": 2, + "title": "Feel It Still" + }, + { + "artist": "Imagine Dragons", + "position": 3, + "title": "Believer" + }, + { + "artist": "WALK THE MOON", + "position": 4, + "title": "One Foot" + }, + { + "artist": "The Revivalists", + "position": 5, + "title": "Wish I Knew You" + }, + { + "artist": "Theory Of A Deadman", + "position": 6, + "title": "Rx (Medicate)" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 7, + "title": "Walk On Water" + }, + { + "artist": "Imagine Dragons", + "position": 8, + "title": "Whatever It Takes" + }, + { + "artist": "AC/DC", + "position": 9, + "title": "Thunderstruck" + }, + { + "artist": "U2", + "position": 10, + "title": "You're The Best Thing About Me" + }, + { + "artist": "Five Finger Death Punch", + "position": 11, + "title": "Gone Away" + }, + { + "artist": "The Lumineers", + "position": 12, + "title": "Angela" + }, + { + "artist": "Alice Merton", + "position": 13, + "title": "No Roots" + }, + { + "artist": "Chloe Kohanski", + "position": 14, + "title": "Call Me" + }, + { + "artist": "Beck", + "position": 15, + "title": "Up All Night" + }, + { + "artist": "Foo Fighters", + "position": 16, + "title": "The Sky Is A Neighborhood" + }, + { + "artist": "AC/DC", + "position": 17, + "title": "Back In Black" + }, + { + "artist": "Led Zeppelin", + "position": 18, + "title": "Immigrant Song" + }, + { + "artist": "Vance Joy", + "position": 19, + "title": "Lay It On Me" + }, + { + "artist": "AC/DC", + "position": 20, + "title": "You Shook Me All Night Long" + }, + { + "artist": "Linkin Park", + "position": 21, + "title": "One More Light" + }, + { + "artist": "Gary Clark Jr.", + "position": 22, + "title": "Come Together" + }, + { + "artist": "AC/DC", + "position": 23, + "title": "Highway To Hell" + }, + { + "artist": "Foster The People", + "position": 24, + "title": "Sit Next To Me" + }, + { + "artist": "Portugal. The Man", + "position": 25, + "title": "Live In The Moment" + }, + { + "artist": "Fall Out Boy", + "position": 26, + "title": "Hold Me Tight Or Don't" + }, + { + "artist": "Nothing More", + "position": 27, + "title": "Go To War" + }, + { + "artist": "Five Finger Death Punch", + "position": 28, + "title": "Trouble" + }, + { + "artist": "Bastille", + "position": 29, + "title": "World Gone Mad" + }, + { + "artist": "Greta Van Fleet", + "position": 30, + "title": "Highway Tune" + }, + { + "artist": "Royal Blood", + "position": 31, + "title": "I Only Lie When I Love You" + }, + { + "artist": "Cold War Kids Featuring Bishop Briggs", + "position": 32, + "title": "So Tied Up" + }, + { + "artist": "U2", + "position": 33, + "title": "Get Out Of Your Own Way" + }, + { + "artist": "Skillet", + "position": 34, + "title": "The Resistance" + }, + { + "artist": "Noah Mac", + "position": 35, + "title": "Ordinary World" + }, + { + "artist": "Weezer", + "position": 36, + "title": "Happy Hour" + }, + { + "artist": "All That Remains", + "position": 37, + "title": "The Thunder Rolls" + }, + { + "artist": "Papa Roach", + "position": 38, + "title": "Born For Greatness" + }, + { + "artist": "Manchester Orchestra", + "position": 39, + "title": "The Gold" + }, + { + "artist": "The Dirty Heads", + "position": 40, + "title": "Vacation" + }, + { + "artist": "Welshly Arms", + "position": 41, + "title": "Legendary" + }, + { + "artist": "X Ambassadors", + "position": 42, + "title": "Ahead Of Myself" + }, + { + "artist": "Fall Out Boy", + "position": 43, + "title": "The Last Of The Real Ones" + }, + { + "artist": "The Score", + "position": 44, + "title": "Legend" + }, + { + "artist": "Marilyn Manson", + "position": 45, + "title": "Kill4me" + }, + { + "artist": "Seether", + "position": 46, + "title": "Betray And Degrade" + }, + { + "artist": "Bishop Briggs", + "position": 47, + "title": "Dream" + }, + { + "artist": "Two Feet", + "position": 48, + "title": "Go Fuck Yourself" + }, + { + "artist": "U2", + "position": 49, + "title": "American Soul" + }, + { + "artist": "Fozzy", + "position": 50, + "title": "Judas" + } + ], + "title": "2017 - Rock-Songs" + }, + { + "songs": [ + { + "artist": "Post Malone Featuring 21 Savage", + "position": 1, + "title": "Rockstar" + }, + { + "artist": "Lil Pump", + "position": 2, + "title": "Gucci Gang" + }, + { + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "position": 3, + "title": "No Limit" + }, + { + "artist": "Cardi B", + "position": 4, + "title": "Bodak Yellow (Money Moves)" + }, + { + "artist": "6ix9ine", + "position": 5, + "title": "Gummo" + }, + { + "artist": "Gucci Mane Featuring Migos", + "position": 6, + "title": "I Get The Bag" + }, + { + "artist": "Migos, Nicki Minaj & Cardi B", + "position": 7, + "title": "MotorSport" + }, + { + "artist": "Logic Featuring Alessia Cara & Khalid", + "position": 8, + "title": "1-800-273-8255" + }, + { + "artist": "G-Eazy & Halsey", + "position": 9, + "title": "Him & I" + }, + { + "artist": "NF", + "position": 10, + "title": "Let You Down" + }, + { + "artist": "Post Malone", + "position": 11, + "title": "I Fall Apart" + }, + { + "artist": "21 Savage", + "position": 12, + "title": "Bank Account" + }, + { + "artist": "Kendrick Lamar Featuring Zacari", + "position": 13, + "title": "Love." + }, + { + "artist": "Khalid", + "position": 14, + "title": "Young Dumb & Broke" + }, + { + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "position": 15, + "title": "The Way Life Goes" + }, + { + "artist": "Miguel Featuring Travis Scott", + "position": 16, + "title": "Sky Walker" + }, + { + "artist": "SZA", + "position": 17, + "title": "The Weekend" + }, + { + "artist": "A$AP Ferg", + "position": 18, + "title": "Plain Jane" + }, + { + "artist": "Offset & Metro Boomin", + "position": 19, + "title": "Ric Flair Drip" + }, + { + "artist": "YBN Nahmir", + "position": 20, + "title": "Rubbin Off The Paint" + }, + { + "artist": "Yo Gotti Featuring Nicki Minaj", + "position": 21, + "title": "Rake It Up" + }, + { + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "position": 22, + "title": "Pills And Automobiles" + }, + { + "artist": "Kodak Black Featuring XXXTENTACION", + "position": 23, + "title": "Roll In Peace" + }, + { + "artist": "GoldLink Featuring Brent Faiyaz & Shy Glizzy", + "position": 24, + "title": "Crew" + }, + { + "artist": "Kodak Black Featuring Lil Wayne", + "position": 25, + "title": "Codeine Dreaming" + }, + { + "artist": "Post Malone", + "position": 26, + "title": "Candy Paint" + }, + { + "artist": "N*E*R*D & Rihanna", + "position": 27, + "title": "Lemon" + }, + { + "artist": "6ix9ine", + "position": 28, + "title": "Kooda" + }, + { + "artist": "Lil Xan", + "position": 29, + "title": "Betrayed" + }, + { + "artist": "Famous Dex Featuring A$AP Rocky", + "position": 30, + "title": "Pick It Up" + }, + { + "artist": "Tay-K", + "position": 31, + "title": "The Race" + }, + { + "artist": "NAV Featuring Lil Uzi Vert", + "position": 32, + "title": "Wanted You" + }, + { + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "position": 33, + "title": "Ghostface Killers" + }, + { + "artist": "XXXTentacion Featuring Trippie Redd", + "position": 34, + "title": "F**k Love" + }, + { + "artist": "Tank", + "position": 35, + "title": "When We" + }, + { + "artist": "XXXTentacion", + "position": 36, + "title": "Jocelyn Flores" + }, + { + "artist": "Kodak Black", + "position": 37, + "title": "Transportin'" + }, + { + "artist": "Yo Gotti", + "position": 38, + "title": "Juice" + }, + { + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "position": 39, + "title": "Faking It" + }, + { + "artist": "Lil Uzi Vert", + "position": 40, + "title": "Sauce It Up" + }, + { + "artist": "Post Malone", + "position": 41, + "title": "Go Flex" + }, + { + "artist": "Eminem Featuring Beyonce", + "position": 42, + "title": "Walk On Water" + }, + { + "artist": "YoungBoy Never Broke Again", + "position": 43, + "title": "No Smoke" + }, + { + "artist": "Miguel Featuring J. Cole & Salaam Remi", + "position": 44, + "title": "Come Through And Chill" + }, + { + "artist": "Rich The Kid Featuring Kendrick Lamar", + "position": 45, + "title": "New Freezer" + }, + { + "artist": "Jaden Smith", + "position": 46, + "title": "Icon" + }, + { + "artist": "Wiz Khalifa Featuring Ty Dolla $ign", + "position": 47, + "title": "Something New" + }, + { + "artist": "Lil Baby", + "position": 48, + "title": "My Dawg" + }, + { + "artist": "The Weeknd", + "position": 49, + "title": "Die For You" + }, + { + "artist": "Machine Gun Kelly, X Ambassadors & Bebe Rexha", + "position": 50, + "title": "Home" + } + ], + "title": "2017 - R-B-Hip-Hop-Songs" + }, + { + "songs": [ + { + "artist": "Camila Cabello Featuring Young Thug", + "position": 1, + "title": "Havana" + }, + { + "artist": "Imagine Dragons", + "position": 2, + "title": "Thunder" + }, + { + "artist": "Halsey", + "position": 3, + "title": "Bad At Love" + }, + { + "artist": "Ed Sheeran Duet With Beyonce", + "position": 4, + "title": "Perfect" + }, + { + "artist": "Maroon 5 Featuring SZA", + "position": 5, + "title": "What Lovers Do" + }, + { + "artist": "Sam Smith", + "position": 6, + "title": "Too Good At Goodbyes" + }, + { + "artist": "Demi Lovato", + "position": 7, + "title": "Sorry Not Sorry" + }, + { + "artist": "Post Malone Featuring 21 Savage", + "position": 8, + "title": "Rockstar" + }, + { + "artist": "Dua Lipa", + "position": 9, + "title": "New Rules" + }, + { + "artist": "Portugal. The Man", + "position": 10, + "title": "Feel It Still" + }, + { + "artist": "Logic Featuring Alessia Cara & Khalid", + "position": 11, + "title": "1-800-273-8255" + }, + { + "artist": "Charlie Puth", + "position": 12, + "title": "How Long" + }, + { + "artist": "Liam Payne Featuring Quavo", + "position": 13, + "title": "Strip That Down" + }, + { + "artist": "Selena Gomez X Marshmello", + "position": 14, + "title": "Wolves" + }, + { + "artist": "Taylor Swift", + "position": 15, + "title": "...Ready For It?" + }, + { + "artist": "MAX Featuring gnash", + "position": 16, + "title": "Lights Down Low" + }, + { + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "position": 17, + "title": "End Game" + }, + { + "artist": "NF", + "position": 18, + "title": "Let You Down" + }, + { + "artist": "Macklemore Featuring Kesha", + "position": 19, + "title": "Good Old Days" + }, + { + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "position": 20, + "title": "Let Me Go" + }, + { + "artist": "Niall Horan", + "position": 21, + "title": "Too Much To Ask" + }, + { + "artist": "J Balvin & Willy William Featuring Beyonce", + "position": 22, + "title": "Mi Gente" + }, + { + "artist": "Khalid", + "position": 23, + "title": "Young Dumb & Broke" + }, + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 24, + "title": "Meant To Be" + }, + { + "artist": "P!nk", + "position": 25, + "title": "What About Us" + }, + { + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "position": 26, + "title": "Faking It" + }, + { + "artist": "WALK THE MOON", + "position": 27, + "title": "One Foot" + }, + { + "artist": "Sofi Tukker Featuring NERVO, The Knocks & Alisa Ueno", + "position": 28, + "title": "Best Friend" + }, + { + "artist": "G-Eazy & Halsey", + "position": 29, + "title": "Him & I" + }, + { + "artist": "Blackbear", + "position": 30, + "title": "Do Re Mi" + }, + { + "artist": "Lauv", + "position": 31, + "title": "I Like Me Better" + }, + { + "artist": "Zayn Featuring Sia", + "position": 32, + "title": "Dusk Till Dawn" + }, + { + "artist": "Marshmello Featuring Khalid", + "position": 33, + "title": "Silence" + }, + { + "artist": "Cheat Codes Featuring Fetty Wap & CVBZ", + "position": 34, + "title": "Feels Great" + }, + { + "artist": "Liam Payne", + "position": 35, + "title": "Bedroom Floor" + }, + { + "artist": "Kendrick Lamar Featuring Zacari", + "position": 36, + "title": "Love." + }, + { + "artist": "BTS Featuring Desiigner", + "position": 37, + "title": "MIC Drop" + }, + { + "artist": "Daya", + "position": 38, + "title": "New" + }, + { + "artist": "Taylor Swift", + "position": 39, + "title": "Look What You Made Me Do" + }, + { + "artist": "CNCO & Little Mix", + "position": 40, + "title": "Reggaeton Lento (Bailemos)" + } + ], + "title": "2017 - Pop-Songs" + }, + { + "songs": [ + { + "artist": "Ed Sheeran Duet With Beyonce", + "position": 1, + "title": "Perfect" + }, + { + "artist": "Post Malone Featuring 21 Savage", + "position": 2, + "title": "Rockstar" + }, + { + "artist": "Camila Cabello Featuring Young Thug", + "position": 3, + "title": "Havana" + }, + { + "artist": "Lil Pump", + "position": 4, + "title": "Gucci Gang" + }, + { + "artist": "Imagine Dragons", + "position": 5, + "title": "Thunder" + }, + { + "artist": "Sam Smith", + "position": 6, + "title": "Too Good At Goodbyes" + }, + { + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "position": 7, + "title": "No Limit" + }, + { + "artist": "Halsey", + "position": 8, + "title": "Bad At Love" + }, + { + "artist": "Cardi B", + "position": 9, + "title": "Bodak Yellow (Money Moves)" + }, + { + "artist": "Maroon 5 Featuring SZA", + "position": 10, + "title": "What Lovers Do" + }, + { + "artist": "Mariah Carey", + "position": 11, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Portugal. The Man", + "position": 12, + "title": "Feel It Still" + }, + { + "artist": "6ix9ine", + "position": 13, + "title": "Gummo" + }, + { + "artist": "Gucci Mane Featuring Migos", + "position": 14, + "title": "I Get The Bag" + }, + { + "artist": "Migos, Nicki Minaj & Cardi B", + "position": 15, + "title": "MotorSport" + }, + { + "artist": "Demi Lovato", + "position": 16, + "title": "Sorry Not Sorry" + }, + { + "artist": "Dua Lipa", + "position": 17, + "title": "New Rules" + }, + { + "artist": "J Balvin & Willy William Featuring Beyonce", + "position": 18, + "title": "Mi Gente" + }, + { + "artist": "Logic Featuring Alessia Cara & Khalid", + "position": 19, + "title": "1-800-273-8255" + }, + { + "artist": "Selena Gomez X Marshmello", + "position": 20, + "title": "Wolves" + }, + { + "artist": "G-Eazy & Halsey", + "position": 21, + "title": "Him & I" + }, + { + "artist": "NF", + "position": 22, + "title": "Let You Down" + }, + { + "artist": "Post Malone", + "position": 23, + "title": "I Fall Apart" + }, + { + "artist": "21 Savage", + "position": 24, + "title": "Bank Account" + }, + { + "artist": "Ed Sheeran", + "position": 25, + "title": "Shape Of You" + }, + { + "artist": "Charlie Puth", + "position": 26, + "title": "How Long" + }, + { + "artist": "Kendrick Lamar Featuring Zacari", + "position": 27, + "title": "Love." + }, + { + "artist": "Khalid", + "position": 28, + "title": "Young Dumb & Broke" + }, + { + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "position": 29, + "title": "The Way Life Goes" + }, + { + "artist": "Imagine Dragons", + "position": 30, + "title": "Believer" + }, + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 31, + "title": "Meant To Be" + }, + { + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "position": 32, + "title": "Despacito" + }, + { + "artist": "Marshmello Featuring Khalid", + "position": 33, + "title": "Silence" + }, + { + "artist": "French Montana Featuring Swae Lee", + "position": 34, + "title": "Unforgettable" + }, + { + "artist": "Miguel Featuring Travis Scott", + "position": 35, + "title": "Sky Walker" + }, + { + "artist": "Charlie Puth", + "position": 36, + "title": "Attention" + }, + { + "artist": "Brenda Lee", + "position": 37, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "SZA", + "position": 38, + "title": "The Weekend" + }, + { + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "position": 39, + "title": "End Game" + }, + { + "artist": "Bruno Mars", + "position": 40, + "title": "That's What I Like" + }, + { + "artist": "A$AP Ferg", + "position": 41, + "title": "Plain Jane" + }, + { + "artist": "Nat King Cole", + "position": 42, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Taylor Swift", + "position": 43, + "title": "...Ready For It?" + }, + { + "artist": "Offset & Metro Boomin", + "position": 44, + "title": "Ric Flair Drip" + }, + { + "artist": "Andy Williams", + "position": 45, + "title": "It's The Most Wonderful Time Of The Year" + }, + { + "artist": "Shawn Mendes", + "position": 46, + "title": "There's Nothing Holdin' Me Back" + }, + { + "artist": "Burl Ives", + "position": 47, + "title": "A Holly Jolly Christmas" + }, + { + "artist": "YBN Nahmir", + "position": 48, + "title": "Rubbin Off The Paint" + }, + { + "artist": "Post Malone Featuring Quavo", + "position": 49, + "title": "Congratulations" + }, + { + "artist": "Kendrick Lamar", + "position": 50, + "title": "Humble." + }, + { + "artist": "P!nk", + "position": 51, + "title": "What About Us" + }, + { + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "position": 52, + "title": "Pills And Automobiles" + }, + { + "artist": "Demi Lovato", + "position": 53, + "title": "Tell Me You Love Me" + }, + { + "artist": "LANCO", + "position": 54, + "title": "Greatest Love Story" + }, + { + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "position": 55, + "title": "Let Me Go" + }, + { + "artist": "Kodak Black Featuring XXXTENTACION", + "position": 56, + "title": "Roll In Peace" + }, + { + "artist": "Luke Bryan", + "position": 57, + "title": "Light It Up" + }, + { + "artist": "Kodak Black Featuring Lil Wayne", + "position": 58, + "title": "Codeine Dreaming" + }, + { + "artist": "Post Malone", + "position": 59, + "title": "Candy Paint" + }, + { + "artist": "N*E*R*D & Rihanna", + "position": 60, + "title": "Lemon" + }, + { + "artist": "6ix9ine", + "position": 61, + "title": "Kooda" + }, + { + "artist": "Brett Young", + "position": 62, + "title": "Like I Loved You" + }, + { + "artist": "Blake Shelton", + "position": 63, + "title": "I'll Name The Dogs" + }, + { + "artist": "Macklemore Featuring Kesha", + "position": 64, + "title": "Good Old Days" + }, + { + "artist": "Luke Combs", + "position": 65, + "title": "When It Rains It Pours" + }, + { + "artist": "MAX Featuring gnash", + "position": 66, + "title": "Lights Down Low" + }, + { + "artist": "Russell Dickerson", + "position": 67, + "title": "Yours" + }, + { + "artist": "Lil Xan", + "position": 68, + "title": "Betrayed" + }, + { + "artist": "Thomas Rhett", + "position": 69, + "title": "Unforgettable" + }, + { + "artist": "Eric Church", + "position": 70, + "title": "Round Here Buzz" + }, + { + "artist": "BTS Featuring Desiigner", + "position": 71, + "title": "MIC Drop" + }, + { + "artist": "Taylor Swift", + "position": 72, + "title": "Look What You Made Me Do" + }, + { + "artist": "Famous Dex Featuring A$AP Rocky", + "position": 73, + "title": "Pick It Up" + }, + { + "artist": "Tay-K", + "position": 74, + "title": "The Race" + }, + { + "artist": "Luis Fonsi & Demi Lovato", + "position": 75, + "title": "Echame La Culpa" + }, + { + "artist": "NAV Featuring Lil Uzi Vert", + "position": 76, + "title": "Wanted You" + }, + { + "artist": "Chris Young", + "position": 77, + "title": "Losing Sleep" + }, + { + "artist": "Zayn Featuring Sia", + "position": 78, + "title": "Dusk Till Dawn" + }, + { + "artist": "Kelly Clarkson", + "position": 79, + "title": "Love So Soft" + }, + { + "artist": "Maren Morris", + "position": 80, + "title": "I Could Use A Love Song" + }, + { + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "position": 81, + "title": "Ghostface Killers" + }, + { + "artist": "XXXTentacion Featuring Trippie Redd", + "position": 82, + "title": "F**k Love" + }, + { + "artist": "Becky G Featuring Bad Bunny", + "position": 83, + "title": "Mayores" + }, + { + "artist": "Walker Hayes", + "position": 84, + "title": "You Broke Up With Me" + }, + { + "artist": "Farruko, Nicki Minaj, Bad Bunny, 21 Savage & Rvssian", + "position": 85, + "title": "Krippy Kush" + }, + { + "artist": "Tank", + "position": 86, + "title": "When We" + }, + { + "artist": "XXXTentacion", + "position": 87, + "title": "Jocelyn Flores" + }, + { + "artist": "Old Dominion", + "position": 88, + "title": "Written In The Sand" + }, + { + "artist": "Niall Horan", + "position": 89, + "title": "Too Much To Ask" + }, + { + "artist": "Chris Stapleton", + "position": 90, + "title": "Broken Halos" + }, + { + "artist": "Devin Dawson", + "position": 91, + "title": "All On Me" + }, + { + "artist": "Kodak Black", + "position": 92, + "title": "Transportin'" + }, + { + "artist": "Yo Gotti", + "position": 93, + "title": "Juice" + }, + { + "artist": "Garth Brooks", + "position": 94, + "title": "Ask Me How I Know" + }, + { + "artist": "Romeo Santos Featuring Nicky Jam & Daddy Yankee", + "position": 95, + "title": "Bella y Sensual" + }, + { + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "position": 96, + "title": "Faking It" + }, + { + "artist": "Thomas Rhett", + "position": 97, + "title": "Marry Me" + }, + { + "artist": "Scotty McCreery", + "position": 98, + "title": "Five More Minutes" + }, + { + "artist": "Natti Natasha x Ozuna", + "position": 99, + "title": "Criminal" + }, + { + "artist": "Lil Uzi Vert", + "position": 100, + "title": "Sauce It Up" + } + ], + "title": "2017 - Hot 100" + }, + { + "songs": [ + { + "artist": "Bebe Rexha & Florida Georgia Line", + "position": 1, + "title": "Meant To Be" + }, + { + "artist": "LANCO", + "position": 2, + "title": "Greatest Love Story" + }, + { + "artist": "Kane Brown Featuring Lauren Alaina", + "position": 3, + "title": "What Ifs" + }, + { + "artist": "Luke Combs", + "position": 4, + "title": "When It Rains It Pours" + }, + { + "artist": "Sam Hunt", + "position": 5, + "title": "Body Like A Back Road" + }, + { + "artist": "Luke Bryan", + "position": 6, + "title": "Light It Up" + }, + { + "artist": "Thomas Rhett", + "position": 7, + "title": "Unforgettable" + }, + { + "artist": "Blake Shelton", + "position": 8, + "title": "I'll Name The Dogs" + }, + { + "artist": "Brett Young", + "position": 9, + "title": "Like I Loved You" + }, + { + "artist": "Dustin Lynch", + "position": 10, + "title": "Small Town Boy" + }, + { + "artist": "Eric Church", + "position": 11, + "title": "Round Here Buzz" + }, + { + "artist": "Russell Dickerson", + "position": 12, + "title": "Yours" + }, + { + "artist": "Garth Brooks", + "position": 13, + "title": "Ask Me How I Know" + }, + { + "artist": "Chris Young", + "position": 14, + "title": "Losing Sleep" + }, + { + "artist": "Maren Morris", + "position": 15, + "title": "I Could Use A Love Song" + }, + { + "artist": "Walker Hayes", + "position": 16, + "title": "You Broke Up With Me" + }, + { + "artist": "Chris Janson", + "position": 17, + "title": "Fix A Drink" + }, + { + "artist": "Old Dominion", + "position": 18, + "title": "Written In The Sand" + }, + { + "artist": "Devin Dawson", + "position": 19, + "title": "All On Me" + }, + { + "artist": "Kelsea Ballerini", + "position": 20, + "title": "Legends" + }, + { + "artist": "Scotty McCreery", + "position": 21, + "title": "Five More Minutes" + }, + { + "artist": "Chris Stapleton", + "position": 22, + "title": "Broken Halos" + }, + { + "artist": "Keith Urban", + "position": 23, + "title": "Female" + }, + { + "artist": "Easton Corbin", + "position": 24, + "title": "A Girl Like You" + }, + { + "artist": "Miranda Lambert", + "position": 25, + "title": "Tin Man" + }, + { + "artist": "Thomas Rhett", + "position": 26, + "title": "Marry Me" + }, + { + "artist": "Aaron Watson", + "position": 27, + "title": "Outta Style" + }, + { + "artist": "Kane Brown", + "position": 28, + "title": "Heaven" + }, + { + "artist": "Brett Eldredge", + "position": 29, + "title": "The Long Way" + }, + { + "artist": "Granger Smith", + "position": 30, + "title": "Happens Like That" + }, + { + "artist": "Tim McGraw & Faith Hill", + "position": 31, + "title": "The Rest Of Our Life" + }, + { + "artist": "Jordan Davis", + "position": 32, + "title": "Singles You Up" + }, + { + "artist": "Lee Brice", + "position": 33, + "title": "Boy" + }, + { + "artist": "Midland", + "position": 34, + "title": "Make A Little" + }, + { + "artist": "Florida Georgia Line", + "position": 35, + "title": "Smooth" + }, + { + "artist": "High Valley", + "position": 36, + "title": "She's With Me" + }, + { + "artist": "Big & Rich", + "position": 37, + "title": "California" + }, + { + "artist": "Kane Brown", + "position": 38, + "title": "Found You" + }, + { + "artist": "Chris Lane Featuring Tori Kelly", + "position": 39, + "title": "Take Back Home Girl" + }, + { + "artist": "Morgan Wallen Featuring Florida Georgia Line", + "position": 40, + "title": "Up Down" + }, + { + "artist": "Cole Swindell", + "position": 41, + "title": "Stay Downtown" + }, + { + "artist": "Brantley Gilbert", + "position": 42, + "title": "Ones That Like Me" + }, + { + "artist": "Michael Ray", + "position": 43, + "title": "Get To You" + }, + { + "artist": "Darius Rucker", + "position": 44, + "title": "For The First Time" + }, + { + "artist": "Chase Rice", + "position": 45, + "title": "Three Chords & The Truth" + }, + { + "artist": "Little Big Town", + "position": 46, + "title": "When Someone Stops Loving You" + }, + { + "artist": "David Lee Murphy & Kenny Chesney", + "position": 47, + "title": "Everything's Gonna Be Alright" + }, + { + "artist": "Dylan Scott", + "position": 48, + "title": "Hooked" + }, + { + "artist": "Red Marlow", + "position": 49, + "title": "The Dance" + }, + { + "artist": "Taylor Swift", + "position": 50, + "title": "New Year's Day" + } + ], + "title": "2017 - Country-Songs" + }, + { + "songs": [ + { + "artist": "twenty one pilots", + "position": 1, + "title": "Heathens" + }, + { + "artist": "twenty one pilots", + "position": 2, + "title": "Ride" + }, + { + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "position": 3, + "title": "Sucker For Pain" + }, + { + "artist": "Coldplay", + "position": 4, + "title": "Hymn For The Weekend" + }, + { + "artist": "X Ambassadors", + "position": 5, + "title": "Unsteady" + }, + { + "artist": "Disturbed", + "position": 6, + "title": "The Sound Of Silence" + }, + { + "artist": "Kings Of Leon", + "position": 7, + "title": "Waste A Moment" + }, + { + "artist": "The Lumineers", + "position": 8, + "title": "Ophelia" + }, + { + "artist": "Fitz And The Tantrums", + "position": 9, + "title": "HandClap" + }, + { + "artist": "twenty one pilots", + "position": 10, + "title": "Cancer" + }, + { + "artist": "Bastille", + "position": 11, + "title": "Good Grief" + }, + { + "artist": "Kaleo", + "position": 12, + "title": "Way Down We Go" + }, + { + "artist": "Bishop Briggs", + "position": 13, + "title": "River" + }, + { + "artist": "Blink-182", + "position": 14, + "title": "Bored To Death" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 15, + "title": "Dark Necessities" + }, + { + "artist": "Green Day", + "position": 16, + "title": "Bang Bang" + }, + { + "artist": "The Head And The Heart", + "position": 17, + "title": "All We Ever Knew" + }, + { + "artist": "Cage The Elephant", + "position": 18, + "title": "Trouble" + }, + { + "artist": "Panic! At The Disco", + "position": 19, + "title": "Bohemian Rhapsody" + }, + { + "artist": "Metallica", + "position": 20, + "title": "Hardwired" + }, + { + "artist": "Beck", + "position": 21, + "title": "Wow" + }, + { + "artist": "Green Day", + "position": 22, + "title": "Revolution Radio" + }, + { + "artist": "Skillet", + "position": 23, + "title": "Feel Invincible" + }, + { + "artist": "The Fray", + "position": 24, + "title": "Singing Low" + }, + { + "artist": "Phantogram", + "position": 25, + "title": "You Don't Get Me High Anymore" + } + ], + "title": "2016 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Rihanna", + "position": 1, + "title": "Needed Me" + }, + { + "artist": "D.R.A.M. Featuring Lil Yachty", + "position": 2, + "title": "Broccoli" + }, + { + "artist": "Drake Featuring WizKid & Kyla", + "position": 3, + "title": "One Dance" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 4, + "title": "Too Good" + }, + { + "artist": "Tory Lanez", + "position": 5, + "title": "Luv" + }, + { + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "position": 6, + "title": "Sucker For Pain" + }, + { + "artist": "Desiigner", + "position": 7, + "title": "Panda" + }, + { + "artist": "DJ Khaled Featuring Drake", + "position": 8, + "title": "For Free" + }, + { + "artist": "Drake", + "position": 9, + "title": "Controlla" + }, + { + "artist": "Desiigner", + "position": 10, + "title": "Tiimmy Turner" + }, + { + "artist": "Usher Featuring Young Thug", + "position": 11, + "title": "No Limit" + }, + { + "artist": "Kanye West", + "position": 12, + "title": "Fade" + }, + { + "artist": "Young Thug And Travis Scott Featuring Quavo", + "position": 13, + "title": "Pick Up The Phone" + }, + { + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "position": 14, + "title": "Chill Bill" + }, + { + "artist": "Lil Uzi Vert", + "position": 15, + "title": "Money Longer" + }, + { + "artist": "Kanye West", + "position": 16, + "title": "Father Stretch My Hands Pt. 1" + }, + { + "artist": "Kent Jones", + "position": 17, + "title": "Don't Mind" + }, + { + "artist": "DJ Khaled Featuring Jay Z & Future", + "position": 18, + "title": "I Got The Keys" + }, + { + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "position": 19, + "title": "No Problem" + }, + { + "artist": "ScHoolboy Q Featuring Kanye West", + "position": 20, + "title": "THat Part" + }, + { + "artist": "Young M.A", + "position": 21, + "title": "OOOUUU" + }, + { + "artist": "Dae Dae", + "position": 22, + "title": "Wat U Mean (Aye, Aye, Aye)" + }, + { + "artist": "Aminé", + "position": 23, + "title": "Caroline" + }, + { + "artist": "Kehlani", + "position": 24, + "title": "Gangsta" + }, + { + "artist": "Post Malone Featuring Justin Bieber", + "position": 25, + "title": "Deja Vu" + } + ], + "title": "2016 - Hot R & B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Major Lazer Featuring Justin Bieber & MO", + "position": 1, + "title": "Cold Water" + }, + { + "artist": "The Chainsmokers Featuring Halsey", + "position": 2, + "title": "Closer" + }, + { + "artist": "Adele", + "position": 3, + "title": "Send My Love (To Your New Lover)" + }, + { + "artist": "Shawn Mendes", + "position": 4, + "title": "Treat You Better" + }, + { + "artist": "Sia Featuring Sean Paul", + "position": 5, + "title": "Cheap Thrills" + }, + { + "artist": "twenty one pilots", + "position": 6, + "title": "Ride" + }, + { + "artist": "Ariana Grande", + "position": 7, + "title": "Into You" + }, + { + "artist": "Calvin Harris Featuring Rihanna", + "position": 8, + "title": "This Is What You Came For" + }, + { + "artist": "twenty one pilots", + "position": 9, + "title": "Heathens" + }, + { + "artist": "Kiiara", + "position": 10, + "title": "Gold" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 11, + "title": "Too Good" + }, + { + "artist": "Charlie Puth Featuring Selena Gomez", + "position": 12, + "title": "We Don't Talk Anymore" + }, + { + "artist": "Daya", + "position": 13, + "title": "Sit Still, Look Pretty" + }, + { + "artist": "DJ Snake Featuring Justin Bieber", + "position": 14, + "title": "Let Me Love You" + }, + { + "artist": "Drake Featuring WizKid & Kyla", + "position": 15, + "title": "One Dance" + }, + { + "artist": "Kungs vs Cookin' On 3 Burners", + "position": 16, + "title": "This Girl" + }, + { + "artist": "Justin Timberlake", + "position": 17, + "title": "Can't Stop The Feeling!" + }, + { + "artist": "Rihanna", + "position": 18, + "title": "Needed Me" + }, + { + "artist": "gnash Featuring Olivia O'Brien", + "position": 19, + "title": "I Hate U I Love U" + }, + { + "artist": "Lukas Graham", + "position": 20, + "title": "Mama Said" + } + ], + "title": "2016 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Kelsea Ballerini", + "position": 1, + "title": "Peter Pan" + }, + { + "artist": "Kenny Chesney Featuring P!nk", + "position": 2, + "title": "Setting The World On Fire" + }, + { + "artist": "Dierks Bentley Featuring Elle King", + "position": 3, + "title": "Different For Girls" + }, + { + "artist": "Florida Georgia Line", + "position": 4, + "title": "H.O.L.Y." + }, + { + "artist": "Billy Currington", + "position": 5, + "title": "It Don't Hurt Like It Used To" + }, + { + "artist": "Sam Hunt", + "position": 6, + "title": "Make You Miss Me" + }, + { + "artist": "Miranda Lambert", + "position": 7, + "title": "Vice" + }, + { + "artist": "Cole Swindell", + "position": 8, + "title": "Middle Of A Memory" + }, + { + "artist": "Tucker Beathard", + "position": 9, + "title": "Rock On" + }, + { + "artist": "Jason Aldean", + "position": 10, + "title": "A Little More Summertime" + }, + { + "artist": "William Michael Morgan", + "position": 11, + "title": "I Met A Girl" + }, + { + "artist": "Keith Urban", + "position": 12, + "title": "Blue Ain't Your Color" + }, + { + "artist": "Blake Shelton", + "position": 13, + "title": "She's Got A Way With Words" + }, + { + "artist": "Luke Bryan", + "position": 14, + "title": "Move" + }, + { + "artist": "LoCash", + "position": 15, + "title": "I Know Somebody" + }, + { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "position": 16, + "title": "May We All" + }, + { + "artist": "Brett Young", + "position": 17, + "title": "Sleep Without You" + }, + { + "artist": "Justin Moore", + "position": 18, + "title": "You Look Like I Need A Drink" + }, + { + "artist": "Jason Aldean", + "position": 19, + "title": "Lights Come On" + }, + { + "artist": "Carrie Underwood", + "position": 20, + "title": "Church Bells" + }, + { + "artist": "Old Dominion", + "position": 21, + "title": "Song For Another Time" + }, + { + "artist": "Maren Morris", + "position": 22, + "title": "80s Mercedes" + }, + { + "artist": "Brett Eldredge", + "position": 23, + "title": "Wanna Be That Song" + }, + { + "artist": "Zac Brown Band", + "position": 24, + "title": "Castaway" + }, + { + "artist": "Tim McGraw", + "position": 25, + "title": "How I'll Always Be" + } + ], + "title": "2016 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "The Chainsmokers Featuring Halsey", + "position": 1, + "title": "Closer" + }, + { + "artist": "twenty one pilots", + "position": 2, + "title": "Heathens" + }, + { + "artist": "Major Lazer Featuring Justin Bieber & MO", + "position": 3, + "title": "Cold Water" + }, + { + "artist": "Sia Featuring Sean Paul", + "position": 4, + "title": "Cheap Thrills" + }, + { + "artist": "The Chainsmokers Featuring Daya", + "position": 5, + "title": "Don't Let Me Down" + }, + { + "artist": "DJ Snake Featuring Justin Bieber", + "position": 6, + "title": "Let Me Love You" + }, + { + "artist": "Calvin Harris Featuring Rihanna", + "position": 7, + "title": "This Is What You Came For" + }, + { + "artist": "Shawn Mendes", + "position": 8, + "title": "Treat You Better" + }, + { + "artist": "twenty one pilots", + "position": 9, + "title": "Ride" + }, + { + "artist": "Adele", + "position": 10, + "title": "Send My Love (To Your New Lover)" + }, + { + "artist": "Rihanna", + "position": 11, + "title": "Needed Me" + }, + { + "artist": "D.R.A.M. Featuring Lil Yachty", + "position": 12, + "title": "Broccoli" + }, + { + "artist": "Charlie Puth Featuring Selena Gomez", + "position": 13, + "title": "We Don't Talk Anymore" + }, + { + "artist": "Drake Featuring WizKid & Kyla", + "position": 14, + "title": "One Dance" + }, + { + "artist": "Lady Gaga", + "position": 15, + "title": "Perfect Illusion" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 16, + "title": "Too Good" + }, + { + "artist": "Ariana Grande", + "position": 17, + "title": "Into You" + }, + { + "artist": "Justin Timberlake", + "position": 18, + "title": "Can't Stop The Feeling!" + }, + { + "artist": "Ariana Grande Featuring Nicki Minaj", + "position": 19, + "title": "Side To Side" + }, + { + "artist": "Kiiara", + "position": 20, + "title": "Gold" + }, + { + "artist": "Tory Lanez", + "position": 21, + "title": "Luv" + }, + { + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "position": 22, + "title": "Sucker For Pain" + }, + { + "artist": "gnash Featuring Olivia O'Brien", + "position": 23, + "title": "I Hate U I Love U" + }, + { + "artist": "Sia Featuring Kendrick Lamar", + "position": 24, + "title": "The Greatest" + }, + { + "artist": "Desiigner", + "position": 25, + "title": "Panda" + }, + { + "artist": "Coldplay", + "position": 26, + "title": "Hymn For The Weekend" + }, + { + "artist": "DJ Khaled Featuring Drake", + "position": 27, + "title": "For Free" + }, + { + "artist": "Flume Featuring Kai", + "position": 28, + "title": "Never Be Like You" + }, + { + "artist": "X Ambassadors", + "position": 29, + "title": "Unsteady" + }, + { + "artist": "Drake", + "position": 30, + "title": "Controlla" + }, + { + "artist": "Kungs vs Cookin' On 3 Burners", + "position": 31, + "title": "This Girl" + }, + { + "artist": "Daya", + "position": 32, + "title": "Sit Still, Look Pretty" + }, + { + "artist": "Hailee Steinfeld & Grey Featuring Zedd", + "position": 33, + "title": "Starving" + }, + { + "artist": "Desiigner", + "position": 34, + "title": "Tiimmy Turner" + }, + { + "artist": "Fifth Harmony Featuring Ty Dolla $ign", + "position": 35, + "title": "Work From Home" + }, + { + "artist": "P!nk", + "position": 36, + "title": "Just Like Fire" + }, + { + "artist": "Usher Featuring Young Thug", + "position": 37, + "title": "No Limit" + }, + { + "artist": "twenty one pilots", + "position": 38, + "title": "Stressed Out" + }, + { + "artist": "Kelsea Ballerini", + "position": 39, + "title": "Peter Pan" + }, + { + "artist": "Kenny Chesney Featuring P!nk", + "position": 40, + "title": "Setting The World On Fire" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 41, + "title": "Work" + }, + { + "artist": "Dierks Bentley Featuring Elle King", + "position": 42, + "title": "Different For Girls" + }, + { + "artist": "Mike Posner", + "position": 43, + "title": "I Took A Pill In Ibiza" + }, + { + "artist": "Future Featuring The Weeknd", + "position": 44, + "title": "Low Life" + }, + { + "artist": "Lukas Graham", + "position": 45, + "title": "7 Years" + }, + { + "artist": "Lukas Graham", + "position": 46, + "title": "Mama Said" + }, + { + "artist": "Kanye West", + "position": 47, + "title": "Fade" + }, + { + "artist": "Young Thug And Travis Scott Featuring Quavo", + "position": 48, + "title": "Pick Up The Phone" + }, + { + "artist": "Florida Georgia Line", + "position": 49, + "title": "H.O.L.Y." + }, + { + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "position": 50, + "title": "Chill Bill" + }, + { + "artist": "Martin Garrix & Bebe Rexha", + "position": 51, + "title": "In The Name Of Love" + }, + { + "artist": "Fifth Harmony Featuring Fetty Wap", + "position": 52, + "title": "All In My Head (Flex)" + }, + { + "artist": "Meghan Trainor", + "position": 53, + "title": "Me Too" + }, + { + "artist": "Lil Uzi Vert", + "position": 54, + "title": "Money Longer" + }, + { + "artist": "Billy Currington", + "position": 55, + "title": "It Don't Hurt Like It Used To" + }, + { + "artist": "Kanye West", + "position": 56, + "title": "Father Stretch My Hands Pt. 1" + }, + { + "artist": "Sam Hunt", + "position": 57, + "title": "Make You Miss Me" + }, + { + "artist": "Kent Jones", + "position": 58, + "title": "Don't Mind" + }, + { + "artist": "DJ Khaled Featuring Jay Z & Future", + "position": 59, + "title": "I Got The Keys" + }, + { + "artist": "Miranda Lambert", + "position": 60, + "title": "Vice" + }, + { + "artist": "Marc E. Bassy Featuring G-Eazy", + "position": 61, + "title": "You & Me" + }, + { + "artist": "Alessia Cara", + "position": 62, + "title": "Scars To Your Beautiful" + }, + { + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "position": 63, + "title": "No Problem" + }, + { + "artist": "Cole Swindell", + "position": 64, + "title": "Middle Of A Memory" + }, + { + "artist": "Tucker Beathard", + "position": 65, + "title": "Rock On" + }, + { + "artist": "ScHoolboy Q Featuring Kanye West", + "position": 66, + "title": "THat Part" + }, + { + "artist": "Young M.A", + "position": 67, + "title": "OOOUUU" + }, + { + "artist": "Dae Dae", + "position": 68, + "title": "Wat U Mean (Aye, Aye, Aye)" + }, + { + "artist": "Jason Aldean", + "position": 69, + "title": "A Little More Summertime" + }, + { + "artist": "Amin�", + "position": 70, + "title": "Caroline" + }, + { + "artist": "William Michael Morgan", + "position": 71, + "title": "I Met A Girl" + }, + { + "artist": "Katy Perry", + "position": 72, + "title": "Rise" + }, + { + "artist": "Keith Urban", + "position": 73, + "title": "Blue Ain't Your Color" + }, + { + "artist": "Kehlani", + "position": 74, + "title": "Gangsta" + }, + { + "artist": "Post Malone Featuring Justin Bieber", + "position": 75, + "title": "Deja Vu" + }, + { + "artist": "Britney Spears Featuring G-Eazy", + "position": 76, + "title": "Make Me..." + }, + { + "artist": "YG Featuring Drake & Kamaiyah", + "position": 77, + "title": "Why You Always Hatin?" + }, + { + "artist": "Skrillex & Rick Ross", + "position": 78, + "title": "Purple Lamborghini" + }, + { + "artist": "Blake Shelton", + "position": 79, + "title": "She's Got A Way With Words" + }, + { + "artist": "Luke Bryan", + "position": 80, + "title": "Move" + }, + { + "artist": "DJ ESCO Featuring Future & Lil Uzi Vert", + "position": 81, + "title": "Too Much Sauce" + }, + { + "artist": "PARTYNEXTDOOR Featuring Drake", + "position": 82, + "title": "Come And See Me" + }, + { + "artist": "Lil Yachty", + "position": 83, + "title": "1 Night" + }, + { + "artist": "Wale", + "position": 84, + "title": "My PYT" + }, + { + "artist": "LoCash", + "position": 85, + "title": "I Know Somebody" + }, + { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "position": 86, + "title": "May We All" + }, + { + "artist": "Drake", + "position": 87, + "title": "Childs Play" + }, + { + "artist": "Beyonce", + "position": 88, + "title": "Hold Up" + }, + { + "artist": "Brett Young", + "position": 89, + "title": "Sleep Without You" + }, + { + "artist": "Jake Owen", + "position": 90, + "title": "American Country Love Song" + }, + { + "artist": "Justin Moore", + "position": 91, + "title": "You Look Like I Need A Drink" + }, + { + "artist": "Nicky Jam", + "position": 92, + "title": "With You Tonight / Hasta El Amanecer" + }, + { + "artist": "DJ Drama Featuring Chris Brown, Skeme & Lyquin", + "position": 93, + "title": "Wishing" + }, + { + "artist": "Chris Brown", + "position": 94, + "title": "Grass Ain't Greener" + }, + { + "artist": "DJ Khaled Featuring Nicki Minaj, Chris Brown & August Alsina", + "position": 95, + "title": "Do You Mind" + }, + { + "artist": "Rae Sremmurd Featuring Gucci Mane", + "position": 96, + "title": "Black Beatles" + }, + { + "artist": "French Montana Featuring Drake", + "position": 97, + "title": "No Shopping" + }, + { + "artist": "21 Savage & Metro Boomin Featuring Future", + "position": 98, + "title": "X" + }, + { + "artist": "Lil Uzi Vert", + "position": 99, + "title": "You Was Right" + }, + { + "artist": "Grace Featuring G-Eazy", + "position": 100, + "title": "You Don't Own Me" + } + ], + "title": "2016 - Hot 100" + }, + { + "songs": [ + { + "artist": "Drake", + "position": 1, + "title": "Hotline Bling" + }, + { + "artist": "The Weeknd", + "position": 2, + "title": "The Hills" + }, + { + "artist": "Alessia Cara", + "position": 3, + "title": "Here" + }, + { + "artist": "Fetty Wap Featuring Remy Boyz", + "position": 4, + "title": "679" + }, + { + "artist": "Drake & Future", + "position": 5, + "title": "Jumpman" + }, + { + "artist": "The Weeknd", + "position": 6, + "title": "Can't Feel My Face" + }, + { + "artist": "Travi$ Scott", + "position": 7, + "title": "Antidote" + }, + { + "artist": "The Weeknd", + "position": 8, + "title": "In The Night" + }, + { + "artist": "Bryson Tiller", + "position": 9, + "title": "Don't" + }, + { + "artist": "Post Malone", + "position": 10, + "title": "White Iverson" + }, + { + "artist": "Tory Lanez", + "position": 11, + "title": "Say It" + }, + { + "artist": "Future Featuring Drake", + "position": 12, + "title": "Where Ya At" + }, + { + "artist": "G-Eazy x Bebe Rexha", + "position": 13, + "title": "Me, Myself & I" + }, + { + "artist": "Fetty Wap", + "position": 14, + "title": "Again" + }, + { + "artist": "iLoveMemphis", + "position": 15, + "title": "Hit The Quan" + }, + { + "artist": "DeJ Loaf Featuring Big Sean", + "position": 16, + "title": "Back Up" + }, + { + "artist": "Fetty Wap Featuring Monty", + "position": 17, + "title": "My Way" + }, + { + "artist": "Bryson Tiller", + "position": 18, + "title": "Exchange" + }, + { + "artist": "Missy Elliott Featuring Pharrell Williams", + "position": 19, + "title": "WTF (Where They From)" + }, + { + "artist": "DLOW", + "position": 20, + "title": "Bet You Can't Do It Like Me" + }, + { + "artist": "Nelly Featuring Jeremih", + "position": 21, + "title": "The Fix" + }, + { + "artist": "Drake & Future", + "position": 22, + "title": "Big Rings" + }, + { + "artist": "Drake", + "position": 23, + "title": "Back To Back" + }, + { + "artist": "Yo Gotti", + "position": 24, + "title": "Down In The DM" + }, + { + "artist": "Young Thug", + "position": 25, + "title": "Best Friend" + } + ], + "title": "2015 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Elle King", + "position": 1, + "title": "Ex's & Oh's" + }, + { + "artist": "twenty one pilots", + "position": 2, + "title": "Stressed Out" + }, + { + "artist": "Coldplay", + "position": 3, + "title": "Adventure Of A Lifetime" + }, + { + "artist": "X Ambassadors", + "position": 4, + "title": "Renegades" + }, + { + "artist": "WALK THE MOON", + "position": 5, + "title": "Shut Up And Dance" + }, + { + "artist": "Fall Out Boy", + "position": 6, + "title": "Irresistible" + }, + { + "artist": "Stone Temple Pilots", + "position": 7, + "title": "Plush" + }, + { + "artist": "Fall Out Boy", + "position": 8, + "title": "Uma Thurman" + }, + { + "artist": "Stone Temple Pilots", + "position": 9, + "title": "Interstate Love Song" + }, + { + "artist": "James Bay", + "position": 10, + "title": "Let It Go" + }, + { + "artist": "Nathaniel Rateliff & The Night Sweats", + "position": 11, + "title": "S.O.B." + }, + { + "artist": "Stone Temple Pilots", + "position": 12, + "title": "Creep" + }, + { + "artist": "Coldplay", + "position": 13, + "title": "Everglow" + }, + { + "artist": "Panic! At The Disco", + "position": 14, + "title": "Emperor's New Clothes" + }, + { + "artist": "Coleman Hell", + "position": 15, + "title": "2 Heads" + }, + { + "artist": "Panic! At The Disco", + "position": 16, + "title": "Victorious" + }, + { + "artist": "Vance Joy", + "position": 17, + "title": "Fire And The Flood" + }, + { + "artist": "Disturbed", + "position": 18, + "title": "The Sound Of Silence" + }, + { + "artist": "X Ambassadors", + "position": 19, + "title": "Unsteady" + }, + { + "artist": "Coldplay", + "position": 20, + "title": "Hymn For The Weekend" + }, + { + "artist": "Bring Me The Horizon", + "position": 21, + "title": "Throne" + }, + { + "artist": "Cage The Elephant", + "position": 22, + "title": "Mess Around" + }, + { + "artist": "Death Cab For Cutie", + "position": 23, + "title": "The Ghosts Of Beverly Drive" + }, + { + "artist": "Disturbed", + "position": 24, + "title": "The Light" + }, + { + "artist": "Shinedown", + "position": 25, + "title": "Cut The Cord" + } + ], + "title": "2015 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Adele", + "position": 1, + "title": "Hello" + }, + { + "artist": "Justin Bieber", + "position": 2, + "title": "Sorry" + }, + { + "artist": "Selena Gomez", + "position": 3, + "title": "Same Old Love" + }, + { + "artist": "Alessia Cara", + "position": 4, + "title": "Here" + }, + { + "artist": "Ellie Goulding", + "position": 5, + "title": "On My Mind" + }, + { + "artist": "Meghan Trainor Featuring John Legend", + "position": 6, + "title": "Like I'm Gonna Lose You" + }, + { + "artist": "Drake", + "position": 7, + "title": "Hotline Bling" + }, + { + "artist": "Shawn Mendes", + "position": 8, + "title": "Stitches" + }, + { + "artist": "Elle King", + "position": 9, + "title": "Ex's & Oh's" + }, + { + "artist": "The Weeknd", + "position": 10, + "title": "In The Night" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Wildest Dreams" + }, + { + "artist": "Demi Lovato", + "position": 12, + "title": "Confident" + }, + { + "artist": "One Direction", + "position": 13, + "title": "Perfect" + }, + { + "artist": "Justin Bieber", + "position": 14, + "title": "What Do You Mean?" + }, + { + "artist": "Daya", + "position": 15, + "title": "Hide Away" + }, + { + "artist": "The Weeknd", + "position": 16, + "title": "The Hills" + }, + { + "artist": "The Chainsmokers Featuring ROZES", + "position": 17, + "title": "Roses" + }, + { + "artist": "Ariana Grande", + "position": 18, + "title": "Focus" + }, + { + "artist": "twenty one pilots", + "position": 19, + "title": "Stressed Out" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 20, + "title": "I Know What You Did Last Summer" + } + ], + "title": "2015 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Thomas Rhett", + "position": 1, + "title": "Die A Happy Man" + }, + { + "artist": "Sam Hunt", + "position": 2, + "title": "Break Up In A Small Town" + }, + { + "artist": "Cam", + "position": 3, + "title": "Burning House" + }, + { + "artist": "Blake Shelton", + "position": 4, + "title": "Gonna" + }, + { + "artist": "Chris Young", + "position": 5, + "title": "I'm Comin' Over" + }, + { + "artist": "Brothers Osborne", + "position": 6, + "title": "Stay A Little Longer" + }, + { + "artist": "Jason Aldean", + "position": 7, + "title": "Gonna Know We Were Here" + }, + { + "artist": "Luke Bryan Featuring Karen Fairchild", + "position": 8, + "title": "Home Alone Tonight" + }, + { + "artist": "Dan + Shay", + "position": 9, + "title": "Nothin' Like You" + }, + { + "artist": "Jana Kramer", + "position": 10, + "title": "I Got The Boy" + }, + { + "artist": "Tim McGraw", + "position": 11, + "title": "Top Of The World" + }, + { + "artist": "LoCash", + "position": 12, + "title": "I Love This Life" + }, + { + "artist": "Luke Bryan", + "position": 13, + "title": "Strip It Down" + }, + { + "artist": "Carrie Underwood", + "position": 14, + "title": "Smoke Break" + }, + { + "artist": "Kelsea Ballerini", + "position": 15, + "title": "Dibs" + }, + { + "artist": "Parmalee", + "position": 16, + "title": "Already Callin' You Mine" + }, + { + "artist": "Granger Smith", + "position": 17, + "title": "Backroad Song" + }, + { + "artist": "Zac Brown Band", + "position": 18, + "title": "Beautiful Drug" + }, + { + "artist": "Randy Houser", + "position": 19, + "title": "We Went" + }, + { + "artist": "Chris Stapleton", + "position": 20, + "title": "Tennessee Whiskey" + }, + { + "artist": "Eric Church", + "position": 21, + "title": "Mr. Misunderstood" + }, + { + "artist": "Keith Urban", + "position": 22, + "title": "Break On Me." + }, + { + "artist": "Brad Paisley", + "position": 23, + "title": "Country Nation" + }, + { + "artist": "Kenny Chesney", + "position": 24, + "title": "Save It For A Rainy Day" + }, + { + "artist": "Emily Ann Roberts", + "position": 25, + "title": "9 To 5" + } + ], + "title": "2015 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Adele", + "position": 1, + "title": "Hello" + }, + { + "artist": "Justin Bieber", + "position": 2, + "title": "Sorry" + }, + { + "artist": "Drake", + "position": 3, + "title": "Hotline Bling" + }, + { + "artist": "Justin Bieber", + "position": 4, + "title": "What Do You Mean?" + }, + { + "artist": "Justin Bieber", + "position": 5, + "title": "Love Yourself" + }, + { + "artist": "The Weeknd", + "position": 6, + "title": "The Hills" + }, + { + "artist": "Shawn Mendes", + "position": 7, + "title": "Stitches" + }, + { + "artist": "Alessia Cara", + "position": 8, + "title": "Here" + }, + { + "artist": "Selena Gomez", + "position": 9, + "title": "Same Old Love" + }, + { + "artist": "Meghan Trainor Featuring John Legend", + "position": 10, + "title": "Like I'm Gonna Lose You" + }, + { + "artist": "Fetty Wap Featuring Remy Boyz", + "position": 11, + "title": "679" + }, + { + "artist": "Elle King", + "position": 12, + "title": "Ex's & Oh's" + }, + { + "artist": "Ellie Goulding", + "position": 13, + "title": "On My Mind" + }, + { + "artist": "Drake & Future", + "position": 14, + "title": "Jumpman" + }, + { + "artist": "The Weeknd", + "position": 15, + "title": "Can't Feel My Face" + }, + { + "artist": "Travi$ Scott", + "position": 16, + "title": "Antidote" + }, + { + "artist": "Major Lazer & DJ Snake Featuring M0", + "position": 17, + "title": "Lean On" + }, + { + "artist": "Taylor Swift", + "position": 18, + "title": "Wildest Dreams" + }, + { + "artist": "The Weeknd", + "position": 19, + "title": "In The Night" + }, + { + "artist": "Bryson Tiller", + "position": 20, + "title": "Don't" + }, + { + "artist": "Jordan Smith", + "position": 21, + "title": "Somebody To Love" + }, + { + "artist": "Mariah Carey", + "position": 22, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Post Malone", + "position": 23, + "title": "White Iverson" + }, + { + "artist": "Ariana Grande", + "position": 24, + "title": "Focus" + }, + { + "artist": "Thomas Rhett", + "position": 25, + "title": "Die A Happy Man" + }, + { + "artist": "Silento", + "position": 26, + "title": "Watch Me" + }, + { + "artist": "Fetty Wap", + "position": 27, + "title": "Trap Queen" + }, + { + "artist": "twenty one pilots", + "position": 28, + "title": "Stressed Out" + }, + { + "artist": "The Chainsmokers Featuring ROZES", + "position": 29, + "title": "Roses" + }, + { + "artist": "Tory Lanez", + "position": 30, + "title": "Say It" + }, + { + "artist": "Demi Lovato", + "position": 31, + "title": "Confident" + }, + { + "artist": "One Direction", + "position": 32, + "title": "Perfect" + }, + { + "artist": "R. City Featuring Adam Levine", + "position": 33, + "title": "Locked Away" + }, + { + "artist": "Sam Hunt", + "position": 34, + "title": "Break Up In A Small Town" + }, + { + "artist": "Future Featuring Drake", + "position": 35, + "title": "Where Ya At" + }, + { + "artist": "G-Eazy x Bebe Rexha", + "position": 36, + "title": "Me, Myself & I" + }, + { + "artist": "J. Cole", + "position": 37, + "title": "No Role Modelz" + }, + { + "artist": "Skrillex & Diplo With Justin Bieber", + "position": 38, + "title": "Where Are U Now" + }, + { + "artist": "Coldplay", + "position": 39, + "title": "Adventure Of A Lifetime" + }, + { + "artist": "Selena Gomez Featuring A$AP Rocky", + "position": 40, + "title": "Good For You" + }, + { + "artist": "Wiz Khalifa Featuring Charlie Puth", + "position": 41, + "title": "See You Again" + }, + { + "artist": "Fetty Wap", + "position": 42, + "title": "Again" + }, + { + "artist": "OMI", + "position": 43, + "title": "Cheerleader" + }, + { + "artist": "Brenda Lee", + "position": 44, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "iLoveMemphis", + "position": 45, + "title": "Hit The Quan" + }, + { + "artist": "One Direction", + "position": 46, + "title": "Drag Me Down" + }, + { + "artist": "Cam", + "position": 47, + "title": "Burning House" + }, + { + "artist": "Daya", + "position": 48, + "title": "Hide Away" + }, + { + "artist": "DeJ Loaf Featuring Big Sean", + "position": 49, + "title": "Back Up" + }, + { + "artist": "X Ambassadors", + "position": 50, + "title": "Renegades" + }, + { + "artist": "Justin Bieber", + "position": 51, + "title": "I'll Show You" + }, + { + "artist": "Shawn Mendes & Camila Cabello", + "position": 52, + "title": "I Know What You Did Last Summer" + }, + { + "artist": "Bryson Tiller", + "position": 53, + "title": "Exchange" + }, + { + "artist": "Blake Shelton", + "position": 54, + "title": "Gonna" + }, + { + "artist": "Flo Rida", + "position": 55, + "title": "My House" + }, + { + "artist": "Gwen Stefani", + "position": 56, + "title": "Used To Love You" + }, + { + "artist": "Missy Elliott Featuring Pharrell Williams", + "position": 57, + "title": "WTF (Where They From)" + }, + { + "artist": "Rudimental Featuring Ed Sheeran", + "position": 58, + "title": "Lay It All On Me" + }, + { + "artist": "Brothers Osborne", + "position": 59, + "title": "Stay A Little Longer" + }, + { + "artist": "DLOW", + "position": 60, + "title": "Bet You Can't Do It Like Me" + }, + { + "artist": "Rachel Platten", + "position": 61, + "title": "Stand By You" + }, + { + "artist": "Nelly Featuring Jeremih", + "position": 62, + "title": "The Fix" + }, + { + "artist": "DNCE", + "position": 63, + "title": "Cake By The Ocean" + }, + { + "artist": "Drake & Future", + "position": 64, + "title": "Big Rings" + }, + { + "artist": "Jason Aldean", + "position": 65, + "title": "Gonna Know We Were Here" + }, + { + "artist": "Drake", + "position": 66, + "title": "Back To Back" + }, + { + "artist": "Luke Bryan Featuring Karen Fairchild", + "position": 67, + "title": "Home Alone Tonight" + }, + { + "artist": "Yo Gotti", + "position": 68, + "title": "Down In The DM" + }, + { + "artist": "Dan + Shay", + "position": 69, + "title": "Nothin' Like You" + }, + { + "artist": "Justin Bieber Featuring Halsey", + "position": 70, + "title": "The Feeling" + }, + { + "artist": "Jana Kramer", + "position": 71, + "title": "I Got The Boy" + }, + { + "artist": "Young Thug", + "position": 72, + "title": "Best Friend" + }, + { + "artist": "Tim McGraw", + "position": 73, + "title": "Top Of The World" + }, + { + "artist": "LoCash", + "position": 74, + "title": "I Love This Life" + }, + { + "artist": "Charlie Puth", + "position": 75, + "title": "One Call Away" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring Eric Nally, Melle Mel, Kool Moe Dee & Grandmaster Caz", + "position": 76, + "title": "Downtown" + }, + { + "artist": "Selena Gomez", + "position": 77, + "title": "Hands To Myself" + }, + { + "artist": "Adele", + "position": 78, + "title": "When We Were Young" + }, + { + "artist": "Rae Sremmurd", + "position": 79, + "title": "Come Get Her" + }, + { + "artist": "Luke Bryan", + "position": 80, + "title": "Strip It Down" + }, + { + "artist": "Ty Dolla $ign Featuring Future & Rae Sremmurd", + "position": 81, + "title": "Blase" + }, + { + "artist": "Halsey", + "position": 82, + "title": "New Americana" + }, + { + "artist": "Carrie Underwood", + "position": 83, + "title": "Smoke Break" + }, + { + "artist": "Fall Out Boy", + "position": 84, + "title": "Irresistible" + }, + { + "artist": "Justin Bieber", + "position": 85, + "title": "Purpose" + }, + { + "artist": "Kelsea Ballerini", + "position": 86, + "title": "Dibs" + }, + { + "artist": "Lil Dicky Featuring Fetty Wap & Rich Homie Quan", + "position": 87, + "title": "$ave Dat Money" + }, + { + "artist": "Drake", + "position": 88, + "title": "Right Hand" + }, + { + "artist": "Dawin", + "position": 89, + "title": "Dessert" + }, + { + "artist": "Justin Bieber", + "position": 90, + "title": "Mark My Words" + }, + { + "artist": "Parmalee", + "position": 91, + "title": "Already Callin' You Mine" + }, + { + "artist": "Big Sean Featuring Chris Brown & Ty Dolla $ign", + "position": 92, + "title": "Play No Games" + }, + { + "artist": "Granger Smith", + "position": 93, + "title": "Backroad Song" + }, + { + "artist": "G-Eazy", + "position": 94, + "title": "Random" + }, + { + "artist": "Justin Bieber", + "position": 95, + "title": "Company" + }, + { + "artist": "Justin Bieber Featuring Big Sean", + "position": 96, + "title": "No Pressure" + }, + { + "artist": "Rick Ross Featuring Chris Brown", + "position": 97, + "title": "Sorry" + }, + { + "artist": "G-Eazy Featuring Chris Brown & Tory Lanez", + "position": 98, + "title": "Drifting" + }, + { + "artist": "Chris Brown", + "position": 99, + "title": "Liquor" + }, + { + "artist": "Zac Brown Band", + "position": 100, + "title": "Beautiful Drug" + } + ], + "title": "2015 - Hot 100" + }, + { + "songs": [ + { + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "position": 1, + "title": "Only" + }, + { + "artist": "Big Sean Featuring E-40", + "position": 2, + "title": "I Don't F**k With You" + }, + { + "artist": "I LOVE MAKONNEN Featuring Drake", + "position": 3, + "title": "Tuesday" + }, + { + "artist": "Beyonce", + "position": 4, + "title": "7/11" + }, + { + "artist": "Rae Sremmurd", + "position": 5, + "title": "No Type" + }, + { + "artist": "Bobby Shmurda", + "position": 6, + "title": "Hot Boy" + }, + { + "artist": "O.T. Genasis", + "position": 7, + "title": "CoCo" + }, + { + "artist": "Iggy Azalea Featuring M0", + "position": 8, + "title": "Beg For It" + }, + { + "artist": "Jeremih Featuring YG", + "position": 9, + "title": "Don't Tell 'Em" + }, + { + "artist": "Iggy Azalea Featuring Rita Ora", + "position": 10, + "title": "Black Widow" + }, + { + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "position": 11, + "title": "Lifestyle" + }, + { + "artist": "Usher Featuring Juicy J", + "position": 12, + "title": "I Don't Mind" + }, + { + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "position": 13, + "title": "Hold You Down" + }, + { + "artist": "DeJ Loaf", + "position": 14, + "title": "Try Me" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 15, + "title": "Touchin, Lovin" + }, + { + "artist": "Chris Brown Featuring Usher & Rick Ross", + "position": 16, + "title": "New Flame" + }, + { + "artist": "Nicki Minaj", + "position": 17, + "title": "Anaconda" + }, + { + "artist": "Drake", + "position": 18, + "title": "0 To 100 / The Catch Up" + }, + { + "artist": "Rae Sremmurd", + "position": 19, + "title": "No Flex Zone" + }, + { + "artist": "J. Cole", + "position": 20, + "title": "Wet Dreamz" + }, + { + "artist": "The Weeknd", + "position": 21, + "title": "Often" + }, + { + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "position": 22, + "title": "***Flawless" + }, + { + "artist": "August Alsina", + "position": 23, + "title": "No Love" + }, + { + "artist": "Ne-Yo Featuring Juicy J", + "position": 24, + "title": "She Knows" + }, + { + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "position": 25, + "title": "G.D.F.R." + } + ], + "title": "2014 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Hozier", + "position": 1, + "title": "Take Me To Church" + }, + { + "artist": "Fall Out Boy", + "position": 2, + "title": "Centuries" + }, + { + "artist": "Vance Joy", + "position": 3, + "title": "Riptide" + }, + { + "artist": "Milky Chance", + "position": 4, + "title": "Stolen Dance" + }, + { + "artist": "Imagine Dragons", + "position": 5, + "title": "I Bet My Life" + }, + { + "artist": "WALK THE MOON", + "position": 6, + "title": "Shut Up And Dance" + }, + { + "artist": "Lorde", + "position": 7, + "title": "Yellow Flicker Beat" + }, + { + "artist": "Coldplay", + "position": 8, + "title": "A Sky Full Of Stars" + }, + { + "artist": "The White Buffalo & The Forest Rangers", + "position": 9, + "title": "Come Join The Murder" + }, + { + "artist": "Foo Fighters", + "position": 10, + "title": "Something From Nothing" + }, + { + "artist": "Matt McAndrew", + "position": 11, + "title": "I Still Haven't Found What I'm Looking For" + }, + { + "artist": "Fall Out Boy", + "position": 12, + "title": "Immortals" + }, + { + "artist": "alt-J", + "position": 13, + "title": "Left Hand Free" + }, + { + "artist": "George Ezra", + "position": 14, + "title": "Budapest" + }, + { + "artist": "Cage The Elephant", + "position": 15, + "title": "Cigarette Daydreams" + }, + { + "artist": "MisterWives", + "position": 16, + "title": "Reflections" + }, + { + "artist": "Hozier", + "position": 17, + "title": "From Eden" + }, + { + "artist": "Royal Blood", + "position": 18, + "title": "Figure It Out" + }, + { + "artist": "Matt McAndrew", + "position": 19, + "title": "The Blower's Daughter" + }, + { + "artist": "Bring Me The Horizon", + "position": 20, + "title": "Drown" + }, + { + "artist": "Matt McAndrew", + "position": 21, + "title": "Take Me To Church" + }, + { + "artist": "Hozier", + "position": 22, + "title": "Work Song" + }, + { + "artist": "Five Finger Death Punch", + "position": 23, + "title": "Wrong Side Of Heaven" + }, + { + "artist": "Bastille", + "position": 24, + "title": "Flaws" + }, + { + "artist": "Vance Joy", + "position": 25, + "title": "Mess Is Mine" + } + ], + "title": "2014 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Taylor Swift", + "position": 1, + "title": "Blank Space" + }, + { + "artist": "Maroon 5", + "position": 2, + "title": "Animals" + }, + { + "artist": "Calvin Harris Featuring John Newman", + "position": 3, + "title": "Blame" + }, + { + "artist": "Ed Sheeran", + "position": 4, + "title": "Don't" + }, + { + "artist": "Nick Jonas", + "position": 5, + "title": "Jealous" + }, + { + "artist": "Mr. Probz", + "position": 6, + "title": "Waves" + }, + { + "artist": "Ariana Grande & The Weeknd", + "position": 7, + "title": "Love Me Harder" + }, + { + "artist": "Sam Smith", + "position": 8, + "title": "I'm Not The Only One" + }, + { + "artist": "Tove Lo", + "position": 9, + "title": "Habits (Stay High)" + }, + { + "artist": "Hozier", + "position": 10, + "title": "Take Me To Church" + }, + { + "artist": "Selena Gomez", + "position": 11, + "title": "The Heart Wants What It Wants" + }, + { + "artist": "Taylor Swift", + "position": 12, + "title": "Shake It Off" + }, + { + "artist": "Iggy Azalea Featuring M0", + "position": 13, + "title": "Beg For It" + }, + { + "artist": "Mark Ronson Featuring Bruno Mars", + "position": 14, + "title": "Uptown Funk!" + }, + { + "artist": "Meghan Trainor", + "position": 15, + "title": "Lips Are Movin" + }, + { + "artist": "Alesso Featuring Tove Lo", + "position": 16, + "title": "Heroes (We Could Be)" + }, + { + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "position": 17, + "title": "Bang Bang" + }, + { + "artist": "Fall Out Boy", + "position": 18, + "title": "Centuries" + }, + { + "artist": "Jeremih Featuring YG", + "position": 19, + "title": "Don't Tell 'Em" + }, + { + "artist": "Jason Derulo", + "position": 20, + "title": "Trumpets" + } + ], + "title": "2014 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Tim McGraw", + "position": 1, + "title": "Shotgun Rider" + }, + { + "artist": "Carrie Underwood", + "position": 2, + "title": "Something In The Water" + }, + { + "artist": "Eric Church", + "position": 3, + "title": "Talladega" + }, + { + "artist": "Brad Paisley", + "position": 4, + "title": "Perfect Storm" + }, + { + "artist": "Blake Shelton Featuring Ashley Monroe", + "position": 5, + "title": "Lonely Tonight" + }, + { + "artist": "Florida Georgia Line", + "position": 6, + "title": "Sun Daze" + }, + { + "artist": "Craig Wayne Boyd", + "position": 7, + "title": "The Old Rugged Cross" + }, + { + "artist": "Luke Bryan", + "position": 8, + "title": "I See You" + }, + { + "artist": "Maddie & Tae", + "position": 9, + "title": "Girl In A Country Song" + }, + { + "artist": "Sam Hunt", + "position": 10, + "title": "Leave The Night On" + }, + { + "artist": "Keith Urban", + "position": 11, + "title": "Somewhere In My Car" + }, + { + "artist": "Kenny Chesney", + "position": 12, + "title": "Til It's Gone" + }, + { + "artist": "Parmalee", + "position": 13, + "title": "Close Your Eyes" + }, + { + "artist": "RaeLynn", + "position": 14, + "title": "God Made Girls" + }, + { + "artist": "Lee Brice", + "position": 15, + "title": "Drinking Class" + }, + { + "artist": "Thomas Rhett", + "position": 16, + "title": "Make Me Wanna" + }, + { + "artist": "Brett Eldredge", + "position": 17, + "title": "Mean To Me" + }, + { + "artist": "Jason Aldean", + "position": 18, + "title": "Just Gettin' Started" + }, + { + "artist": "Randy Houser", + "position": 19, + "title": "Like A Cowboy" + }, + { + "artist": "Jason Aldean", + "position": 20, + "title": "Burnin' It Down" + }, + { + "artist": "Florida Georgia Line", + "position": 21, + "title": "Dirt" + }, + { + "artist": "Darius Rucker", + "position": 22, + "title": "Homegrown Honey" + }, + { + "artist": "Blake Shelton", + "position": 23, + "title": "Neon Light" + }, + { + "artist": "Chris Young", + "position": 24, + "title": "Lonely Eyes" + }, + { + "artist": "Chase Bryant", + "position": 25, + "title": "Take It On Back" + } + ], + "title": "2014 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Taylor Swift", + "position": 1, + "title": "Blank Space" + }, + { + "artist": "Hozier", + "position": 2, + "title": "Take Me To Church" + }, + { + "artist": "Mark Ronson Featuring Bruno Mars", + "position": 3, + "title": "Uptown Funk!" + }, + { + "artist": "Meghan Trainor", + "position": 4, + "title": "Lips Are Movin" + }, + { + "artist": "Sam Smith", + "position": 5, + "title": "I'm Not The Only One" + }, + { + "artist": "Ed Sheeran", + "position": 6, + "title": "Thinking Out Loud" + }, + { + "artist": "Meghan Trainor", + "position": 7, + "title": "All About That Bass" + }, + { + "artist": "Maroon 5", + "position": 8, + "title": "Animals" + }, + { + "artist": "Ariana Grande & The Weeknd", + "position": 9, + "title": "Love Me Harder" + }, + { + "artist": "Taylor Swift", + "position": 10, + "title": "Shake It Off" + }, + { + "artist": "Nick Jonas", + "position": 11, + "title": "Jealous" + }, + { + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "position": 12, + "title": "Only" + }, + { + "artist": "Selena Gomez", + "position": 13, + "title": "The Heart Wants What It Wants" + }, + { + "artist": "Big Sean Featuring E-40", + "position": 14, + "title": "I Don't F**k With You" + }, + { + "artist": "Tove Lo", + "position": 15, + "title": "Habits (Stay High)" + }, + { + "artist": "I LOVE MAKONNEN Featuring Drake", + "position": 16, + "title": "Tuesday" + }, + { + "artist": "Ed Sheeran", + "position": 17, + "title": "Don't" + }, + { + "artist": "Mr. Probz", + "position": 18, + "title": "Waves" + }, + { + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "position": 19, + "title": "Bang Bang" + }, + { + "artist": "Beyonce", + "position": 20, + "title": "7/11" + }, + { + "artist": "Calvin Harris Featuring John Newman", + "position": 21, + "title": "Blame" + }, + { + "artist": "Rae Sremmurd", + "position": 22, + "title": "No Type" + }, + { + "artist": "James Newton Howard Featuring Jennifer Lawrence", + "position": 23, + "title": "The Hanging Tree" + }, + { + "artist": "Bobby Shmurda", + "position": 24, + "title": "Hot Boy" + }, + { + "artist": "Sam Smith", + "position": 25, + "title": "Stay With Me" + }, + { + "artist": "Fall Out Boy", + "position": 26, + "title": "Centuries" + }, + { + "artist": "O.T. Genasis", + "position": 27, + "title": "CoCo" + }, + { + "artist": "Iggy Azalea Featuring M0", + "position": 28, + "title": "Beg For It" + }, + { + "artist": "Jeremih Featuring YG", + "position": 29, + "title": "Don't Tell 'Em" + }, + { + "artist": "Iggy Azalea Featuring Rita Ora", + "position": 30, + "title": "Black Widow" + }, + { + "artist": "Jason Derulo", + "position": 31, + "title": "Trumpets" + }, + { + "artist": "Vance Joy", + "position": 32, + "title": "Riptide" + }, + { + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "position": 33, + "title": "Lifestyle" + }, + { + "artist": "Sia", + "position": 34, + "title": "Chandelier" + }, + { + "artist": "Alesso Featuring Tove Lo", + "position": 35, + "title": "Heroes (We Could Be)" + }, + { + "artist": "Clean Bandit Featuring Jess Glynne", + "position": 36, + "title": "Rather Be" + }, + { + "artist": "Usher Featuring Juicy J", + "position": 37, + "title": "I Don't Mind" + }, + { + "artist": "Carrie Underwood", + "position": 38, + "title": "Something In The Water" + }, + { + "artist": "Tim McGraw", + "position": 39, + "title": "Shotgun Rider" + }, + { + "artist": "Mariah Carey", + "position": 40, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Fergie", + "position": 41, + "title": "L.A.LOVE (la la)" + }, + { + "artist": "Milky Chance", + "position": 42, + "title": "Stolen Dance" + }, + { + "artist": "MAGIC!", + "position": 43, + "title": "Rude" + }, + { + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "position": 44, + "title": "Hold You Down" + }, + { + "artist": "DeJ Loaf", + "position": 45, + "title": "Try Me" + }, + { + "artist": "Echosmith", + "position": 46, + "title": "Cool Kids" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 47, + "title": "Touchin, Lovin" + }, + { + "artist": "Pentatonix", + "position": 48, + "title": "Mary, Did You Know?" + }, + { + "artist": "Chris Brown Featuring Usher & Rick Ross", + "position": 49, + "title": "New Flame" + }, + { + "artist": "T.I. Featuring Young Thug", + "position": 50, + "title": "About The Money" + }, + { + "artist": "Eric Church", + "position": 51, + "title": "Talladega" + }, + { + "artist": "Brad Paisley", + "position": 52, + "title": "Perfect Storm" + }, + { + "artist": "One Direction", + "position": 53, + "title": "Night Changes" + }, + { + "artist": "Blake Shelton Featuring Ashley Monroe", + "position": 54, + "title": "Lonely Tonight" + }, + { + "artist": "Nicki Minaj", + "position": 55, + "title": "Anaconda" + }, + { + "artist": "Ed Sheeran", + "position": 56, + "title": "Make It Rain" + }, + { + "artist": "Ella Henderson", + "position": 57, + "title": "Ghost" + }, + { + "artist": "Florida Georgia Line", + "position": 58, + "title": "Sun Daze" + }, + { + "artist": "Craig Wayne Boyd", + "position": 59, + "title": "The Old Rugged Cross" + }, + { + "artist": "David Guetta Featuring Sam Martin", + "position": 60, + "title": "Dangerous" + }, + { + "artist": "Luke Bryan", + "position": 61, + "title": "I See You" + }, + { + "artist": "Maddie & Tae", + "position": 62, + "title": "Girl In A Country Song" + }, + { + "artist": "Imagine Dragons", + "position": 63, + "title": "I Bet My Life" + }, + { + "artist": "Ariana Grande", + "position": 64, + "title": "Santa Tell Me" + }, + { + "artist": "Keith Urban", + "position": 65, + "title": "Somewhere In My Car" + }, + { + "artist": "Rae Sremmurd", + "position": 66, + "title": "No Flex Zone" + }, + { + "artist": "OneRepublic", + "position": 67, + "title": "I Lived" + }, + { + "artist": "Kenny Chesney", + "position": 68, + "title": "Til It's Gone" + }, + { + "artist": "Parmalee", + "position": 69, + "title": "Close Your Eyes" + }, + { + "artist": "One Direction", + "position": 70, + "title": "Steal My Girl" + }, + { + "artist": "RaeLynn", + "position": 71, + "title": "God Made Girls" + }, + { + "artist": "Lee Brice", + "position": 72, + "title": "Drinking Class" + }, + { + "artist": "J. Cole", + "position": 73, + "title": "Wet Dreamz" + }, + { + "artist": "The Weeknd", + "position": 74, + "title": "Often" + }, + { + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "position": 75, + "title": "***Flawless" + }, + { + "artist": "Taylor Swift", + "position": 76, + "title": "Style" + }, + { + "artist": "Colbie Caillat", + "position": 77, + "title": "Try" + }, + { + "artist": "August Alsina", + "position": 78, + "title": "No Love" + }, + { + "artist": "Lillywood & Robin Schulz", + "position": 79, + "title": "Prayer In C" + }, + { + "artist": "Thomas Rhett", + "position": 80, + "title": "Make Me Wanna" + }, + { + "artist": "Matt McAndrew", + "position": 81, + "title": "Make It Rain" + }, + { + "artist": "Brett Eldredge", + "position": 82, + "title": "Mean To Me" + }, + { + "artist": "WALK THE MOON", + "position": 83, + "title": "Shut Up And Dance" + }, + { + "artist": "Jason Aldean", + "position": 84, + "title": "Just Gettin' Started" + }, + { + "artist": "Ne-Yo Featuring Juicy J", + "position": 85, + "title": "She Knows" + }, + { + "artist": "Lorde", + "position": 86, + "title": "Yellow Flicker Beat" + }, + { + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "position": 87, + "title": "G.D.F.R." + }, + { + "artist": "Pitbull Featuring John Ryan", + "position": 88, + "title": "Fireball" + }, + { + "artist": "Nico & Vinz", + "position": 89, + "title": "In Your Arms" + }, + { + "artist": "Sam Smith", + "position": 90, + "title": "Have Yourself A Merry Little Christmas" + }, + { + "artist": "Randy Houser", + "position": 91, + "title": "Like A Cowboy" + }, + { + "artist": "Kid Ink Featuring Usher & Tinashe", + "position": 92, + "title": "Body Language" + }, + { + "artist": "The White Buffalo & The Forest Rangers", + "position": 93, + "title": "Come Join The Murder" + }, + { + "artist": "Fifth Harmony", + "position": 94, + "title": "Sledgehammer" + }, + { + "artist": "J. Cole", + "position": 95, + "title": "No Role Modelz" + }, + { + "artist": "Jessie J Featuring 2 Chainz", + "position": 96, + "title": "Burnin' Up" + }, + { + "artist": "Darius Rucker", + "position": 97, + "title": "Homegrown Honey" + }, + { + "artist": "Chris Jamison", + "position": 98, + "title": "When I Was Your Man" + }, + { + "artist": "Blake Shelton", + "position": 99, + "title": "Neon Light" + }, + { + "artist": "Charli XCX", + "position": 100, + "title": "Break The Rules" + } + ], + "title": "2014 - Hot 100" + }, + { + "songs": [ + { + "artist": "Eminem Featuring Rihanna", + "position": 1, + "title": "The Monster" + }, + { + "artist": "Drake Featuring Majid Jordan", + "position": 2, + "title": "Hold On, We're Going Home" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "position": 3, + "title": "White Walls" + }, + { + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "position": 4, + "title": "23" + }, + { + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "position": 5, + "title": "My Hitta" + }, + { + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "position": 6, + "title": "Blurred Lines" + }, + { + "artist": "Jay Z Featuring Justin Timberlake", + "position": 7, + "title": "Holy Grail" + }, + { + "artist": "Chris Brown Featuring Nicki Minaj", + "position": 8, + "title": "Love More" + }, + { + "artist": "Sevyn Streeter Featuring Chris Brown", + "position": 9, + "title": "It Won't Stop" + }, + { + "artist": "Eminem", + "position": 10, + "title": "Rap God" + }, + { + "artist": "Kid Ink Featuring Chris Brown", + "position": 11, + "title": "Show Me" + }, + { + "artist": "Drake Featuring 2 Chainz & Big Sean", + "position": 12, + "title": "All Me" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 13, + "title": "Confident" + }, + { + "artist": "Sage The Gemini Featuring IamSu!", + "position": 14, + "title": "Gas Pedal" + }, + { + "artist": "John Legend", + "position": 15, + "title": "All Of Me" + }, + { + "artist": "Jay Z", + "position": 16, + "title": "Tom Ford" + }, + { + "artist": "Justin Timberlake", + "position": 17, + "title": "TKO" + }, + { + "artist": "August Alsina Featuring Trinidad James", + "position": 18, + "title": "I Luv This Sh*t" + }, + { + "artist": "B.o.B Featuring 2 Chainz", + "position": 19, + "title": "HeadBand" + }, + { + "artist": "Drake", + "position": 20, + "title": "The Language" + }, + { + "artist": "Kanye West", + "position": 21, + "title": "Bound 2" + }, + { + "artist": "Sage The Gemini", + "position": 22, + "title": "Red Nose" + }, + { + "artist": "Big Sean Featuring Lil Wayne & Jhene Aiko", + "position": 23, + "title": "Beware" + }, + { + "artist": "Eminem", + "position": 24, + "title": "Berzerk" + }, + { + "artist": "Future", + "position": 25, + "title": "Honest" + } + ], + "title": "2013 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Lorde", + "position": 1, + "title": "Royals" + }, + { + "artist": "Imagine Dragons", + "position": 2, + "title": "Demons" + }, + { + "artist": "Passenger", + "position": 3, + "title": "Let Her Go" + }, + { + "artist": "The Neighbourhood", + "position": 4, + "title": "Sweater Weather" + }, + { + "artist": "Lorde", + "position": 5, + "title": "Team" + }, + { + "artist": "Bastille", + "position": 6, + "title": "Pompeii" + }, + { + "artist": "Imagine Dragons", + "position": 7, + "title": "Radioactive" + }, + { + "artist": "American Authors", + "position": 8, + "title": "Best Day Of My Life" + }, + { + "artist": "AWOLNATION", + "position": 9, + "title": "Sail" + }, + { + "artist": "Capital Cities", + "position": 10, + "title": "Safe And Sound" + }, + { + "artist": "Fall Out Boy", + "position": 11, + "title": "Alone Together" + }, + { + "artist": "Arctic Monkeys", + "position": 12, + "title": "Do I Wanna Know?" + }, + { + "artist": "The Fray", + "position": 13, + "title": "Love Don't Die" + }, + { + "artist": "Fitz And The Tantrums", + "position": 14, + "title": "Out Of My League" + }, + { + "artist": "Lorde", + "position": 15, + "title": "Tennis Court" + }, + { + "artist": "Cage The Elephant", + "position": 16, + "title": "Come A Little Closer" + }, + { + "artist": "Will Champlin", + "position": 17, + "title": "Carry On" + }, + { + "artist": "Ed Sheeran", + "position": 18, + "title": "I See Fire" + }, + { + "artist": "Goo Goo Dolls", + "position": 19, + "title": "Come To Me" + }, + { + "artist": "Zach Sobiech", + "position": 20, + "title": "Clouds" + }, + { + "artist": "John Mayer Featuring Katy Perry", + "position": 21, + "title": "Who You Love" + }, + { + "artist": "Pearl Jam", + "position": 22, + "title": "Sirens" + }, + { + "artist": "James Wolpert", + "position": 23, + "title": "With Or Without You" + }, + { + "artist": "Panic! At The Disco Featuring Lolo", + "position": 24, + "title": "Miss Jackson" + }, + { + "artist": "The Neighbourhood", + "position": 25, + "title": "Afraid" + } + ], + "title": "2013 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Eminem Featuring Rihanna", + "position": 1, + "title": "The Monster" + }, + { + "artist": "OneRepublic", + "position": 2, + "title": "Counting Stars" + }, + { + "artist": "Imagine Dragons", + "position": 3, + "title": "Demons" + }, + { + "artist": "Pitbull Featuring Ke$ha", + "position": 4, + "title": "Timber" + }, + { + "artist": "Avicii", + "position": 5, + "title": "Wake Me Up!" + }, + { + "artist": "Miley Cyrus", + "position": 6, + "title": "Wrecking Ball" + }, + { + "artist": "Zedd Featuring Hayley Williams", + "position": 7, + "title": "Stay The Night" + }, + { + "artist": "Lorde", + "position": 8, + "title": "Royals" + }, + { + "artist": "Katy Perry", + "position": 9, + "title": "Unconditionally" + }, + { + "artist": "Lady Gaga Featuring R. Kelly", + "position": 10, + "title": "Do What U Want" + }, + { + "artist": "The Neighbourhood", + "position": 11, + "title": "Sweater Weather" + }, + { + "artist": "Drake Featuring Majid Jordan", + "position": 12, + "title": "Hold On, We're Going Home" + }, + { + "artist": "Passenger", + "position": 13, + "title": "Let Her Go" + }, + { + "artist": "Ellie Goulding", + "position": 14, + "title": "Burn" + }, + { + "artist": "One Direction", + "position": 15, + "title": "Story Of My Life" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "position": 16, + "title": "White Walls" + }, + { + "artist": "Lady Gaga", + "position": 17, + "title": "Applause" + }, + { + "artist": "Jason Derulo", + "position": 18, + "title": "Marry Me" + }, + { + "artist": "Katy Perry", + "position": 19, + "title": "Roar" + }, + { + "artist": "Selena Gomez", + "position": 20, + "title": "Slow Down" + } + ], + "title": "2013 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Florida Georgia Line", + "position": 1, + "title": "Stay" + }, + { + "artist": "Parmalee", + "position": 2, + "title": "Carolina" + }, + { + "artist": "Luke Bryan", + "position": 3, + "title": "Drink A Beer" + }, + { + "artist": "Eli Young Band", + "position": 4, + "title": "Drunk Last Night" + }, + { + "artist": "David Nail", + "position": 5, + "title": "Whatever She's Got" + }, + { + "artist": "Cassadee Pope", + "position": 6, + "title": "Wasting All These Tears" + }, + { + "artist": "Zac Brown Band", + "position": 7, + "title": "Sweet Annie" + }, + { + "artist": "Cole Swindell", + "position": 8, + "title": "Chillin' It" + }, + { + "artist": "Luke Bryan", + "position": 9, + "title": "That's My Kind Of Night" + }, + { + "artist": "Keith Urban And Miranda Lambert", + "position": 10, + "title": "We Were Us" + }, + { + "artist": "The Band Perry", + "position": 11, + "title": "Don't Let Me Be Lonely" + }, + { + "artist": "Jason Aldean", + "position": 12, + "title": "When She Says Baby" + }, + { + "artist": "Eric Paslay", + "position": 13, + "title": "Friday Night" + }, + { + "artist": "Darius Rucker", + "position": 14, + "title": "Radio" + }, + { + "artist": "Jon Pardi", + "position": 15, + "title": "Up All Night" + }, + { + "artist": "Lady Antebellum", + "position": 16, + "title": "Compass" + }, + { + "artist": "Blake Shelton", + "position": 17, + "title": "Mine Would Be You" + }, + { + "artist": "Hunter Hayes Featuring Jason Mraz", + "position": 18, + "title": "Everybody's Got Somebody But Me" + }, + { + "artist": "Scotty McCreery", + "position": 19, + "title": "See You Tonight" + }, + { + "artist": "Frankie Ballard", + "position": 20, + "title": "Helluva Life" + }, + { + "artist": "Danielle Bradbery", + "position": 21, + "title": "The Heart Of Dixie" + }, + { + "artist": "Tim McGraw", + "position": 22, + "title": "Southern Girl" + }, + { + "artist": "Eric Church", + "position": 23, + "title": "The Outsiders" + }, + { + "artist": "Dierks Bentley", + "position": 24, + "title": "I Hold On" + }, + { + "artist": "Dan + Shay", + "position": 25, + "title": "19 You + Me" + } + ], + "title": "2013 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Eminem Featuring Rihanna", + "position": 1, + "title": "The Monster" + }, + { + "artist": "Pitbull Featuring Ke$ha", + "position": 2, + "title": "Timber" + }, + { + "artist": "OneRepublic", + "position": 3, + "title": "Counting Stars" + }, + { + "artist": "A Great Big World & Christina Aguilera", + "position": 4, + "title": "Say Something" + }, + { + "artist": "Lorde", + "position": 5, + "title": "Royals" + }, + { + "artist": "Imagine Dragons", + "position": 6, + "title": "Demons" + }, + { + "artist": "Avicii", + "position": 7, + "title": "Wake Me Up!" + }, + { + "artist": "Miley Cyrus", + "position": 8, + "title": "Wrecking Ball" + }, + { + "artist": "Passenger", + "position": 9, + "title": "Let Her Go" + }, + { + "artist": "One Direction", + "position": 10, + "title": "Story Of My Life" + }, + { + "artist": "Drake Featuring Majid Jordan", + "position": 11, + "title": "Hold On, We're Going Home" + }, + { + "artist": "Katy Perry", + "position": 12, + "title": "Roar" + }, + { + "artist": "Ellie Goulding", + "position": 13, + "title": "Burn" + }, + { + "artist": "The Neighbourhood", + "position": 14, + "title": "Sweater Weather" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "position": 15, + "title": "White Walls" + }, + { + "artist": "Lady Gaga Featuring R. Kelly", + "position": 16, + "title": "Do What U Want" + }, + { + "artist": "Katy Perry", + "position": 17, + "title": "Unconditionally" + }, + { + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "position": 18, + "title": "23" + }, + { + "artist": "Zedd Featuring Hayley Williams", + "position": 19, + "title": "Stay The Night" + }, + { + "artist": "Lady Gaga", + "position": 20, + "title": "Applause" + }, + { + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "position": 21, + "title": "My Hitta" + }, + { + "artist": "Katy Perry Featuring Juicy J", + "position": 22, + "title": "Dark Horse" + }, + { + "artist": "Lorde", + "position": 23, + "title": "Team" + }, + { + "artist": "Bastille", + "position": 24, + "title": "Pompeii" + }, + { + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "position": 25, + "title": "Blurred Lines" + }, + { + "artist": "Jason Derulo", + "position": 26, + "title": "Marry Me" + }, + { + "artist": "Mariah Carey", + "position": 27, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Jay Z Featuring Justin Timberlake", + "position": 28, + "title": "Holy Grail" + }, + { + "artist": "Florida Georgia Line", + "position": 29, + "title": "Stay" + }, + { + "artist": "Imagine Dragons", + "position": 30, + "title": "Radioactive" + }, + { + "artist": "Chris Brown Featuring Nicki Minaj", + "position": 31, + "title": "Love More" + }, + { + "artist": "Sevyn Streeter Featuring Chris Brown", + "position": 32, + "title": "It Won't Stop" + }, + { + "artist": "Sara Bareilles", + "position": 33, + "title": "Brave" + }, + { + "artist": "Eminem", + "position": 34, + "title": "Rap God" + }, + { + "artist": "American Authors", + "position": 35, + "title": "Best Day Of My Life" + }, + { + "artist": "Parmalee", + "position": 36, + "title": "Carolina" + }, + { + "artist": "Luke Bryan", + "position": 37, + "title": "Drink A Beer" + }, + { + "artist": "AWOLNATION", + "position": 38, + "title": "Sail" + }, + { + "artist": "Kid Ink Featuring Chris Brown", + "position": 39, + "title": "Show Me" + }, + { + "artist": "Drake Featuring 2 Chainz & Big Sean", + "position": 40, + "title": "All Me" + }, + { + "artist": "Justin Bieber Featuring Chance The Rapper", + "position": 41, + "title": "Confident" + }, + { + "artist": "Eli Young Band", + "position": 42, + "title": "Drunk Last Night" + }, + { + "artist": "David Nail", + "position": 43, + "title": "Whatever She's Got" + }, + { + "artist": "Sage The Gemini Featuring IamSu!", + "position": 44, + "title": "Gas Pedal" + }, + { + "artist": "Capital Cities", + "position": 45, + "title": "Safe And Sound" + }, + { + "artist": "Cassadee Pope", + "position": 46, + "title": "Wasting All These Tears" + }, + { + "artist": "Zac Brown Band", + "position": 47, + "title": "Sweet Annie" + }, + { + "artist": "Cole Swindell", + "position": 48, + "title": "Chillin' It" + }, + { + "artist": "Lana Del Rey & Cedric Gervais", + "position": 49, + "title": "Summertime Sadness" + }, + { + "artist": "Selena Gomez", + "position": 50, + "title": "Slow Down" + }, + { + "artist": "Pentatonix", + "position": 51, + "title": "Little Drummer Boy" + }, + { + "artist": "John Legend", + "position": 52, + "title": "All Of Me" + }, + { + "artist": "Luke Bryan", + "position": 53, + "title": "That's My Kind Of Night" + }, + { + "artist": "Idina Menzel", + "position": 54, + "title": "Let It Go" + }, + { + "artist": "Rebecca Black & Dave Days", + "position": 55, + "title": "Saturday" + }, + { + "artist": "Martin Garrix", + "position": 56, + "title": "Animals" + }, + { + "artist": "Keith Urban And Miranda Lambert", + "position": 57, + "title": "We Were Us" + }, + { + "artist": "Demi Lovato", + "position": 58, + "title": "Let It Go" + }, + { + "artist": "The Band Perry", + "position": 59, + "title": "Don't Let Me Be Lonely" + }, + { + "artist": "Jason Aldean", + "position": 60, + "title": "When She Says Baby" + }, + { + "artist": "Justin Timberlake", + "position": 61, + "title": "TKO" + }, + { + "artist": "Eric Paslay", + "position": 62, + "title": "Friday Night" + }, + { + "artist": "August Alsina Featuring Trinidad James", + "position": 63, + "title": "I Luv This Sh*t" + }, + { + "artist": "Tessanne Chin", + "position": 64, + "title": "Bridge Over Troubled Water" + }, + { + "artist": "Darius Rucker", + "position": 65, + "title": "Radio" + }, + { + "artist": "Avicii", + "position": 66, + "title": "Hey Brother" + }, + { + "artist": "Joe Nichols", + "position": 67, + "title": "Sunny And 75" + }, + { + "artist": "B.o.B Featuring 2 Chainz", + "position": 68, + "title": "HeadBand" + }, + { + "artist": "Zendaya", + "position": 69, + "title": "Replay" + }, + { + "artist": "Drake", + "position": 70, + "title": "The Language" + }, + { + "artist": "Jon Pardi", + "position": 71, + "title": "Up All Night" + }, + { + "artist": "John Newman", + "position": 72, + "title": "Love Me Again" + }, + { + "artist": "Lady Antebellum", + "position": 73, + "title": "Compass" + }, + { + "artist": "Blake Shelton", + "position": 74, + "title": "Mine Would Be You" + }, + { + "artist": "Lea Michele", + "position": 75, + "title": "Cannonball" + }, + { + "artist": "Kanye West", + "position": 76, + "title": "Bound 2" + }, + { + "artist": "Britney Spears", + "position": 77, + "title": "Perfume" + }, + { + "artist": "Eminem", + "position": 78, + "title": "Berzerk" + }, + { + "artist": "Hunter Hayes Featuring Jason Mraz", + "position": 79, + "title": "Everybody's Got Somebody But Me" + }, + { + "artist": "Kelly Clarkson", + "position": 80, + "title": "Underneath The Tree" + }, + { + "artist": "Future", + "position": 81, + "title": "Honest" + }, + { + "artist": "T-Pain Featuring B.o.B", + "position": 82, + "title": "Up Down (Do This All Day)" + }, + { + "artist": "Fall Out Boy", + "position": 83, + "title": "Alone Together" + }, + { + "artist": "Justin Bieber", + "position": 84, + "title": "All That Matters" + }, + { + "artist": "Aloe Blacc", + "position": 85, + "title": "The Man" + }, + { + "artist": "Scotty McCreery", + "position": 86, + "title": "See You Tonight" + }, + { + "artist": "Jacquie Lee", + "position": 87, + "title": "Angel" + }, + { + "artist": "Frankie Ballard", + "position": 88, + "title": "Helluva Life" + }, + { + "artist": "R. Kelly Featuring 2 Chainz", + "position": 89, + "title": "My Story" + }, + { + "artist": "Juicy J Featuring Wale & Trey Songz", + "position": 90, + "title": "Bounce It" + }, + { + "artist": "Arctic Monkeys", + "position": 91, + "title": "Do I Wanna Know?" + }, + { + "artist": "Ylvis", + "position": 92, + "title": "The Fox" + }, + { + "artist": "Rihanna", + "position": 93, + "title": "What Now" + }, + { + "artist": "One Direction", + "position": 94, + "title": "Best Song Ever" + }, + { + "artist": "Lupe Fiasco Featuring Ed Sheeran", + "position": 95, + "title": "Old School Love" + }, + { + "artist": "Eminem", + "position": 96, + "title": "Survival" + }, + { + "artist": "Danielle Bradbery", + "position": 97, + "title": "The Heart Of Dixie" + }, + { + "artist": "Drake Featuring Jay Z", + "position": 98, + "title": "Pound Cake / Paris Morton Music 2" + }, + { + "artist": "Childish Gambino", + "position": 99, + "title": "V. 3005" + }, + { + "artist": "Ariana Grande Featuring Big Sean", + "position": 100, + "title": "Right There" + } + ], + "title": "2013 - Hot 100" + }, + { + "songs": [ + { + "artist": "Rihanna", + "position": 1, + "title": "Diamonds" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "position": 2, + "title": "Thrift Shop" + }, + { + "artist": "Alicia Keys Featuring Nicki Minaj", + "position": 3, + "title": "Girl On Fire" + }, + { + "artist": "Kendrick Lamar", + "position": 4, + "title": "Swimming Pools (Drank)" + }, + { + "artist": "Kanye West, Jay-Z, Big Sean", + "position": 5, + "title": "Clique" + }, + { + "artist": "Miguel", + "position": 6, + "title": "Adorn" + }, + { + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "position": 7, + "title": "F**kin Problems" + }, + { + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "position": 8, + "title": "Bandz A Make Her Dance" + }, + { + "artist": "Frank Ocean", + "position": 9, + "title": "Thinkin Bout You" + }, + { + "artist": "Lil Wayne Featuring Detail", + "position": 10, + "title": "No Worries" + }, + { + "artist": "2 Chainz", + "position": 11, + "title": "I'm Different" + }, + { + "artist": "French Montana Featuring Rick Ross, Drake, Lil Wayne", + "position": 12, + "title": "Pop That" + }, + { + "artist": "The Weeknd", + "position": 13, + "title": "Wicked Games" + }, + { + "artist": "2 Chainz Featuring Kanye West", + "position": 14, + "title": "Birthday Song" + }, + { + "artist": "Wiz Khalifa Featuring The Weeknd", + "position": 15, + "title": "Remember You" + }, + { + "artist": "T.I. Featuring Lil Wayne", + "position": 16, + "title": "Ball" + }, + { + "artist": "Kanye West, Big Sean, Pusha T, 2 Chainz", + "position": 17, + "title": "Mercy" + }, + { + "artist": "2 Chainz Featuring Drake", + "position": 18, + "title": "No Lie" + }, + { + "artist": "Chris Brown", + "position": 19, + "title": "Don't Judge Me" + }, + { + "artist": "Rick Ross Featuring Wale & Drake", + "position": 20, + "title": "Diced Pineapples" + }, + { + "artist": "Kendrick Lamar Featuring Drake", + "position": 21, + "title": "Poetic Justice" + }, + { + "artist": "Chief Keef", + "position": 22, + "title": "Love Sosa" + }, + { + "artist": "Future", + "position": 23, + "title": "Turn On The Lights" + }, + { + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "position": 24, + "title": "Celebration" + }, + { + "artist": "Big Sean", + "position": 25, + "title": "Guap" + } + ], + "title": "2012 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "The Lumineers", + "position": 1, + "title": "Ho Hey" + }, + { + "artist": "Phillip Phillips", + "position": 2, + "title": "Home" + }, + { + "artist": "fun.", + "position": 3, + "title": "Some Nights" + }, + { + "artist": "Ed Sheeran", + "position": 4, + "title": "The A Team" + }, + { + "artist": "Imagine Dragons", + "position": 5, + "title": "It's Time" + }, + { + "artist": "Alex Clare", + "position": 6, + "title": "Too Close" + }, + { + "artist": "Of Monsters And Men", + "position": 7, + "title": "Little Talks" + }, + { + "artist": "Mumford & Sons", + "position": 8, + "title": "I Will Wait" + }, + { + "artist": "Imagine Dragons", + "position": 9, + "title": "Radioactive" + }, + { + "artist": "Muse", + "position": 10, + "title": "Madness" + }, + { + "artist": "Terry McDermott", + "position": 11, + "title": "Let It Be" + }, + { + "artist": "The Lumineers", + "position": 12, + "title": "Stubborn Love" + }, + { + "artist": "Passion Pit", + "position": 13, + "title": "Take A Walk" + }, + { + "artist": "fun.", + "position": 14, + "title": "Carry On" + }, + { + "artist": "Of Monsters And Men", + "position": 15, + "title": "Mountain Sound" + }, + { + "artist": "The Black Keys", + "position": 16, + "title": "Little Black Submarines" + }, + { + "artist": "Imagine Dragons", + "position": 17, + "title": "Demons" + }, + { + "artist": "Mumford & Sons", + "position": 18, + "title": "Babel" + }, + { + "artist": "Atlas Genius", + "position": 19, + "title": "Trojans" + }, + { + "artist": "The Lumineers", + "position": 20, + "title": "Flowers In Your Hair" + }, + { + "artist": "Three Days Grace", + "position": 21, + "title": "Chalk Outline" + }, + { + "artist": "Imagine Dragons", + "position": 22, + "title": "On Top Of The World" + }, + { + "artist": "Phillip Phillips", + "position": 23, + "title": "Gone, Gone, Gone" + }, + { + "artist": "The Lumineers", + "position": 24, + "title": "Slow It Down" + }, + { + "artist": "Ed Sheeran", + "position": 25, + "title": "Give Me Love" + } + ], + "title": "2012 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Bruno Mars", + "position": 1, + "title": "Locked Out Of Heaven" + }, + { + "artist": "Ke$ha", + "position": 2, + "title": "Die Young" + }, + { + "artist": "Rihanna", + "position": 3, + "title": "Diamonds" + }, + { + "artist": "Ne-Yo", + "position": 4, + "title": "Let Me Love You (Until You Learn To Love Yourself)" + }, + { + "artist": "Maroon 5", + "position": 5, + "title": "One More Night" + }, + { + "artist": "The Lumineers", + "position": 6, + "title": "Ho Hey" + }, + { + "artist": "Flo Rida", + "position": 7, + "title": "I Cry" + }, + { + "artist": "Phillip Phillips", + "position": 8, + "title": "Home" + }, + { + "artist": "fun.", + "position": 9, + "title": "Some Nights" + }, + { + "artist": "Justin Bieber Featuring Nicki Minaj", + "position": 10, + "title": "Beauty And A Beat" + }, + { + "artist": "P!nk", + "position": 11, + "title": "Try" + }, + { + "artist": "Ed Sheeran", + "position": 12, + "title": "The A Team" + }, + { + "artist": "Taylor Swift", + "position": 13, + "title": "I Knew You Were Trouble." + }, + { + "artist": "Swedish House Mafia Featuring John Martin", + "position": 14, + "title": "Don't You Worry Child" + }, + { + "artist": "Nicki Minaj", + "position": 15, + "title": "Va Va Voom" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "We Are Never Ever Getting Back Together" + }, + { + "artist": "Pitbull Featuring TJR", + "position": 17, + "title": "Don't Stop The Party" + }, + { + "artist": "Kelly Clarkson", + "position": 18, + "title": "Catch My Breath" + }, + { + "artist": "The Script Featuring will.i.am", + "position": 19, + "title": "Hall Of Fame" + }, + { + "artist": "One Direction", + "position": 20, + "title": "Little Things" + } + ], + "title": "2012 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Florida Georgia Line", + "position": 1, + "title": "Cruise" + }, + { + "artist": "Taylor Swift", + "position": 2, + "title": "We Are Never Ever Getting Back Together" + }, + { + "artist": "Hunter Hayes", + "position": 3, + "title": "Wanted" + }, + { + "artist": "Cassadee Pope", + "position": 4, + "title": "Stupid Boy" + }, + { + "artist": "The Band Perry", + "position": 5, + "title": "Better Dig Two" + }, + { + "artist": "Zac Brown Band", + "position": 6, + "title": "Goodbye In Her Eyes" + }, + { + "artist": "Kip Moore", + "position": 7, + "title": "Beer Money" + }, + { + "artist": "Justin Moore", + "position": 8, + "title": "Til My Last Day" + }, + { + "artist": "Gary Allan", + "position": 9, + "title": "Every Storm (Runs Out Of Rain)" + }, + { + "artist": "Eric Church", + "position": 10, + "title": "Creepin'" + }, + { + "artist": "Randy Houser", + "position": 11, + "title": "How Country Feels" + }, + { + "artist": "Carrie Underwood", + "position": 12, + "title": "Blown Away" + }, + { + "artist": "Luke Bryan", + "position": 13, + "title": "Kiss Tomorrow Goodbye" + }, + { + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "position": 14, + "title": "The Only Way I Know" + }, + { + "artist": "Little Big Town", + "position": 15, + "title": "Tornado" + }, + { + "artist": "Greg Bates", + "position": 16, + "title": "Did It For The Girl" + }, + { + "artist": "Brad Paisley", + "position": 17, + "title": "Southern Comfort Zone" + }, + { + "artist": "Jake Owen", + "position": 18, + "title": "The One That Got Away" + }, + { + "artist": "Lee Brice", + "position": 19, + "title": "Hard To Love" + }, + { + "artist": "Hunter Hayes", + "position": 20, + "title": "Somebody's Heartbreak" + }, + { + "artist": "Kenny Chesney", + "position": 21, + "title": "El Cerrito Place" + }, + { + "artist": "Taylor Swift", + "position": 22, + "title": "Begin Again" + }, + { + "artist": "Tim McGraw", + "position": 23, + "title": "One Of Those Nights" + }, + { + "artist": "Dierks Bentley", + "position": 24, + "title": "Tip It On Back" + }, + { + "artist": "Kacey Musgraves", + "position": 25, + "title": "Merry Go 'Round" + } + ], + "title": "2012 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Bruno Mars", + "position": 1, + "title": "Locked Out Of Heaven" + }, + { + "artist": "Rihanna", + "position": 2, + "title": "Diamonds" + }, + { + "artist": "The Lumineers", + "position": 3, + "title": "Ho Hey" + }, + { + "artist": "Ke$ha", + "position": 4, + "title": "Die Young" + }, + { + "artist": "Maroon 5", + "position": 5, + "title": "One More Night" + }, + { + "artist": "Flo Rida", + "position": 6, + "title": "I Cry" + }, + { + "artist": "Justin Bieber Featuring Nicki Minaj", + "position": 7, + "title": "Beauty And A Beat" + }, + { + "artist": "Phillip Phillips", + "position": 8, + "title": "Home" + }, + { + "artist": "fun.", + "position": 9, + "title": "Some Nights" + }, + { + "artist": "Taylor Swift", + "position": 10, + "title": "I Knew You Were Trouble." + }, + { + "artist": "Ne-Yo", + "position": 11, + "title": "Let Me Love You (Until You Learn To Love Yourself)" + }, + { + "artist": "Swedish House Mafia Featuring John Martin", + "position": 12, + "title": "Don't You Worry Child" + }, + { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "position": 13, + "title": "Thrift Shop" + }, + { + "artist": "P!nk", + "position": 14, + "title": "Try" + }, + { + "artist": "will.i.am Featuring Britney Spears", + "position": 15, + "title": "Scream & Shout" + }, + { + "artist": "Alicia Keys Featuring Nicki Minaj", + "position": 16, + "title": "Girl On Fire" + }, + { + "artist": "Ed Sheeran", + "position": 17, + "title": "The A Team" + }, + { + "artist": "PSY", + "position": 18, + "title": "Gangnam Style" + }, + { + "artist": "Imagine Dragons", + "position": 19, + "title": "It's Time" + }, + { + "artist": "Florida Georgia Line", + "position": 20, + "title": "Cruise" + }, + { + "artist": "Kendrick Lamar", + "position": 21, + "title": "Swimming Pools (Drank)" + }, + { + "artist": "Kanye West, Jay-Z, Big Sean", + "position": 22, + "title": "Clique" + }, + { + "artist": "Miguel", + "position": 23, + "title": "Adorn" + }, + { + "artist": "Alex Clare", + "position": 24, + "title": "Too Close" + }, + { + "artist": "Mariah Carey", + "position": 25, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Nicki Minaj", + "position": 26, + "title": "Va Va Voom" + }, + { + "artist": "Taylor Swift", + "position": 27, + "title": "We Are Never Ever Getting Back Together" + }, + { + "artist": "Justin Bieber Featuring Big Sean", + "position": 28, + "title": "As Long As You Love Me" + }, + { + "artist": "Chris Brown", + "position": 29, + "title": "Don't Wake Me Up" + }, + { + "artist": "Pitbull Featuring TJR", + "position": 30, + "title": "Don't Stop The Party" + }, + { + "artist": "Of Monsters And Men", + "position": 31, + "title": "Little Talks" + }, + { + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "position": 32, + "title": "F**kin Problems" + }, + { + "artist": "Calvin Harris Featuring Florence Welch", + "position": 33, + "title": "Sweet Nothing" + }, + { + "artist": "Mumford & Sons", + "position": 34, + "title": "I Will Wait" + }, + { + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "position": 35, + "title": "Bandz A Make Her Dance" + }, + { + "artist": "Frank Ocean", + "position": 36, + "title": "Thinkin Bout You" + }, + { + "artist": "Hunter Hayes", + "position": 37, + "title": "Wanted" + }, + { + "artist": "The Script Featuring will.i.am", + "position": 38, + "title": "Hall Of Fame" + }, + { + "artist": "Lil Wayne Featuring Detail", + "position": 39, + "title": "No Worries" + }, + { + "artist": "Cassadee Pope", + "position": 40, + "title": "Stupid Boy" + }, + { + "artist": "The Band Perry", + "position": 41, + "title": "Better Dig Two" + }, + { + "artist": "2 Chainz", + "position": 42, + "title": "I'm Different" + }, + { + "artist": "Ellie Goulding", + "position": 43, + "title": "Lights" + }, + { + "artist": "P!nk", + "position": 44, + "title": "Blow Me (One Last Kiss)" + }, + { + "artist": "Carly Rae Jepsen", + "position": 45, + "title": "Call Me Maybe" + }, + { + "artist": "One Direction", + "position": 46, + "title": "Little Things" + }, + { + "artist": "Ellie Goulding", + "position": 47, + "title": "Anything Could Happen" + }, + { + "artist": "Gotye Featuring Kimbra", + "position": 48, + "title": "Somebody That I Used To Know" + }, + { + "artist": "Kelly Clarkson", + "position": 49, + "title": "Catch My Breath" + }, + { + "artist": "Zac Brown Band", + "position": 50, + "title": "Goodbye In Her Eyes" + }, + { + "artist": "Kip Moore", + "position": 51, + "title": "Beer Money" + }, + { + "artist": "OneRepublic", + "position": 52, + "title": "Feel Again" + }, + { + "artist": "Justin Moore", + "position": 53, + "title": "Til My Last Day" + }, + { + "artist": "Gary Allan", + "position": 54, + "title": "Every Storm (Runs Out Of Rain)" + }, + { + "artist": "Imagine Dragons", + "position": 55, + "title": "Radioactive" + }, + { + "artist": "Eric Church", + "position": 56, + "title": "Creepin'" + }, + { + "artist": "Randy Houser", + "position": 57, + "title": "How Country Feels" + }, + { + "artist": "Maroon 5", + "position": 58, + "title": "Daylight" + }, + { + "artist": "Luke Bryan", + "position": 59, + "title": "Kiss Tomorrow Goodbye" + }, + { + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "position": 60, + "title": "The Only Way I Know" + }, + { + "artist": "The Weeknd", + "position": 61, + "title": "Wicked Games" + }, + { + "artist": "2 Chainz Featuring Kanye West", + "position": 62, + "title": "Birthday Song" + }, + { + "artist": "Wiz Khalifa Featuring The Weeknd", + "position": 63, + "title": "Remember You" + }, + { + "artist": "T.I. Featuring Lil Wayne", + "position": 64, + "title": "Ball" + }, + { + "artist": "Muse", + "position": 65, + "title": "Madness" + }, + { + "artist": "Little Big Town", + "position": 66, + "title": "Tornado" + }, + { + "artist": "Greg Bates", + "position": 67, + "title": "Did It For The Girl" + }, + { + "artist": "Chris Brown", + "position": 68, + "title": "Don't Judge Me" + }, + { + "artist": "Brad Paisley", + "position": 69, + "title": "Southern Comfort Zone" + }, + { + "artist": "Terry McDermott", + "position": 70, + "title": "Let It Be" + }, + { + "artist": "Jake Owen", + "position": 71, + "title": "The One That Got Away" + }, + { + "artist": "Adele", + "position": 72, + "title": "Skyfall" + }, + { + "artist": "Hunter Hayes", + "position": 73, + "title": "Somebody's Heartbreak" + }, + { + "artist": "Kenny Chesney", + "position": 74, + "title": "El Cerrito Place" + }, + { + "artist": "Taylor Swift", + "position": 75, + "title": "Begin Again" + }, + { + "artist": "Rick Ross Featuring Wale & Drake", + "position": 76, + "title": "Diced Pineapples" + }, + { + "artist": "Kendrick Lamar Featuring Drake", + "position": 77, + "title": "Poetic Justice" + }, + { + "artist": "One Direction", + "position": 78, + "title": "Live While We're Young" + }, + { + "artist": "Tim McGraw", + "position": 79, + "title": "One Of Those Nights" + }, + { + "artist": "Ludacris Featuring Usher & David Guetta", + "position": 80, + "title": "Rest Of My Life" + }, + { + "artist": "The Lumineers", + "position": 81, + "title": "Stubborn Love" + }, + { + "artist": "Chief Keef", + "position": 82, + "title": "Love Sosa" + }, + { + "artist": "Future", + "position": 83, + "title": "Turn On The Lights" + }, + { + "artist": "Dierks Bentley", + "position": 84, + "title": "Tip It On Back" + }, + { + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "position": 85, + "title": "Celebration" + }, + { + "artist": "Passion Pit", + "position": 86, + "title": "Take A Walk" + }, + { + "artist": "Bridgit Mendler", + "position": 87, + "title": "Ready Or Not" + }, + { + "artist": "Kacey Musgraves", + "position": 88, + "title": "Merry Go 'Round" + }, + { + "artist": "Big Sean", + "position": 89, + "title": "Guap" + }, + { + "artist": "Carrie Underwood", + "position": 90, + "title": "Two Black Cadillacs" + }, + { + "artist": "Future", + "position": 91, + "title": "Neva End" + }, + { + "artist": "Meek Mill Featuring Kirko Bangz", + "position": 92, + "title": "Young & Gettin' It" + }, + { + "artist": "Jonn Hart Featuring iamSU", + "position": 93, + "title": "Who Booty" + }, + { + "artist": "Kelly Rowland Featuring Lil Wayne", + "position": 94, + "title": "Ice" + }, + { + "artist": "Beyonce", + "position": 95, + "title": "Dance For You" + }, + { + "artist": "Trinidad James", + "position": 96, + "title": "All Gold Everything" + }, + { + "artist": "Tamar Braxton", + "position": 97, + "title": "Love And War" + }, + { + "artist": "Ludacris Featuring Kelly Rowland", + "position": 98, + "title": "Representin'" + }, + { + "artist": "50 Cent Featuring Eminem & Adam Levine", + "position": 99, + "title": "My Life" + }, + { + "artist": "Enrique Iglesias Featuring Sammy Adams", + "position": 100, + "title": "Finally Found You" + } + ], + "title": "2012 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Black Keys", + "position": 1, + "title": "Lonely Boy" + }, + { + "artist": "Bush", + "position": 2, + "title": "The Sound Of Winter" + }, + { + "artist": "Chevelle", + "position": 3, + "title": "Face To The Floor" + }, + { + "artist": "Coldplay", + "position": 4, + "title": "Paradise" + }, + { + "artist": "Foo Fighters", + "position": 5, + "title": "Walk" + }, + { + "artist": "Foo Fighters", + "position": 6, + "title": "These Days" + }, + { + "artist": "Seether", + "position": 7, + "title": "Tonight" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 8, + "title": "The Adventures Of Rain Dance Maggie" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 9, + "title": "Monarchy Of Roses" + }, + { + "artist": "Avenged Sevenfold", + "position": 10, + "title": "Buried Alive" + }, + { + "artist": "Nickelback", + "position": 11, + "title": "Bottoms Up" + }, + { + "artist": "Florence + The Machine", + "position": 12, + "title": "Shake It Out" + }, + { + "artist": "Staind", + "position": 13, + "title": "Not Again" + }, + { + "artist": "Young The Giant", + "position": 14, + "title": "Cough Syrup" + }, + { + "artist": "Foster The People", + "position": 15, + "title": "Pumped Up Kicks" + }, + { + "artist": "Evanescence", + "position": 16, + "title": "What You Want" + }, + { + "artist": "Switchfoot", + "position": 17, + "title": "Dark Horses" + }, + { + "artist": "Korn Featuring Skrillex & Kill The Noise", + "position": 18, + "title": "Narcissistic Cannibal" + }, + { + "artist": "Adelitas Way", + "position": 19, + "title": "The Collapse" + }, + { + "artist": "Foo Fighters", + "position": 20, + "title": "Rope" + }, + { + "artist": "Foster The People", + "position": 21, + "title": "Helena Beat" + }, + { + "artist": "Volbeat", + "position": 22, + "title": "A Warrior's Call" + }, + { + "artist": "Blink-182", + "position": 23, + "title": "After Midnight" + }, + { + "artist": "Foster The People", + "position": 24, + "title": "Don't Stop (Color On The Walls)" + }, + { + "artist": "Cage The Elephant", + "position": 25, + "title": "Aberdeen" + } + ], + "title": "2011 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Rihanna Featuring Calvin Harris", + "position": 1, + "title": "We Found Love" + }, + { + "artist": "Bruno Mars", + "position": 2, + "title": "It Will Rain" + }, + { + "artist": "Katy Perry", + "position": 3, + "title": "The One That Got Away" + }, + { + "artist": "LMFAO", + "position": 4, + "title": "Sexy And I Know It" + }, + { + "artist": "David Guetta Featuring Usher", + "position": 5, + "title": "Without You" + }, + { + "artist": "Flo Rida", + "position": 6, + "title": "Good Feeling" + }, + { + "artist": "Gym Class Heroes Featuring Adam Levine", + "position": 7, + "title": "Stereo Hearts" + }, + { + "artist": "Maroon 5 Featuring Christina Aguilera", + "position": 8, + "title": "Moves Like Jagger" + }, + { + "artist": "Selena Gomez & The Scene", + "position": 9, + "title": "Love You Like A Love Song" + }, + { + "artist": "Adele", + "position": 10, + "title": "Someone Like You" + }, + { + "artist": "Kelly Clarkson", + "position": 11, + "title": "Mr. Know It All" + }, + { + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "position": 12, + "title": "5 O'Clock" + }, + { + "artist": "Cobra Starship Featuring Sabi", + "position": 13, + "title": "You Make Me Feel..." + }, + { + "artist": "Lady Gaga", + "position": 14, + "title": "Marry The Night" + }, + { + "artist": "Gavin DeGraw", + "position": 15, + "title": "Not Over You" + }, + { + "artist": "Jessie J", + "position": 16, + "title": "Domino" + }, + { + "artist": "Drake", + "position": 17, + "title": "Headlines" + }, + { + "artist": "Adele", + "position": 18, + "title": "Set Fire To The Rain" + }, + { + "artist": "Dev", + "position": 19, + "title": "In The Dark" + }, + { + "artist": "Rihanna", + "position": 20, + "title": "You Da One" + } + ], + "title": "2011 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Zac Brown Band", + "position": 1, + "title": "Keep Me In Mind" + }, + { + "artist": "Jason Aldean", + "position": 2, + "title": "Tattoos On This Town" + }, + { + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "position": 3, + "title": "Easy" + }, + { + "artist": "David Nail", + "position": 4, + "title": "Let It Rain" + }, + { + "artist": "Luke Bryan", + "position": 5, + "title": "I Don't Want This Night To End" + }, + { + "artist": "Eric Church", + "position": 6, + "title": "Drink In My Hand" + }, + { + "artist": "Lady Antebellum", + "position": 7, + "title": "We Owned The Night" + }, + { + "artist": "Chris Young", + "position": 8, + "title": "You" + }, + { + "artist": "The Band Perry", + "position": 9, + "title": "All Your Life" + }, + { + "artist": "Kenny Chesney", + "position": 10, + "title": "Reality" + }, + { + "artist": "Keith Urban", + "position": 11, + "title": "You Gonna Fly" + }, + { + "artist": "Martina McBride", + "position": 12, + "title": "I'm Gonna Love You Through It" + }, + { + "artist": "Dierks Bentley", + "position": 13, + "title": "Home" + }, + { + "artist": "Toby Keith", + "position": 14, + "title": "Red Solo Cup" + }, + { + "artist": "Brad Paisley", + "position": 15, + "title": "Camouflage" + }, + { + "artist": "Hunter Hayes", + "position": 16, + "title": "Storm Warning" + }, + { + "artist": "George Strait", + "position": 17, + "title": "Love's Gonna Make It Alright" + }, + { + "artist": "Edens Edge", + "position": 18, + "title": "Amen" + }, + { + "artist": "Montgomery Gentry", + "position": 19, + "title": "Where I Come From" + }, + { + "artist": "Justin Moore", + "position": 20, + "title": "Bait A Hook" + }, + { + "artist": "Jake Owen", + "position": 21, + "title": "Alone With You" + }, + { + "artist": "Taylor Swift", + "position": 22, + "title": "Ours" + }, + { + "artist": "Sara Evans", + "position": 23, + "title": "My Heart Can't Tell You No" + }, + { + "artist": "James Wesley", + "position": 24, + "title": "Didn't I" + }, + { + "artist": "Scotty McCreery", + "position": 25, + "title": "The Trouble With Girls" + } + ], + "title": "2011 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Rihanna Featuring Calvin Harris", + "position": 1, + "title": "We Found Love" + }, + { + "artist": "LMFAO", + "position": 2, + "title": "Sexy And I Know It" + }, + { + "artist": "Bruno Mars", + "position": 3, + "title": "It Will Rain" + }, + { + "artist": "Flo Rida", + "position": 4, + "title": "Good Feeling" + }, + { + "artist": "Katy Perry", + "position": 5, + "title": "The One That Got Away" + }, + { + "artist": "Jay Z Kanye West", + "position": 6, + "title": "Ni**as in Paris" + }, + { + "artist": "Adele", + "position": 7, + "title": "Someone Like You" + }, + { + "artist": "David Guetta Featuring Usher", + "position": 8, + "title": "Without You" + }, + { + "artist": "Maroon 5 Featuring Christina Aguilera", + "position": 9, + "title": "Moves Like Jagger" + }, + { + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "position": 10, + "title": "5 O'Clock" + }, + { + "artist": "Gym Class Heroes Featuring Adam Levine", + "position": 11, + "title": "Stereo Hearts" + }, + { + "artist": "Big Sean Featuring Nicki Minaj", + "position": 12, + "title": "Dance (A$$)" + }, + { + "artist": "Adele", + "position": 13, + "title": "Set Fire To The Rain" + }, + { + "artist": "J. Cole", + "position": 14, + "title": "Work Out" + }, + { + "artist": "LMFAO Featuring Lauren Bennett & GoonRock", + "position": 15, + "title": "Party Rock Anthem" + }, + { + "artist": "Drake", + "position": 16, + "title": "Headlines" + }, + { + "artist": "Toby Keith", + "position": 17, + "title": "Red Solo Cup" + }, + { + "artist": "Snoop Dogg & Wiz Khalifa Featuring Bruno Mars", + "position": 18, + "title": "Young, Wild & Free" + }, + { + "artist": "Foster The People", + "position": 19, + "title": "Pumped Up Kicks" + }, + { + "artist": "Cobra Starship Featuring Sabi", + "position": 20, + "title": "You Make Me Feel..." + }, + { + "artist": "Kelly Clarkson", + "position": 21, + "title": "Mr. Know It All" + }, + { + "artist": "Gavin DeGraw", + "position": 22, + "title": "Not Over You" + }, + { + "artist": "Luke Bryan", + "position": 23, + "title": "I Don't Want This Night To End" + }, + { + "artist": "Drake Featuring Nicki Minaj", + "position": 24, + "title": "Make Me Proud" + }, + { + "artist": "Rihanna", + "position": 25, + "title": "You Da One" + }, + { + "artist": "Selena Gomez & The Scene", + "position": 26, + "title": "Love You Like A Love Song" + }, + { + "artist": "Pitbull Featuring Ne-Yo, Afrojack & Nayer", + "position": 27, + "title": "Give Me Everything" + }, + { + "artist": "Jessie J", + "position": 28, + "title": "Domino" + }, + { + "artist": "Drake Featuring Lil Wayne", + "position": 29, + "title": "The Motto" + }, + { + "artist": "Pitbull Featuring Chris Brown", + "position": 30, + "title": "International Love" + }, + { + "artist": "Lady Antebellum", + "position": 31, + "title": "Just A Kiss" + }, + { + "artist": "Justin Bieber", + "position": 32, + "title": "Mistletoe" + }, + { + "artist": "Lady Gaga", + "position": 33, + "title": "Marry The Night" + }, + { + "artist": "Nicki Minaj", + "position": 34, + "title": "Super Bass" + }, + { + "artist": "Lil Wayne Featuring Drake", + "position": 35, + "title": "She Will" + }, + { + "artist": "Zac Brown Band", + "position": 36, + "title": "Keep Me In Mind" + }, + { + "artist": "Ke$ha Featuring Lil Wayne, Wiz Khalifa, T.I. & Andre 3000", + "position": 37, + "title": "Sleazy Remix 2.0 Get Sleazier" + }, + { + "artist": "Wale Featuring Miguel", + "position": 38, + "title": "Lotus Flower Bomb" + }, + { + "artist": "Coldplay", + "position": 39, + "title": "Paradise" + }, + { + "artist": "Dev", + "position": 40, + "title": "In The Dark" + }, + { + "artist": "Adele", + "position": 41, + "title": "Rolling In The Deep" + }, + { + "artist": "Jason Aldean", + "position": 42, + "title": "Tattoos On This Town" + }, + { + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "position": 43, + "title": "Easy" + }, + { + "artist": "Hot Chelle Rae Featuring New Boyz", + "position": 44, + "title": "I Like It Like That" + }, + { + "artist": "Eric Church", + "position": 45, + "title": "Drink In My Hand" + }, + { + "artist": "Nicki Minaj Featuring Rihanna", + "position": 46, + "title": "Fly" + }, + { + "artist": "Taylor Swift", + "position": 47, + "title": "Ours" + }, + { + "artist": "Blake Shelton", + "position": 48, + "title": "God Gave Me You" + }, + { + "artist": "Breathe Carolina", + "position": 49, + "title": "Blackout" + }, + { + "artist": "Lady Antebellum", + "position": 50, + "title": "We Owned The Night" + }, + { + "artist": "David Nail", + "position": 51, + "title": "Let It Rain" + }, + { + "artist": "Chris Young", + "position": 52, + "title": "You" + }, + { + "artist": "The Band Perry", + "position": 53, + "title": "All Your Life" + }, + { + "artist": "Jason Derulo", + "position": 54, + "title": "It Girl" + }, + { + "artist": "B.o.B Featuring Lil Wayne", + "position": 55, + "title": "Strange Clouds" + }, + { + "artist": "Tyga", + "position": 56, + "title": "Rack City" + }, + { + "artist": "Beyonce Featuring Andre 3000", + "position": 57, + "title": "Party" + }, + { + "artist": "Drake Featuring Rihanna", + "position": 58, + "title": "Take Care" + }, + { + "artist": "Glee Cast", + "position": 59, + "title": "We Are Young" + }, + { + "artist": "Christina Perri", + "position": 60, + "title": "A Thousand Years" + }, + { + "artist": "Outasight", + "position": 61, + "title": "Tonight Is The Night" + }, + { + "artist": "Lady Gaga", + "position": 62, + "title": "You And I" + }, + { + "artist": "The Fray", + "position": 63, + "title": "Heartbeat" + }, + { + "artist": "Colbie Caillat", + "position": 64, + "title": "Brighter Than The Sun" + }, + { + "artist": "J. Cole Featuring Trey Songz", + "position": 65, + "title": "Can't Get Enough" + }, + { + "artist": "Nickelback", + "position": 66, + "title": "When We Stand Together" + }, + { + "artist": "Rick Ross Featuring Nicki Minaj", + "position": 67, + "title": "You The Boss" + }, + { + "artist": "David Guetta Featuring Nicki Minaj", + "position": 68, + "title": "Turn Me On" + }, + { + "artist": "The Black Keys", + "position": 69, + "title": "Lonely Boy" + }, + { + "artist": "Miranda Lambert", + "position": 70, + "title": "Baggage Claim" + }, + { + "artist": "Martina McBride", + "position": 71, + "title": "I'm Gonna Love You Through It" + }, + { + "artist": "Jake Owen", + "position": 72, + "title": "Alone With You" + }, + { + "artist": "Wale Featuring Jeremih & Rick Ross", + "position": 73, + "title": "That Way" + }, + { + "artist": "Dierks Bentley", + "position": 74, + "title": "Home" + }, + { + "artist": "T-Pain Featuring Lil Wayne", + "position": 75, + "title": "Bang Bang Pow Pow" + }, + { + "artist": "Kenny Chesney", + "position": 76, + "title": "Reality" + }, + { + "artist": "Avicii", + "position": 77, + "title": "Levels" + }, + { + "artist": "Fun. Featuring Janelle Monae", + "position": 78, + "title": "We Are Young" + }, + { + "artist": "Keith Urban", + "position": 79, + "title": "You Gonna Fly" + }, + { + "artist": "Avril Lavigne", + "position": 80, + "title": "Wish You Were Here" + }, + { + "artist": "Tim McGraw", + "position": 81, + "title": "Better Than I Used To Be" + }, + { + "artist": "Florence + The Machine", + "position": 82, + "title": "Shake It Out" + }, + { + "artist": "Justin Moore", + "position": 83, + "title": "Bait A Hook" + }, + { + "artist": "Scotty McCreery", + "position": 84, + "title": "The Trouble With Girls" + }, + { + "artist": "Hunter Hayes", + "position": 85, + "title": "Storm Warning" + }, + { + "artist": "Waka Flocka Flame Featuring Drake", + "position": 86, + "title": "Round Of Applause" + }, + { + "artist": "The Script", + "position": 87, + "title": "Nothing" + }, + { + "artist": "Brad Paisley", + "position": 88, + "title": "Camouflage" + }, + { + "artist": "AWOLNATION", + "position": 89, + "title": "Sail" + }, + { + "artist": "Edens Edge", + "position": 90, + "title": "Amen" + }, + { + "artist": "Beyonce", + "position": 91, + "title": "Countdown" + }, + { + "artist": "Glee Cast", + "position": 92, + "title": "Do They Know It's Christmas?" + }, + { + "artist": "Grouplove", + "position": 93, + "title": "Tongue Tied" + }, + { + "artist": "Beyonce", + "position": 94, + "title": "Love On Top" + }, + { + "artist": "Thompson Square", + "position": 95, + "title": "I Got You" + }, + { + "artist": "Lee Brice", + "position": 96, + "title": "A Woman Like You" + }, + { + "artist": "Romeo Santos Featuring Usher", + "position": 97, + "title": "Promise" + }, + { + "artist": "Roscoe Dash", + "position": 98, + "title": "Good Good Night" + }, + { + "artist": "Michael Buble", + "position": 99, + "title": "All I Want For Christmas Is You" + }, + { + "artist": "Gym Class Heroes Featuring Neon Hitch", + "position": 100, + "title": "Ass Back Home" + } + ], + "title": "2011 - Hot 100" + }, + { + "songs": [ + { + "artist": "Trey Songz", + "position": 1, + "title": "Can't Be Friends" + }, + { + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "position": 2, + "title": "Aston Martin Music" + }, + { + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "position": 3, + "title": "No Hands" + }, + { + "artist": "Nicki Minaj", + "position": 4, + "title": "Right Thru Me" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 5, + "title": "What's My Name?" + }, + { + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "position": 6, + "title": "Deuces" + }, + { + "artist": "Lloyd", + "position": 7, + "title": "Lay It Down" + }, + { + "artist": "Twista Featuring Chris Brown", + "position": 8, + "title": "Make A Movie" + }, + { + "artist": "Willow", + "position": 9, + "title": "Whip My Hair" + }, + { + "artist": "Wiz Khalifa", + "position": 10, + "title": "Black And Yellow" + }, + { + "artist": "Chris Brown", + "position": 11, + "title": "No BS" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 12, + "title": "Bottoms Up" + }, + { + "artist": "Fantasia", + "position": 13, + "title": "I'm Doing Me" + }, + { + "artist": "Lil Wayne Featuring Drake", + "position": 14, + "title": "Right Above It" + }, + { + "artist": "Miguel Featuring J. Cole", + "position": 15, + "title": "All I Want Is You" + }, + { + "artist": "Charlie Wilson", + "position": 16, + "title": "You Are" + }, + { + "artist": "Jamie Foxx Featuring Drake", + "position": 17, + "title": "Fall For Your Type" + }, + { + "artist": "Ne-Yo", + "position": 18, + "title": "One In A Million" + }, + { + "artist": "Keri Hilson", + "position": 19, + "title": "Pretty Girl Rock" + }, + { + "artist": "R. Kelly", + "position": 20, + "title": "When A Woman Loves" + }, + { + "artist": "Eric Benet", + "position": 21, + "title": "Sometimes I Cry" + }, + { + "artist": "Diddy - Dirty Money Featuring Drake", + "position": 22, + "title": "Loving You No More" + }, + { + "artist": "Jazmine Sullivan", + "position": 23, + "title": "10 Seconds" + }, + { + "artist": "Usher", + "position": 24, + "title": "There Goes My Baby" + }, + { + "artist": "Jazmine Sullivan", + "position": 25, + "title": "Holding You Down (Goin In Circles)" + } + ], + "title": "2010 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "The Black Keys", + "position": 1, + "title": "Tighten Up" + }, + { + "artist": "Linkin Park", + "position": 2, + "title": "Waiting For The End" + }, + { + "artist": "Stone Sour", + "position": 3, + "title": "Say You'll Haunt Me" + }, + { + "artist": "Three Days Grace", + "position": 4, + "title": "World So Cold" + }, + { + "artist": "Neon Trees", + "position": 5, + "title": "Animal" + }, + { + "artist": "Mumford & Sons", + "position": 6, + "title": "Little Lion Man" + }, + { + "artist": "Kings Of Leon", + "position": 7, + "title": "Radioactive" + }, + { + "artist": "My Darkest Days Featuring Zakk Wylde", + "position": 8, + "title": "Porn Star Dancing" + }, + { + "artist": "Godsmack", + "position": 9, + "title": "Love-Hate-Sex-Pain" + }, + { + "artist": "Muse", + "position": 10, + "title": "Undisclosed Desires" + }, + { + "artist": "Saving Abel", + "position": 11, + "title": "The Sex Is Good" + }, + { + "artist": "Florence + The Machine", + "position": 12, + "title": "Dog Days Are Over" + }, + { + "artist": "Cake", + "position": 13, + "title": "Sick Of You" + }, + { + "artist": "Cage The Elephant", + "position": 14, + "title": "Shake Me Down" + }, + { + "artist": "My Chemical Romance", + "position": 15, + "title": "Sing" + }, + { + "artist": "Disturbed", + "position": 16, + "title": "The Animal" + }, + { + "artist": "The Dirty Heads Featuring Rome", + "position": 17, + "title": "Lay Me Down" + }, + { + "artist": "Phoenix", + "position": 18, + "title": "Lisztomania" + }, + { + "artist": "Sick Puppies", + "position": 19, + "title": "Maybe" + }, + { + "artist": "Alter Bridge", + "position": 20, + "title": "Isolation" + }, + { + "artist": "Avenged Sevenfold", + "position": 21, + "title": "Welcome To The Family" + }, + { + "artist": "10 Years", + "position": 22, + "title": "Shoot It Out" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 23, + "title": "Closer To The Edge" + }, + { + "artist": "Hinder", + "position": 24, + "title": "All American Nightmare" + }, + { + "artist": "Five Finger Death Punch", + "position": 25, + "title": "Far From Home" + } + ], + "title": "2010 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "P!nk", + "position": 1, + "title": "Raise Your Glass" + }, + { + "artist": "Rihanna", + "position": 2, + "title": "Only Girl (In The World)" + }, + { + "artist": "Nelly", + "position": 3, + "title": "Just A Dream" + }, + { + "artist": "Ke$ha", + "position": 4, + "title": "We R Who We R" + }, + { + "artist": "Katy Perry", + "position": 5, + "title": "Firework" + }, + { + "artist": "Bruno Mars", + "position": 6, + "title": "Just The Way You Are" + }, + { + "artist": "Far*East Movement Featuring Cataracs & Dev", + "position": 7, + "title": "Like A G6" + }, + { + "artist": "Bruno Mars", + "position": 8, + "title": "Grenade" + }, + { + "artist": "Mike Posner", + "position": 9, + "title": "Please Don't Go" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 10, + "title": "What's My Name?" + }, + { + "artist": "Usher Featuring Pitbull", + "position": 11, + "title": "DJ Got Us Fallin' In Love" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 12, + "title": "Bottoms Up" + }, + { + "artist": "The Black Eyed Peas", + "position": 13, + "title": "The Time (Dirty Bit)" + }, + { + "artist": "Neon Trees", + "position": 14, + "title": "Animal" + }, + { + "artist": "Taio Cruz", + "position": 15, + "title": "Dynamite" + }, + { + "artist": "The Ready Set", + "position": 16, + "title": "Love Like Woe" + }, + { + "artist": "Katy Perry", + "position": 17, + "title": "Teenage Dream" + }, + { + "artist": "Edward Maya & Vika Jigulina", + "position": 18, + "title": "Stereo Love" + }, + { + "artist": "Chris Brown", + "position": 19, + "title": "Yeah 3X" + }, + { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "position": 20, + "title": "Tonight (I'm Lovin' You)" + } + ], + "title": "2010 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Rascal Flatts", + "position": 1, + "title": "Why Wait" + }, + { + "artist": "Reba", + "position": 2, + "title": "Turn On The Radio" + }, + { + "artist": "Jason Aldean", + "position": 3, + "title": "My Kinda Party" + }, + { + "artist": "Carrie Underwood", + "position": 4, + "title": "Mama's Song" + }, + { + "artist": "Tim McGraw", + "position": 5, + "title": "Felt Good On My Lips" + }, + { + "artist": "Zac Brown Band Featuring Alan Jackson", + "position": 6, + "title": "As She's Walking Away" + }, + { + "artist": "Kenny Chesney", + "position": 7, + "title": "Somewhere With You" + }, + { + "artist": "George Strait", + "position": 8, + "title": "The Breath You Take" + }, + { + "artist": "The Band Perry", + "position": 9, + "title": "If I Die Young" + }, + { + "artist": "Chris Young", + "position": 10, + "title": "Voices" + }, + { + "artist": "Keith Urban", + "position": 11, + "title": "Put You In A Song" + }, + { + "artist": "Miranda Lambert", + "position": 12, + "title": "Only Prettier" + }, + { + "artist": "Luke Bryan", + "position": 13, + "title": "Someone Else Calling You Baby" + }, + { + "artist": "Blake Shelton", + "position": 14, + "title": "Who Are You When I'm Not Looking" + }, + { + "artist": "Lady Antebellum", + "position": 15, + "title": "Hello World" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "Back To December" + }, + { + "artist": "Toby Keith", + "position": 17, + "title": "Bullets In The Gun" + }, + { + "artist": "Billy Currington", + "position": 18, + "title": "Let Me Down Easy" + }, + { + "artist": "Brad Paisley", + "position": 19, + "title": "This Is Country Music" + }, + { + "artist": "Eric Church", + "position": 20, + "title": "Smoke A Little Smoke" + }, + { + "artist": "Sunny Sweeney", + "position": 21, + "title": "From A Table Away" + }, + { + "artist": "The JaneDear Girls", + "position": 22, + "title": "Wildflower" + }, + { + "artist": "Joe Nichols", + "position": 23, + "title": "The Shape I'm In" + }, + { + "artist": "Jerrod Niemann", + "position": 24, + "title": "What Do You Want" + }, + { + "artist": "Jason Aldean With Kelly Clarkson", + "position": 25, + "title": "Don't You Wanna Stay" + } + ], + "title": "2010 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Katy Perry", + "position": 1, + "title": "Firework" + }, + { + "artist": "Rihanna Featuring Drake", + "position": 2, + "title": "What's My Name?" + }, + { + "artist": "Bruno Mars", + "position": 3, + "title": "Grenade" + }, + { + "artist": "P!nk", + "position": 4, + "title": "Raise Your Glass" + }, + { + "artist": "Ke$ha", + "position": 5, + "title": "We R Who We R" + }, + { + "artist": "Rihanna", + "position": 6, + "title": "Only Girl (In The World)" + }, + { + "artist": "Bruno Mars", + "position": 7, + "title": "Just The Way You Are" + }, + { + "artist": "The Black Eyed Peas", + "position": 8, + "title": "The Time (Dirty Bit)" + }, + { + "artist": "Nelly", + "position": 9, + "title": "Just A Dream" + }, + { + "artist": "Trey Songz Featuring Nicki Minaj", + "position": 10, + "title": "Bottoms Up" + }, + { + "artist": "Wiz Khalifa", + "position": 11, + "title": "Black And Yellow" + }, + { + "artist": "Far*East Movement Featuring Cataracs & Dev", + "position": 12, + "title": "Like A G6" + }, + { + "artist": "Usher Featuring Pitbull", + "position": 13, + "title": "DJ Got Us Fallin' In Love" + }, + { + "artist": "Taio Cruz", + "position": 14, + "title": "Dynamite" + }, + { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "position": 15, + "title": "Tonight (I'm Lovin' You)" + }, + { + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "position": 16, + "title": "No Hands" + }, + { + "artist": "Mike Posner", + "position": 17, + "title": "Please Don't Go" + }, + { + "artist": "T.I. Featuring Eminem", + "position": 18, + "title": "That's All She Wrote" + }, + { + "artist": "Edward Maya & Vika Jigulina", + "position": 19, + "title": "Stereo Love" + }, + { + "artist": "Katy Perry", + "position": 20, + "title": "Teenage Dream" + }, + { + "artist": "Neon Trees", + "position": 21, + "title": "Animal" + }, + { + "artist": "Chris Brown", + "position": 22, + "title": "Yeah 3X" + }, + { + "artist": "Cee Lo Green", + "position": 23, + "title": "F**k You (Forget You)" + }, + { + "artist": "Diddy - Dirty Money Featuring Skylar Grey", + "position": 24, + "title": "Coming Home" + }, + { + "artist": "OneRepublic", + "position": 25, + "title": "Secrets" + }, + { + "artist": "Nicki Minaj", + "position": 26, + "title": "Right Thru Me" + }, + { + "artist": "Willow", + "position": 27, + "title": "Whip My Hair" + }, + { + "artist": "The Band Perry", + "position": 28, + "title": "If I Die Young" + }, + { + "artist": "Lil Wayne Featuring Drake", + "position": 29, + "title": "Right Above It" + }, + { + "artist": "Flo Rida Featuring David Guetta", + "position": 30, + "title": "Club Can't Handle Me" + }, + { + "artist": "Enrique Iglesias Featuring Pitbull", + "position": 31, + "title": "I Like It" + }, + { + "artist": "Pitbull Featuring T-Pain", + "position": 32, + "title": "Hey Baby (Drop It To The Floor)" + }, + { + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "position": 33, + "title": "Aston Martin Music" + }, + { + "artist": "Taylor Swift", + "position": 34, + "title": "Back To December" + }, + { + "artist": "Coldplay", + "position": 35, + "title": "Christmas Lights" + }, + { + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "position": 36, + "title": "Deuces" + }, + { + "artist": "Kenny Chesney", + "position": 37, + "title": "Somewhere With You" + }, + { + "artist": "Eminem Featuring Lil Wayne", + "position": 38, + "title": "No Love" + }, + { + "artist": "Jason Aldean", + "position": 39, + "title": "My Kinda Party" + }, + { + "artist": "Eminem Featuring Rihanna", + "position": 40, + "title": "Love The Way You Lie" + }, + { + "artist": "Tim McGraw", + "position": 41, + "title": "Felt Good On My Lips" + }, + { + "artist": "The Ready Set", + "position": 42, + "title": "Love Like Woe" + }, + { + "artist": "Sugarland", + "position": 43, + "title": "Stuck Like Glue" + }, + { + "artist": "Trey Songz", + "position": 44, + "title": "Can't Be Friends" + }, + { + "artist": "Keri Hilson", + "position": 45, + "title": "Pretty Girl Rock" + }, + { + "artist": "David Guetta Featuring Kid Cudi", + "position": 46, + "title": "Memories" + }, + { + "artist": "Zac Brown Band Featuring Alan Jackson", + "position": 47, + "title": "As She's Walking Away" + }, + { + "artist": "Florence + The Machine", + "position": 48, + "title": "Dog Days Are Over" + }, + { + "artist": "Christina Perri", + "position": 49, + "title": "Jar Of Hearts" + }, + { + "artist": "Taylor Swift", + "position": 50, + "title": "Mine" + }, + { + "artist": "Yolanda Be Cool & Dcup", + "position": 51, + "title": "We No Speak Americano" + }, + { + "artist": "Dr. Dre Featuring Snoop Dogg & Akon", + "position": 52, + "title": "Kush" + }, + { + "artist": "Reba", + "position": 53, + "title": "Turn On The Radio" + }, + { + "artist": "Blake Shelton", + "position": 54, + "title": "Who Are You When I'm Not Looking" + }, + { + "artist": "Plain White T's", + "position": 55, + "title": "Rhythm of Love" + }, + { + "artist": "Carrie Underwood", + "position": 56, + "title": "Mama's Song" + }, + { + "artist": "Glee Cast", + "position": 57, + "title": "Baby, It's Cold Outside" + }, + { + "artist": "Rascal Flatts", + "position": 58, + "title": "Why Wait" + }, + { + "artist": "Glee Cast", + "position": 59, + "title": "Welcome Christmas" + }, + { + "artist": "Far*East Movement Featuring Ryan Tedder", + "position": 60, + "title": "Rocketeer" + }, + { + "artist": "Keith Urban", + "position": 61, + "title": "Put You In A Song" + }, + { + "artist": "Jeremih Featuring 50 Cent", + "position": 62, + "title": "Down On Me" + }, + { + "artist": "Miranda Lambert", + "position": 63, + "title": "Only Prettier" + }, + { + "artist": "Lloyd", + "position": 64, + "title": "Lay It Down" + }, + { + "artist": "Michael Jackson Duet With Akon", + "position": 65, + "title": "Hold My Hand" + }, + { + "artist": "George Strait", + "position": 66, + "title": "The Breath You Take" + }, + { + "artist": "Flo Rida Featuring Akon", + "position": 67, + "title": "Who Dat Girl" + }, + { + "artist": "Adele", + "position": 68, + "title": "Rolling In The Deep" + }, + { + "artist": "Chris Young", + "position": 69, + "title": "Voices" + }, + { + "artist": "Jason Aldean With Kelly Clarkson", + "position": 70, + "title": "Don't You Wanna Stay" + }, + { + "artist": "Billy Currington", + "position": 71, + "title": "Let Me Down Easy" + }, + { + "artist": "Brad Paisley", + "position": 72, + "title": "Anything Like Me" + }, + { + "artist": "Kanye West Featuring Pusha T", + "position": 73, + "title": "Runaway" + }, + { + "artist": "Linkin Park", + "position": 74, + "title": "Waiting For The End" + }, + { + "artist": "Drake Featuring T.I. & Swizz Beatz", + "position": 75, + "title": "Fancy" + }, + { + "artist": "Sick Puppies", + "position": 76, + "title": "Maybe" + }, + { + "artist": "Lady Antebellum", + "position": 77, + "title": "Hello World" + }, + { + "artist": "Luke Bryan", + "position": 78, + "title": "Someone Else Calling You Baby" + }, + { + "artist": "Miguel Featuring J. Cole", + "position": 79, + "title": "All I Want Is You" + }, + { + "artist": "Twista Featuring Chris Brown", + "position": 80, + "title": "Make A Movie" + }, + { + "artist": "Mumford & Sons", + "position": 81, + "title": "Little Lion Man" + }, + { + "artist": "Birdman Featuring Lil Wayne", + "position": 82, + "title": "Fire Flame" + }, + { + "artist": "Akon", + "position": 83, + "title": "Angel" + }, + { + "artist": "Toby Keith", + "position": 84, + "title": "Bullets In The Gun" + }, + { + "artist": "Train", + "position": 85, + "title": "Marry Me" + }, + { + "artist": "Sean Kingston Featuring Nicki Minaj", + "position": 86, + "title": "Letting Go (Dutty Love)" + }, + { + "artist": "Eric Church", + "position": 87, + "title": "Smoke A Little Smoke" + }, + { + "artist": "Jesse McCartney", + "position": 88, + "title": "Shake" + }, + { + "artist": "Chris Brown", + "position": 89, + "title": "No BS" + }, + { + "artist": "Shakira Featuring El Cata or Dizzee Rascal", + "position": 90, + "title": "Loca" + }, + { + "artist": "Natasha Bedingfield", + "position": 91, + "title": "Strip Me" + }, + { + "artist": "Glee Cast Featuring Gwyneth Paltrow", + "position": 92, + "title": "Forget You" + }, + { + "artist": "Kanye West Featuring Jay-Z, Rick Ross, Bon Iver & Nicki Minaj", + "position": 93, + "title": "Monster" + }, + { + "artist": "Dev Featuring The Cataracs", + "position": 94, + "title": "Bass Down Low" + }, + { + "artist": "Jamie Foxx Featuring Drake", + "position": 95, + "title": "Fall For Your Type" + }, + { + "artist": "Daughtry", + "position": 96, + "title": "September" + }, + { + "artist": "Ne-Yo", + "position": 97, + "title": "One In A Million" + }, + { + "artist": "Bruno Mars", + "position": 98, + "title": "Marry You" + }, + { + "artist": "My Darkest Days Featuring Zakk Wylde", + "position": 99, + "title": "Porn Star Dancing" + }, + { + "artist": "Pitbull", + "position": 100, + "title": "Bon, Bon" + } + ], + "title": "2010 - Hot 100" + }, + { + "songs": [ + { + "artist": "Trey Songz Featuring Drake", + "position": 1, + "title": "I Invented Sex" + }, + { + "artist": "Birdman Featuring Lil Wayne & Drake", + "position": 2, + "title": "Money To Blow" + }, + { + "artist": "Melanie Fiona", + "position": 3, + "title": "It Kills Me" + }, + { + "artist": "Usher", + "position": 4, + "title": "Papers" + }, + { + "artist": "Jay-Z + Alicia Keys", + "position": 5, + "title": "Empire State Of Mind" + }, + { + "artist": "Trey Songz Featuring Fabolous", + "position": 6, + "title": "Say Aah" + }, + { + "artist": "50 Cent Featuring Ne-Yo", + "position": 7, + "title": "Baby By Me" + }, + { + "artist": "Maxwell", + "position": 8, + "title": "Bad Habits" + }, + { + "artist": "Young Money Featuring Lloyd", + "position": 9, + "title": "Bedrock" + }, + { + "artist": "Maxwell", + "position": 10, + "title": "Pretty Wings" + }, + { + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "position": 11, + "title": "I Can Transform Ya" + }, + { + "artist": "Alicia Keys", + "position": 12, + "title": "Try Sleeping With A Broken Heart" + }, + { + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "position": 13, + "title": "Forever" + }, + { + "artist": "Ludacris", + "position": 14, + "title": "How Low" + }, + { + "artist": "Gucci Mane Featuring Usher", + "position": 15, + "title": "Spotlight" + }, + { + "artist": "Mary Mary Featuring Kierra \"KiKi\" Sheard", + "position": 16, + "title": "God In Me" + }, + { + "artist": "Jaheim", + "position": 17, + "title": "Ain't Leavin Without You" + }, + { + "artist": "Mary J. Blige", + "position": 18, + "title": "I Am" + }, + { + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "position": 19, + "title": "Wasted" + }, + { + "artist": "LeToya Featuring Ludacris", + "position": 20, + "title": "Regret" + }, + { + "artist": "Whitney Houston", + "position": 21, + "title": "Million Dollar Bill" + }, + { + "artist": "Sade", + "position": 22, + "title": "Soldier Of Love" + }, + { + "artist": "Rihanna Featuring Jeezy", + "position": 23, + "title": "Hard" + }, + { + "artist": "Snoop Dogg Featuring The-Dream", + "position": 24, + "title": "Gangsta Luv" + }, + { + "artist": "Omarion Featuring Gucci Mane", + "position": 25, + "title": "I Get It In" + } + ], + "title": "2009 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Three Days Grace", + "position": 1, + "title": "Break" + }, + { + "artist": "Breaking Benjamin", + "position": 2, + "title": "I Will Not Bow" + }, + { + "artist": "Muse", + "position": 3, + "title": "Uprising" + }, + { + "artist": "Foo Fighters", + "position": 4, + "title": "Wheels" + }, + { + "artist": "Weezer", + "position": 5, + "title": "(If You're Wondering If I Want You To) I Want You To" + }, + { + "artist": "Shinedown", + "position": 6, + "title": "If You Only Knew" + }, + { + "artist": "Alice In Chains", + "position": 7, + "title": "Check My Brain" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 8, + "title": "Kings And Queens" + }, + { + "artist": "Rise Against", + "position": 9, + "title": "Savior" + }, + { + "artist": "Pearl Jam", + "position": 10, + "title": "The Fixer" + }, + { + "artist": "Sick Puppies", + "position": 11, + "title": "You're Going Down" + }, + { + "artist": "Chevelle", + "position": 12, + "title": "Jars" + }, + { + "artist": "Phoenix", + "position": 13, + "title": "1901" + }, + { + "artist": "Them Crooked Vultures", + "position": 14, + "title": "New Fang" + }, + { + "artist": "Kings Of Leon", + "position": 15, + "title": "Use Somebody" + }, + { + "artist": "Linkin Park", + "position": 16, + "title": "New Divide" + }, + { + "artist": "Pearl Jam", + "position": 17, + "title": "Just Breathe" + }, + { + "artist": "Cage The Elephant", + "position": 18, + "title": "Back Against The Wall" + }, + { + "artist": "Slipknot", + "position": 19, + "title": "Snuff" + }, + { + "artist": "Death Cab For Cutie", + "position": 20, + "title": "Meet Me On The Equinox" + }, + { + "artist": "Creed", + "position": 21, + "title": "Overcome" + }, + { + "artist": "Puddle Of Mudd", + "position": 22, + "title": "Spaceship" + }, + { + "artist": "Flyleaf", + "position": 23, + "title": "Again" + }, + { + "artist": "Alice In Chains", + "position": 24, + "title": "Your Decision" + }, + { + "artist": "Adelitas Way", + "position": 25, + "title": "Invincible" + } + ], + "title": "2009 - Hot Rock Songs" + }, + { + "songs": [ + { + "artist": "Iyaz", + "position": 1, + "title": "Replay" + }, + { + "artist": "Owl City", + "position": 2, + "title": "Fireflies" + }, + { + "artist": "Britney Spears", + "position": 3, + "title": "3" + }, + { + "artist": "Jason Derulo", + "position": 4, + "title": "Whatcha Say" + }, + { + "artist": "Ke$ha", + "position": 5, + "title": "TiK ToK" + }, + { + "artist": "Lady Gaga", + "position": 6, + "title": "Bad Romance" + }, + { + "artist": "Kelly Clarkson", + "position": 7, + "title": "Already Gone" + }, + { + "artist": "David Guetta Featuring Akon", + "position": 8, + "title": "Sexy Chick" + }, + { + "artist": "Jay-Z + Alicia Keys", + "position": 9, + "title": "Empire State Of Mind" + }, + { + "artist": "Jay Sean Featuring Lil Wayne", + "position": 10, + "title": "Down" + }, + { + "artist": "Lady Gaga", + "position": 11, + "title": "Paparazzi" + }, + { + "artist": "Beyonce", + "position": 12, + "title": "Sweet Dreams" + }, + { + "artist": "Miley Cyrus", + "position": 13, + "title": "Party In The U.S.A." + }, + { + "artist": "Cascada", + "position": 14, + "title": "Evacuate The Dancefloor" + }, + { + "artist": "The Black Eyed Peas", + "position": 15, + "title": "Meet Me Halfway" + }, + { + "artist": "Taylor Swift", + "position": 16, + "title": "Fifteen" + }, + { + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "position": 17, + "title": "Do You Remember" + }, + { + "artist": "Kings Of Leon", + "position": 18, + "title": "Use Somebody" + }, + { + "artist": "Boys Like Girls Featuring Taylor Swift", + "position": 19, + "title": "Two Is Better Than One" + }, + { + "artist": "Taylor Swift", + "position": 20, + "title": "You Belong With Me" + } + ], + "title": "2009 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Lady Antebellum", + "position": 1, + "title": "Need You Now" + }, + { + "artist": "Reba", + "position": 2, + "title": "Consider Me Gone" + }, + { + "artist": "Luke Bryan", + "position": 3, + "title": "Do I" + }, + { + "artist": "Dierks Bentley", + "position": 4, + "title": "I Wanna Make You Close Your Eyes" + }, + { + "artist": "Craig Morgan", + "position": 5, + "title": "Bonfire" + }, + { + "artist": "Tim McGraw", + "position": 6, + "title": "Southern Voice" + }, + { + "artist": "David Nail", + "position": 7, + "title": "Red Light" + }, + { + "artist": "Miranda Lambert", + "position": 8, + "title": "White Liar" + }, + { + "artist": "Jason Aldean", + "position": 9, + "title": "The Truth" + }, + { + "artist": "Darius Rucker", + "position": 10, + "title": "History In The Making" + }, + { + "artist": "Jake Owen", + "position": 11, + "title": "Eight Second Ride" + }, + { + "artist": "Brad Paisley", + "position": 12, + "title": "American Saturday Night" + }, + { + "artist": "Josh Turner", + "position": 13, + "title": "Why Don't We Just Dance" + }, + { + "artist": "Billy Currington", + "position": 14, + "title": "That's How Country Boys Roll" + }, + { + "artist": "George Strait", + "position": 15, + "title": "Twang" + }, + { + "artist": "Toby Keith", + "position": 16, + "title": "Cryin' For Me (Wayman's Song)" + }, + { + "artist": "Jason Michael Carroll", + "position": 17, + "title": "Hurry Home" + }, + { + "artist": "Keith Urban", + "position": 18, + "title": "'Til Summer Comes Around" + }, + { + "artist": "Easton Corbin", + "position": 19, + "title": "A Little More Country Than That" + }, + { + "artist": "Blake Shelton Featuring Trace Adkins", + "position": 20, + "title": "Hillbilly Bone" + }, + { + "artist": "Gary Allan", + "position": 21, + "title": "Today" + }, + { + "artist": "Josh Thompson", + "position": 22, + "title": "Beer On The Table" + }, + { + "artist": "Kellie Pickler", + "position": 23, + "title": "Didn't You Know How Much I Loved You" + }, + { + "artist": "Steel Magnolia", + "position": 24, + "title": "Keep On Lovin' You" + }, + { + "artist": "Sarah Buxton", + "position": 25, + "title": "Outside My Window" + } + ], + "title": "2009 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Jay-Z + Alicia Keys", + "position": 1, + "title": "Empire State Of Mind" + }, + { + "artist": "Ke$ha", + "position": 2, + "title": "TiK ToK" + }, + { + "artist": "Lady Gaga", + "position": 3, + "title": "Bad Romance" + }, + { + "artist": "Iyaz", + "position": 4, + "title": "Replay" + }, + { + "artist": "Owl City", + "position": 5, + "title": "Fireflies" + }, + { + "artist": "David Guetta Featuring Akon", + "position": 6, + "title": "Sexy Chick" + }, + { + "artist": "Jason Derulo", + "position": 7, + "title": "Whatcha Say" + }, + { + "artist": "The Black Eyed Peas", + "position": 8, + "title": "Meet Me Halfway" + }, + { + "artist": "Britney Spears", + "position": 9, + "title": "3" + }, + { + "artist": "Jay Sean Featuring Lil Wayne", + "position": 10, + "title": "Down" + }, + { + "artist": "Lady Gaga", + "position": 11, + "title": "Paparazzi" + }, + { + "artist": "Beyonce", + "position": 12, + "title": "Sweet Dreams" + }, + { + "artist": "Ludacris", + "position": 13, + "title": "How Low" + }, + { + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "position": 14, + "title": "Forever" + }, + { + "artist": "Kelly Clarkson", + "position": 15, + "title": "Already Gone" + }, + { + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "position": 16, + "title": "Do You Remember" + }, + { + "artist": "Miley Cyrus", + "position": 17, + "title": "Party In The U.S.A." + }, + { + "artist": "The Black Eyed Peas", + "position": 18, + "title": "I Gotta Feeling" + }, + { + "artist": "Lady Antebellum", + "position": 19, + "title": "Need You Now" + }, + { + "artist": "Young Money Featuring Lloyd", + "position": 20, + "title": "Bedrock" + }, + { + "artist": "Rihanna Featuring Jeezy", + "position": 21, + "title": "Hard" + }, + { + "artist": "Taylor Swift", + "position": 22, + "title": "You Belong With Me" + }, + { + "artist": "Kings Of Leon", + "position": 23, + "title": "Use Somebody" + }, + { + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "position": 24, + "title": "I Can Transform Ya" + }, + { + "artist": "Cascada", + "position": 25, + "title": "Evacuate The Dancefloor" + }, + { + "artist": "Birdman Featuring Lil Wayne & Drake", + "position": 26, + "title": "Money To Blow" + }, + { + "artist": "Taylor Swift", + "position": 27, + "title": "Fifteen" + }, + { + "artist": "Boys Like Girls Featuring Taylor Swift", + "position": 28, + "title": "Two Is Better Than One" + }, + { + "artist": "50 Cent Featuring Ne-Yo", + "position": 29, + "title": "Baby By Me" + }, + { + "artist": "Carrie Underwood", + "position": 30, + "title": "Cowboy Casanova" + }, + { + "artist": "Timbaland Featuring Justin Timberlake", + "position": 31, + "title": "Carry Out" + }, + { + "artist": "Jay-Z, Rihanna & Kanye West", + "position": 32, + "title": "Run This Town" + }, + { + "artist": "New Boyz Feat. Ray J", + "position": 33, + "title": "Tie Me Down" + }, + { + "artist": "Shakira Featuring Lil Wayne", + "position": 34, + "title": "Give It Up To Me" + }, + { + "artist": "Snoop Dogg Featuring The-Dream", + "position": 35, + "title": "Gangsta Luv" + }, + { + "artist": "Kris Allen", + "position": 36, + "title": "Live Like We're Dying" + }, + { + "artist": "Luke Bryan", + "position": 37, + "title": "Do I" + }, + { + "artist": "Trey Songz Featuring Fabolous", + "position": 38, + "title": "Say Aah" + }, + { + "artist": "Colbie Caillat", + "position": 39, + "title": "Fallin' For You" + }, + { + "artist": "Reba", + "position": 40, + "title": "Consider Me Gone" + }, + { + "artist": "Justin Bieber", + "position": 41, + "title": "One Time" + }, + { + "artist": "Gucci Mane Featuring Usher", + "position": 42, + "title": "Spotlight" + }, + { + "artist": "Trey Songz Featuring Drake", + "position": 43, + "title": "I Invented Sex" + }, + { + "artist": "Rihanna", + "position": 44, + "title": "Russian Roulette" + }, + { + "artist": "Train", + "position": 45, + "title": "Hey, Soul Sister" + }, + { + "artist": "Lady Gaga Featuring Beyonce", + "position": 46, + "title": "Telephone" + }, + { + "artist": "Shinedown", + "position": 47, + "title": "If You Only Knew" + }, + { + "artist": "Jason Aldean", + "position": 48, + "title": "The Truth" + }, + { + "artist": "Miranda Lambert", + "position": 49, + "title": "White Liar" + }, + { + "artist": "Tim McGraw", + "position": 50, + "title": "Southern Voice" + }, + { + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Jenna Ushkowitz & Amber Riley", + "position": 51, + "title": "My Life Would Suck Without You" + }, + { + "artist": "Dierks Bentley", + "position": 52, + "title": "I Wanna Make You Close Your Eyes" + }, + { + "artist": "Glee Cast Featuring Lea Michele", + "position": 53, + "title": "Don't Rain On My Parade" + }, + { + "artist": "Melanie Fiona", + "position": 54, + "title": "It Kills Me" + }, + { + "artist": "Orianthi", + "position": 55, + "title": "According To You" + }, + { + "artist": "Alicia Keys", + "position": 56, + "title": "Try Sleeping With A Broken Heart" + }, + { + "artist": "Usher", + "position": 57, + "title": "Papers" + }, + { + "artist": "Uncle Kracker", + "position": 58, + "title": "Smile" + }, + { + "artist": "David Nail", + "position": 59, + "title": "Red Light" + }, + { + "artist": "Chris Brown", + "position": 60, + "title": "Crawl" + }, + { + "artist": "Nickelback", + "position": 61, + "title": "Never Gonna Be Alone" + }, + { + "artist": "Lil Wayne", + "position": 62, + "title": "On Fire" + }, + { + "artist": "Jason Derulo", + "position": 63, + "title": "In My Head" + }, + { + "artist": "Daughtry", + "position": 64, + "title": "Life After You" + }, + { + "artist": "Craig Morgan", + "position": 65, + "title": "Bonfire" + }, + { + "artist": "Muse", + "position": 66, + "title": "Uprising" + }, + { + "artist": "Mary J. Blige", + "position": 67, + "title": "I Am" + }, + { + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "position": 68, + "title": "Wasted" + }, + { + "artist": "Jesse McCartney Featuring T-Pain", + "position": 69, + "title": "Body Language" + }, + { + "artist": "Darius Rucker", + "position": 70, + "title": "History In The Making" + }, + { + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Kevin McHale & Amber Riley", + "position": 71, + "title": "You Can't Always Get What You Want" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 72, + "title": "This Is War" + }, + { + "artist": "Justin Bieber", + "position": 73, + "title": "One Less Lonely Girl" + }, + { + "artist": "Michael Buble", + "position": 74, + "title": "Haven't Met You Yet" + }, + { + "artist": "Josh Turner", + "position": 75, + "title": "Why Don't We Just Dance" + }, + { + "artist": "Rob Thomas", + "position": 76, + "title": "Someday" + }, + { + "artist": "Jake Owen", + "position": 77, + "title": "Eight Second Ride" + }, + { + "artist": "Maxwell", + "position": 78, + "title": "Bad Habits" + }, + { + "artist": "OneRepublic", + "position": 79, + "title": "All The Right Moves" + }, + { + "artist": "Snoop Dogg", + "position": 80, + "title": "I Wanna Rock" + }, + { + "artist": "Breaking Benjamin", + "position": 81, + "title": "I Will Not Bow" + }, + { + "artist": "Thirty Seconds To Mars", + "position": 82, + "title": "Kings And Queens" + }, + { + "artist": "Pitbull Featuring Akon", + "position": 83, + "title": "Shut It Down" + }, + { + "artist": "Three Days Grace", + "position": 84, + "title": "Break" + }, + { + "artist": "Billy Currington", + "position": 85, + "title": "That's How Country Boys Roll" + }, + { + "artist": "Chris Young", + "position": 86, + "title": "Gettin' You Home (The Black Dress Song)" + }, + { + "artist": "Phoenix", + "position": 87, + "title": "1901" + }, + { + "artist": "Chris Brown Featuring Plies", + "position": 88, + "title": "What I Do" + }, + { + "artist": "Glee Cast", + "position": 89, + "title": "Last Christmas" + }, + { + "artist": "Brad Paisley", + "position": 90, + "title": "American Saturday Night" + }, + { + "artist": "Toby Keith", + "position": 91, + "title": "Cryin' For Me (Wayman's Song)" + }, + { + "artist": "Omarion Featuring Gucci Mane", + "position": 92, + "title": "I Get It In" + }, + { + "artist": "The Script", + "position": 93, + "title": "Breakeven" + }, + { + "artist": "Glee Cast Featuring Amber Riley", + "position": 94, + "title": "And I Am Telling You I'm Not Going" + }, + { + "artist": "Weezer", + "position": 95, + "title": "(If You're Wondering If I Want You To) I Want You To" + }, + { + "artist": "Drake Featuring Lil Wayne & Young Jeezy", + "position": 96, + "title": "I'm Going In" + }, + { + "artist": "Beyonce", + "position": 97, + "title": "Video Phone" + }, + { + "artist": "Ester Dean Featuring Chris Brown", + "position": 98, + "title": "Drop It Low" + }, + { + "artist": "Lifehouse", + "position": 99, + "title": "Halfway Gone" + }, + { + "artist": "George Strait", + "position": 100, + "title": "Twang" + } + ], + "title": "2009 - Hot 100" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Single Ladies (Put A Ring On It)" + }, + { + "artist": "T.I. Featuring Rihanna", + "position": 2, + "title": "Live Your Life" + }, + { + "artist": "T-Pain Featuring Ludacris", + "position": 3, + "title": "Chopped 'N' Skrewed" + }, + { + "artist": "Ne-Yo", + "position": 4, + "title": "Miss Independent" + }, + { + "artist": "Usher", + "position": 5, + "title": "Trading Places" + }, + { + "artist": "John Legend Featuring Andre 3000", + "position": 6, + "title": "Green Light" + }, + { + "artist": "Jazmine Sullivan", + "position": 7, + "title": "Bust Your Windows" + }, + { + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "position": 8, + "title": "Mrs. Officer" + }, + { + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "position": 9, + "title": "Pop Champagne" + }, + { + "artist": "T.I.", + "position": 10, + "title": "Whatever You Like" + }, + { + "artist": "Keyshia Cole Featuring 2Pac", + "position": 11, + "title": "Playa Cardz Right" + }, + { + "artist": "Jennifer Hudson", + "position": 12, + "title": "Spotlight" + }, + { + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "position": 13, + "title": "IfULeave" + }, + { + "artist": "T-Pain Featuring Lil Wayne", + "position": 14, + "title": "Can't Believe It" + }, + { + "artist": "Plies Featuring Chris J", + "position": 15, + "title": "Put It On Ya" + }, + { + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "position": 16, + "title": "She Got Her Own" + }, + { + "artist": "Beyonce", + "position": 17, + "title": "If I Were A Boy" + }, + { + "artist": "Ludacris Co-Starring T-Pain", + "position": 18, + "title": "One More Drink" + }, + { + "artist": "Jazmine Sullivan", + "position": 19, + "title": "Need U Bad" + }, + { + "artist": "Jamie Foxx Featuring T.I.", + "position": 20, + "title": "Just Like Me" + }, + { + "artist": "Avant", + "position": 21, + "title": "When It Hurts" + }, + { + "artist": "Kanye West", + "position": 22, + "title": "Heartless" + }, + { + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "position": 23, + "title": "Swagga Like Us" + }, + { + "artist": "Usher", + "position": 24, + "title": "Here I Stand" + }, + { + "artist": "Keyshia Cole", + "position": 25, + "title": "Heaven Sent" + } + ], + "title": "2008 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "T.I. Featuring Rihanna", + "position": 1, + "title": "Live Your Life" + }, + { + "artist": "Britney Spears", + "position": 2, + "title": "Womanizer" + }, + { + "artist": "Jason Mraz", + "position": 3, + "title": "I'm Yours" + }, + { + "artist": "Katy Perry", + "position": 4, + "title": "Hot N Cold" + }, + { + "artist": "Lady GaGa Featuring Colby O'Donis", + "position": 5, + "title": "Just Dance" + }, + { + "artist": "Pink", + "position": 6, + "title": "So What" + }, + { + "artist": "Kevin Rudolf Featuring Lil Wayne", + "position": 7, + "title": "Let It Rock" + }, + { + "artist": "T.I.", + "position": 8, + "title": "Whatever You Like" + }, + { + "artist": "Beyonce", + "position": 9, + "title": "If I Were A Boy" + }, + { + "artist": "Akon", + "position": 10, + "title": "Right Now (Na Na Na)" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Love Story" + }, + { + "artist": "Ne-Yo", + "position": 12, + "title": "Miss Independent" + }, + { + "artist": "Saving Abel", + "position": 13, + "title": "Addicted" + }, + { + "artist": "Nickelback", + "position": 14, + "title": "Gotta Be Somebody" + }, + { + "artist": "Kanye West", + "position": 15, + "title": "Love Lockdown" + }, + { + "artist": "Beyonce", + "position": 16, + "title": "Single Ladies (Put A Ring On It)" + }, + { + "artist": "Leona Lewis", + "position": 17, + "title": "Better In Time" + }, + { + "artist": "Rihanna", + "position": 18, + "title": "Rehab" + }, + { + "artist": "Rihanna", + "position": 19, + "title": "Disturbia" + }, + { + "artist": "Gavin Rossdale", + "position": 20, + "title": "Love Remains The Same" + } + ], + "title": "2008 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Montgomery Gentry", + "position": 1, + "title": "Roll With Me" + }, + { + "artist": "Rascal Flatts", + "position": 2, + "title": "Here" + }, + { + "artist": "Zac Brown Band", + "position": 3, + "title": "Chicken Fried" + }, + { + "artist": "Sugarland", + "position": 4, + "title": "Already Gone" + }, + { + "artist": "Brad Paisley Duet With Keith Urban", + "position": 5, + "title": "Start A Band" + }, + { + "artist": "Tim McGraw", + "position": 6, + "title": "Let It Go" + }, + { + "artist": "Alan Jackson", + "position": 7, + "title": "Country Boy" + }, + { + "artist": "Billy Currington", + "position": 8, + "title": "Don't" + }, + { + "artist": "Dierks Bentley", + "position": 9, + "title": "Feel That Fire" + }, + { + "artist": "Jamey Johnson", + "position": 10, + "title": "In Color" + }, + { + "artist": "Blake Shelton", + "position": 11, + "title": "She Wouldn't Be Gone" + }, + { + "artist": "Lady Antebellum", + "position": 12, + "title": "Lookin' For A Good Time" + }, + { + "artist": "Toby Keith", + "position": 13, + "title": "God Love Her" + }, + { + "artist": "Kenny Chesney With Mac McAnally", + "position": 14, + "title": "Down The Road" + }, + { + "artist": "Brooks & Dunn Featuring Reba McEntire", + "position": 15, + "title": "Cowgirls Don't Cry" + }, + { + "artist": "Keith Urban", + "position": 16, + "title": "Sweet Thing" + }, + { + "artist": "George Strait", + "position": 17, + "title": "River Of Love" + }, + { + "artist": "Randy Houser", + "position": 18, + "title": "Anything Goes" + }, + { + "artist": "Pat Green", + "position": 19, + "title": "Let Me" + }, + { + "artist": "Taylor Swift", + "position": 20, + "title": "White Horse" + }, + { + "artist": "Darius Rucker", + "position": 21, + "title": "It Won't Be Like This For Long" + }, + { + "artist": "Jake Owen", + "position": 22, + "title": "Don't Think I Can't Love You" + }, + { + "artist": "Lee Ann Womack", + "position": 23, + "title": "Last Call" + }, + { + "artist": "Jack Ingram", + "position": 24, + "title": "That's A Man" + }, + { + "artist": "Martina McBride", + "position": 25, + "title": "Ride" + } + ], + "title": "2008 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Single Ladies (Put A Ring On It)" + }, + { + "artist": "T.I. Featuring Rihanna", + "position": 2, + "title": "Live Your Life" + }, + { + "artist": "Lady GaGa Featuring Colby O'Donis", + "position": 3, + "title": "Just Dance" + }, + { + "artist": "Britney Spears", + "position": 4, + "title": "Circus" + }, + { + "artist": "T.I.", + "position": 5, + "title": "Whatever You Like" + }, + { + "artist": "Britney Spears", + "position": 6, + "title": "Womanizer" + }, + { + "artist": "Kanye West", + "position": 7, + "title": "Heartless" + }, + { + "artist": "Katy Perry", + "position": 8, + "title": "Hot N Cold" + }, + { + "artist": "Beyonce", + "position": 9, + "title": "If I Were A Boy" + }, + { + "artist": "Kanye West", + "position": 10, + "title": "Love Lockdown" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Love Story" + }, + { + "artist": "Jason Mraz", + "position": 12, + "title": "I'm Yours" + }, + { + "artist": "Kevin Rudolf Featuring Lil Wayne", + "position": 13, + "title": "Let It Rock" + }, + { + "artist": "Ne-Yo", + "position": 14, + "title": "Miss Independent" + }, + { + "artist": "Akon", + "position": 15, + "title": "Right Now (Na Na Na)" + }, + { + "artist": "Pink", + "position": 16, + "title": "So What" + }, + { + "artist": "Nickelback", + "position": 17, + "title": "Gotta Be Somebody" + }, + { + "artist": "T-Pain Featuring Lil Wayne", + "position": 18, + "title": "Can't Believe It" + }, + { + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "position": 19, + "title": "Mrs. Officer" + }, + { + "artist": "Zac Brown Band", + "position": 20, + "title": "Chicken Fried" + }, + { + "artist": "Rihanna", + "position": 21, + "title": "Rehab" + }, + { + "artist": "Rihanna", + "position": 22, + "title": "Disturbia" + }, + { + "artist": "Saving Abel", + "position": 23, + "title": "Addicted" + }, + { + "artist": "John Legend Featuring Andre 3000", + "position": 24, + "title": "Green Light" + }, + { + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "position": 25, + "title": "Pop Champagne" + }, + { + "artist": "Ludacris Co-Starring T-Pain", + "position": 26, + "title": "One More Drink" + }, + { + "artist": "T-Pain Featuring Ludacris", + "position": 27, + "title": "Chopped 'N' Skrewed" + }, + { + "artist": "Leona Lewis", + "position": 28, + "title": "Better In Time" + }, + { + "artist": "Akon Featuring Colby O'Donis & Kardinal Offishall", + "position": 29, + "title": "Beautiful" + }, + { + "artist": "The Fray", + "position": 30, + "title": "You Found Me" + }, + { + "artist": "Akon Featuring Lil Wayne & Young Jeezy", + "position": 31, + "title": "I'm So Paid" + }, + { + "artist": "Coldplay", + "position": 32, + "title": "Viva La Vida" + }, + { + "artist": "Montgomery Gentry", + "position": 33, + "title": "Roll With Me" + }, + { + "artist": "Brandy", + "position": 34, + "title": "Right Here (Departed)" + }, + { + "artist": "Gavin Rossdale", + "position": 35, + "title": "Love Remains The Same" + }, + { + "artist": "O.A.R.", + "position": 36, + "title": "Shattered (Turn The Car Around)" + }, + { + "artist": "The All-American Rejects", + "position": 37, + "title": "Gives You Hell" + }, + { + "artist": "Ne-Yo", + "position": 38, + "title": "Closer" + }, + { + "artist": "Jazmine Sullivan", + "position": 39, + "title": "Bust Your Windows" + }, + { + "artist": "The Veronicas", + "position": 40, + "title": "Untouched" + }, + { + "artist": "The Killers", + "position": 41, + "title": "Human" + }, + { + "artist": "Sugarland", + "position": 42, + "title": "Already Gone" + }, + { + "artist": "David Archuleta", + "position": 43, + "title": "Crush" + }, + { + "artist": "Secondhand Serenade", + "position": 44, + "title": "Fall For You" + }, + { + "artist": "Usher", + "position": 45, + "title": "Trading Places" + }, + { + "artist": "Paramore", + "position": 46, + "title": "Decode" + }, + { + "artist": "Jennifer Hudson", + "position": 47, + "title": "Spotlight" + }, + { + "artist": "David Cook", + "position": 48, + "title": "Light On" + }, + { + "artist": "Pink", + "position": 49, + "title": "Sober" + }, + { + "artist": "Rascal Flatts", + "position": 50, + "title": "Here" + }, + { + "artist": "Taylor Swift", + "position": 51, + "title": "White Horse" + }, + { + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "position": 52, + "title": "Swagga Like Us" + }, + { + "artist": "Jamey Johnson", + "position": 53, + "title": "In Color" + }, + { + "artist": "Blake Shelton", + "position": 54, + "title": "She Wouldn't Be Gone" + }, + { + "artist": "Brad Paisley Duet With Keith Urban", + "position": 55, + "title": "Start A Band" + }, + { + "artist": "Dierks Bentley", + "position": 56, + "title": "Feel That Fire" + }, + { + "artist": "Alan Jackson", + "position": 57, + "title": "Country Boy" + }, + { + "artist": "The Pussycat Dolls", + "position": 58, + "title": "I Hate This Part" + }, + { + "artist": "Christina Aguilera", + "position": 59, + "title": "Keeps Gettin' Better" + }, + { + "artist": "Brooks & Dunn Featuring Reba McEntire", + "position": 60, + "title": "Cowgirls Don't Cry" + }, + { + "artist": "Carrie Underwood", + "position": 61, + "title": "Just A Dream" + }, + { + "artist": "Fall Out Boy", + "position": 62, + "title": "I Don't Care" + }, + { + "artist": "Billy Currington", + "position": 63, + "title": "Don't" + }, + { + "artist": "The Game Featuring Lil Wayne", + "position": 64, + "title": "My Life" + }, + { + "artist": "Plies Featuring Chris J", + "position": 65, + "title": "Put It On Ya" + }, + { + "artist": "Toby Keith", + "position": 66, + "title": "God Love Her" + }, + { + "artist": "Keyshia Cole Featuring 2Pac", + "position": 67, + "title": "Playa Cardz Right" + }, + { + "artist": "Tim McGraw", + "position": 68, + "title": "Let It Go" + }, + { + "artist": "Savage Featuring Soulja Boy Tell'em", + "position": 69, + "title": "Swing" + }, + { + "artist": "Lady Antebellum", + "position": 70, + "title": "Lookin' For A Good Time" + }, + { + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "position": 71, + "title": "IfULeave" + }, + { + "artist": "Kings Of Leon", + "position": 72, + "title": "Sex On Fire" + }, + { + "artist": "Common Featuring Pharrell", + "position": 73, + "title": "Universal Mind Control" + }, + { + "artist": "Keith Urban", + "position": 74, + "title": "Sweet Thing" + }, + { + "artist": "Jamie Foxx Featuring T.I.", + "position": 75, + "title": "Just Like Me" + }, + { + "artist": "Shinedown", + "position": 76, + "title": "Second Chance" + }, + { + "artist": "The Offspring", + "position": 77, + "title": "You're Gonna Go Far, Kid" + }, + { + "artist": "Kenny Chesney With Mac McAnally", + "position": 78, + "title": "Down The Road" + }, + { + "artist": "Ne-Yo", + "position": 79, + "title": "Mad" + }, + { + "artist": "Shontelle", + "position": 80, + "title": "T-Shirt" + }, + { + "artist": "Matt Nathanson", + "position": 81, + "title": "Come On Get Higher" + }, + { + "artist": "Metro Station", + "position": 82, + "title": "Seventeen Forever" + }, + { + "artist": "Pitbull Featuring Lil Jon", + "position": 83, + "title": "Krazy" + }, + { + "artist": "Apocalyptica Featuring Adam Gontier", + "position": 84, + "title": "I Don't Care" + }, + { + "artist": "Daughtry", + "position": 85, + "title": "What About Now" + }, + { + "artist": "Busta Rhymes", + "position": 86, + "title": "Arab Money" + }, + { + "artist": "George Strait", + "position": 87, + "title": "River Of Love" + }, + { + "artist": "Kenny Chesney With The Wailers", + "position": 88, + "title": "Everybody Wants To Go To Heaven" + }, + { + "artist": "Lifehouse", + "position": 89, + "title": "Broken" + }, + { + "artist": "Hinder", + "position": 90, + "title": "Without You" + }, + { + "artist": "Avant", + "position": 91, + "title": "When It Hurts" + }, + { + "artist": "Randy Houser", + "position": 92, + "title": "Anything Goes" + }, + { + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "position": 93, + "title": "She Got Her Own" + }, + { + "artist": "50 Cent", + "position": 94, + "title": "Get Up" + }, + { + "artist": "Theory Of A Deadman", + "position": 95, + "title": "Bad Girlfriend" + }, + { + "artist": "Adele", + "position": 96, + "title": "Chasing Pavements" + }, + { + "artist": "Craig Morgan", + "position": 97, + "title": "Love Remembers" + }, + { + "artist": "Kanye West Featuring Lil Wayne", + "position": 98, + "title": "See You In My Nightmares" + }, + { + "artist": "T.I. Featuring Justin Timberlake", + "position": 99, + "title": "Dead And Gone" + }, + { + "artist": "Luis Fonsi", + "position": 100, + "title": "No Me Doy Por Vencido" + } + ], + "title": "2008 - Hot 100" + }, + { + "songs": [ + { + "artist": "Timbaland Featuring OneRepublic", + "position": 1, + "title": "Apologize" + }, + { + "artist": "Alicia Keys", + "position": 2, + "title": "No One" + }, + { + "artist": "Fergie", + "position": 3, + "title": "Clumsy" + }, + { + "artist": "Colbie Caillat", + "position": 4, + "title": "Bubbly" + }, + { + "artist": "Rihanna Featuring Ne-Yo", + "position": 5, + "title": "Hate That I Love You" + }, + { + "artist": "Chris Brown Featuring T-Pain", + "position": 6, + "title": "Kiss Kiss" + }, + { + "artist": "Finger Eleven", + "position": 7, + "title": "Paralyzer" + }, + { + "artist": "Jordin Sparks", + "position": 8, + "title": "Tattoo" + }, + { + "artist": "Flo Rida Featuring T-Pain", + "position": 9, + "title": "Low" + }, + { + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "position": 10, + "title": "Love Like This" + }, + { + "artist": "Taylor Swift", + "position": 11, + "title": "Teardrops On My Guitar" + }, + { + "artist": "Daughtry", + "position": 12, + "title": "Over You" + }, + { + "artist": "Baby Bash Featuring T-Pain", + "position": 13, + "title": "Cyclone" + }, + { + "artist": "Kanye West", + "position": 14, + "title": "Stronger" + }, + { + "artist": "Timbaland Featuring Keri Hilson", + "position": 15, + "title": "The Way I Are" + }, + { + "artist": "Good Charlotte", + "position": 16, + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)" + }, + { + "artist": "Paramore", + "position": 17, + "title": "Misery Business" + }, + { + "artist": "matchbox twenty", + "position": 18, + "title": "How Far We've Come" + }, + { + "artist": "Kanye West Featuring T-Pain", + "position": 19, + "title": "Good Life" + }, + { + "artist": "Sean Kingston", + "position": 20, + "title": "Take You There" + } + ], + "title": "2007 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Taylor Swift", + "position": 1, + "title": "Our Song" + }, + { + "artist": "Josh Turner", + "position": 2, + "title": "Firecracker" + }, + { + "artist": "George Strait", + "position": 3, + "title": "How 'Bout Them Cowgirls" + }, + { + "artist": "Montgomery Gentry", + "position": 4, + "title": "What Do Ya Think About That" + }, + { + "artist": "Sugarland", + "position": 5, + "title": "Stay" + }, + { + "artist": "Kenny Chesney", + "position": 6, + "title": "Don't Blink" + }, + { + "artist": "Rascal Flatts", + "position": 7, + "title": "Winner At A Losing Game" + }, + { + "artist": "Keith Urban", + "position": 8, + "title": "Everybody" + }, + { + "artist": "Brad Paisley", + "position": 9, + "title": "Letter To Me" + }, + { + "artist": "Gary Allan", + "position": 10, + "title": "Watching Airplanes" + }, + { + "artist": "Carrie Underwood", + "position": 11, + "title": "So Small" + }, + { + "artist": "Garth Brooks", + "position": 12, + "title": "More Than A Memory" + }, + { + "artist": "Billy Ray Cyrus With Miley Cyrus", + "position": 13, + "title": "Ready, Set, Don't Go" + }, + { + "artist": "Rodney Atkins", + "position": 14, + "title": "Cleaning This Gun (Come On In Boy)" + }, + { + "artist": "Chuck Wicks", + "position": 15, + "title": "Stealing Cinderella" + }, + { + "artist": "Toby Keith", + "position": 16, + "title": "Get My Drink On" + }, + { + "artist": "Craig Morgan", + "position": 17, + "title": "International Harvester" + }, + { + "artist": "Alan Jackson", + "position": 18, + "title": "Small Town Southern Man" + }, + { + "artist": "Blake Shelton", + "position": 19, + "title": "The More I Drink" + }, + { + "artist": "Chris Cagle", + "position": 20, + "title": "What Kinda Gone" + }, + { + "artist": "Brooks & Dunn", + "position": 21, + "title": "God Must Be Busy" + }, + { + "artist": "Tim McGraw", + "position": 22, + "title": "Suspicions" + }, + { + "artist": "Eagles", + "position": 23, + "title": "How Long" + }, + { + "artist": "Jason Aldean", + "position": 24, + "title": "Laughed Until We Cried" + }, + { + "artist": "Kenny Chesney", + "position": 25, + "title": "Shiftwork" + } + ], + "title": "2007 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Alicia Keys", + "position": 1, + "title": "No One" + }, + { + "artist": "Flo Rida Featuring T-Pain", + "position": 2, + "title": "Low" + }, + { + "artist": "Timbaland Featuring OneRepublic", + "position": 3, + "title": "Apologize" + }, + { + "artist": "Chris Brown Featuring T-Pain", + "position": 4, + "title": "Kiss Kiss" + }, + { + "artist": "Fergie", + "position": 5, + "title": "Clumsy" + }, + { + "artist": "Colbie Caillat", + "position": 6, + "title": "Bubbly" + }, + { + "artist": "Finger Eleven", + "position": 7, + "title": "Paralyzer" + }, + { + "artist": "Jordin Sparks", + "position": 8, + "title": "Tattoo" + }, + { + "artist": "Rihanna Featuring Ne-Yo", + "position": 9, + "title": "Hate That I Love You" + }, + { + "artist": "Kanye West Featuring T-Pain", + "position": 10, + "title": "Good Life" + }, + { + "artist": "Soulja Boy Tell'em", + "position": 11, + "title": "Crank That (Soulja Boy)" + }, + { + "artist": "Baby Bash Featuring T-Pain", + "position": 12, + "title": "Cyclone" + }, + { + "artist": "Alicia Keys", + "position": 13, + "title": "Like You'll Never See Me Again" + }, + { + "artist": "Plies Featuring Akon", + "position": 14, + "title": "Hypnotized" + }, + { + "artist": "Trey Songz", + "position": 15, + "title": "Can't Help But Wait" + }, + { + "artist": "Sara Bareilles", + "position": 16, + "title": "Love Song" + }, + { + "artist": "Kanye West", + "position": 17, + "title": "Stronger" + }, + { + "artist": "Sean Kingston", + "position": 18, + "title": "Take You There" + }, + { + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "position": 19, + "title": "Love Like This" + }, + { + "artist": "Timbaland Featuring Keri Hilson", + "position": 20, + "title": "The Way I Are" + }, + { + "artist": "Taylor Swift", + "position": 21, + "title": "Our Song" + }, + { + "artist": "Playaz Circle Featuring Lil Wayne", + "position": 22, + "title": "Duffle Bag Boy" + }, + { + "artist": "Wyclef Jean Featuring Akon, Lil Wayne & Niia", + "position": 23, + "title": "Sweetest Girl (Dollar Bill)" + }, + { + "artist": "Taylor Swift", + "position": 24, + "title": "Teardrops On My Guitar" + }, + { + "artist": "Chris Brown", + "position": 25, + "title": "With You" + }, + { + "artist": "Mary J. Blige", + "position": 26, + "title": "Just Fine" + }, + { + "artist": "matchbox twenty", + "position": 27, + "title": "How Far We've Come" + }, + { + "artist": "DJ Khaled Featuring T-Pain, Trick Daddy, Rick Ross & Plies", + "position": 28, + "title": "I'm So Hood" + }, + { + "artist": "Linkin Park", + "position": 29, + "title": "Shadow Of The Day" + }, + { + "artist": "Santana Featuring Chad Kroeger", + "position": 30, + "title": "Into The Night" + }, + { + "artist": "Daughtry", + "position": 31, + "title": "Over You" + }, + { + "artist": "The-Dream", + "position": 32, + "title": "Shawty Is A 10" + }, + { + "artist": "Bow Wow & Omarion", + "position": 33, + "title": "Girlfriend" + }, + { + "artist": "Good Charlotte", + "position": 34, + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)" + }, + { + "artist": "Paramore", + "position": 35, + "title": "Misery Business" + }, + { + "artist": "Fergie", + "position": 36, + "title": "Big Girls Don't Cry" + }, + { + "artist": "Snoop Dogg", + "position": 37, + "title": "Sensual Seduction" + }, + { + "artist": "Justin Timberlake Duet With Beyonce", + "position": 38, + "title": "Until The End Of Time" + }, + { + "artist": "Kanye West Featuring Dwele", + "position": 39, + "title": "Flashing Lights" + }, + { + "artist": "Sugarland", + "position": 40, + "title": "Stay" + }, + { + "artist": "J. Holiday", + "position": 41, + "title": "Suffocate" + }, + { + "artist": "Maroon 5", + "position": 42, + "title": "Wake Up Call" + }, + { + "artist": "J. Holiday", + "position": 43, + "title": "Bed" + }, + { + "artist": "Pink", + "position": 44, + "title": "Who Knew" + }, + { + "artist": "Britney Spears", + "position": 45, + "title": "Piece Of Me" + }, + { + "artist": "Birdman Featuring Lil Wayne", + "position": 46, + "title": "Pop Bottles" + }, + { + "artist": "Rihanna", + "position": 47, + "title": "Don't Stop The Music" + }, + { + "artist": "Kenny Chesney", + "position": 48, + "title": "Don't Blink" + }, + { + "artist": "Nickelback", + "position": 49, + "title": "Rockstar" + }, + { + "artist": "Keyshia Cole Introducing Amina", + "position": 50, + "title": "Shoulda Let You Go" + }, + { + "artist": "DJ Felli Fel Featuring Diddy, Akon, Ludacris & Lil Jon", + "position": 51, + "title": "Get Buck In Here" + }, + { + "artist": "Soulja Boy Tell'em Featuring I-15", + "position": 52, + "title": "Soulja Girl" + }, + { + "artist": "Josh Turner", + "position": 53, + "title": "Firecracker" + }, + { + "artist": "50 Cent Featuring Justin Timberlake & Timbaland", + "position": 54, + "title": "Ayo Technology" + }, + { + "artist": "Cassidy Featuring Swizz Beatz", + "position": 55, + "title": "My Drink N' My 2 Step" + }, + { + "artist": "George Strait", + "position": 56, + "title": "How 'Bout Them Cowgirls" + }, + { + "artist": "Carrie Underwood", + "position": 57, + "title": "So Small" + }, + { + "artist": "Billy Ray Cyrus With Miley Cyrus", + "position": 58, + "title": "Ready, Set, Don't Go" + }, + { + "artist": "Buckcherry", + "position": 59, + "title": "Sorry" + }, + { + "artist": "Foo Fighters", + "position": 60, + "title": "The Pretender" + }, + { + "artist": "Seether", + "position": 61, + "title": "Fake It" + }, + { + "artist": "Montgomery Gentry", + "position": 62, + "title": "What Do Ya Think About That" + }, + { + "artist": "Jack Johnson", + "position": 63, + "title": "If I Had Eyes" + }, + { + "artist": "Webbie, Lil' Phat & Lil' Boosie", + "position": 64, + "title": "Independent" + }, + { + "artist": "Brad Paisley", + "position": 65, + "title": "Letter To Me" + }, + { + "artist": "Rascal Flatts", + "position": 66, + "title": "Winner At A Losing Game" + }, + { + "artist": "Fabolous Featuring Jermaine Dupri", + "position": 67, + "title": "Baby Don't Go" + }, + { + "artist": "Enur Featuring Natasja", + "position": 68, + "title": "Calabria 2008" + }, + { + "artist": "Britney Spears", + "position": 69, + "title": "Gimme More" + }, + { + "artist": "Feist", + "position": 70, + "title": "1234" + }, + { + "artist": "Keith Urban", + "position": 71, + "title": "Everybody" + }, + { + "artist": "Three Days Grace", + "position": 72, + "title": "Never Too Late" + }, + { + "artist": "Gary Allan", + "position": 73, + "title": "Watching Airplanes" + }, + { + "artist": "Chris Brown", + "position": 74, + "title": "This Christmas" + }, + { + "artist": "Mario", + "position": 75, + "title": "Crying Out For Me" + }, + { + "artist": "Lupe Fiasco Featuring Matthew Santos", + "position": 76, + "title": "Superstar" + }, + { + "artist": "Gucci Mane", + "position": 77, + "title": "Freaky Gurl" + }, + { + "artist": "Miley Cyrus", + "position": 78, + "title": "See You Again" + }, + { + "artist": "Boys Like Girls", + "position": 79, + "title": "Hero/Heroine" + }, + { + "artist": "Keyshia Cole", + "position": 80, + "title": "I Remember" + }, + { + "artist": "Clay Walker", + "position": 81, + "title": "Fall" + }, + { + "artist": "Linkin Park", + "position": 82, + "title": "Bleed It Out" + }, + { + "artist": "The Last Goodnight", + "position": 83, + "title": "Pictures Of You" + }, + { + "artist": "Maroon 5", + "position": 84, + "title": "Won't Go Home Without You" + }, + { + "artist": "LeAnn Rimes", + "position": 85, + "title": "Nothin' Better To Do" + }, + { + "artist": "Jay-Z", + "position": 86, + "title": "Roc Boys (And The Winner Is)..." + }, + { + "artist": "Sara Evans", + "position": 87, + "title": "As If" + }, + { + "artist": "Ingrid Michaelson", + "position": 88, + "title": "The Way I Am" + }, + { + "artist": "Rodney Atkins", + "position": 89, + "title": "Cleaning This Gun (Come On In Boy)" + }, + { + "artist": "Garth Brooks", + "position": 90, + "title": "More Than A Memory" + }, + { + "artist": "Jonas Brothers", + "position": 91, + "title": "S.O.S." + }, + { + "artist": "Jason Michael Carroll", + "position": 92, + "title": "Livin' Our Love Song" + }, + { + "artist": "Paramore", + "position": 93, + "title": "Crushcrushcrush" + }, + { + "artist": "Chuck Wicks", + "position": 94, + "title": "Stealing Cinderella" + }, + { + "artist": "Dierks Bentley", + "position": 95, + "title": "Free And Easy (Down The Road I Go)" + }, + { + "artist": "Craig Morgan", + "position": 96, + "title": "International Harvester" + }, + { + "artist": "Juanes", + "position": 97, + "title": "Me Enamora" + }, + { + "artist": "OneRepublic", + "position": 98, + "title": "Stop And Stare" + }, + { + "artist": "Colbie Caillat", + "position": 99, + "title": "Mistletoe" + }, + { + "artist": "Mary J. Blige", + "position": 100, + "title": "Work That" + } + ], + "title": "2007 - Hot 100" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Irreplaceable" + }, + { + "artist": "Justin Timberlake Featuring T.I.", + "position": 2, + "title": "My Love" + }, + { + "artist": "The Fray", + "position": 3, + "title": "How To Save A Life" + }, + { + "artist": "Akon Featuring Eminem", + "position": 4, + "title": "Smack That" + }, + { + "artist": "Fergie", + "position": 5, + "title": "Fergalicious" + }, + { + "artist": "Hinder", + "position": 6, + "title": "Lips Of An Angel" + }, + { + "artist": "Nickelback", + "position": 7, + "title": "Far Away" + }, + { + "artist": "Akon Featuring Snoop Dogg", + "position": 8, + "title": "I Wanna Love You" + }, + { + "artist": "Paula DeAnda Featuring The DEY", + "position": 9, + "title": "Walk Away (Remember Me)" + }, + { + "artist": "Christina Aguilera", + "position": 10, + "title": "Hurt" + }, + { + "artist": "Ludacris Featuring Pharrell", + "position": 11, + "title": "Money Maker" + }, + { + "artist": "Nelly Furtado", + "position": 12, + "title": "Say It Right" + }, + { + "artist": "Evanescence", + "position": 13, + "title": "Call Me When You're Sober" + }, + { + "artist": "JoJo", + "position": 14, + "title": "Too Little Too Late" + }, + { + "artist": "The All-American Rejects", + "position": 15, + "title": "It Ends Tonight" + }, + { + "artist": "Rihanna & Sean Paul", + "position": 16, + "title": "Break It Off" + }, + { + "artist": "John Mayer", + "position": 17, + "title": "Waiting On The World To Change" + }, + { + "artist": "Vanessa Hudgens", + "position": 18, + "title": "Come Back To Me" + }, + { + "artist": "Justin Timberlake", + "position": 19, + "title": "SexyBack" + }, + { + "artist": "Snow Patrol", + "position": 20, + "title": "Chasing Cars" + } + ], + "title": "2006 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Sugarland", + "position": 1, + "title": "Want To" + }, + { + "artist": "Rascal Flatts", + "position": 2, + "title": "My Wish" + }, + { + "artist": "Tim McGraw", + "position": 3, + "title": "My Little Girl" + }, + { + "artist": "Brad Paisley", + "position": 4, + "title": "She's Everything" + }, + { + "artist": "Rodney Atkins", + "position": 5, + "title": "Watching You" + }, + { + "artist": "Carrie Underwood", + "position": 6, + "title": "Before He Cheats" + }, + { + "artist": "George Strait", + "position": 7, + "title": "It Just Comes Natural" + }, + { + "artist": "Montgomery Gentry", + "position": 8, + "title": "Some People Change" + }, + { + "artist": "Taylor Swift", + "position": 9, + "title": "Tim McGraw" + }, + { + "artist": "Jason Aldean", + "position": 10, + "title": "Amarillo Sky" + }, + { + "artist": "Kenny Chesney", + "position": 11, + "title": "You Save Me" + }, + { + "artist": "Jason Michael Carroll", + "position": 12, + "title": "Alyssa Lies" + }, + { + "artist": "The Wreckers", + "position": 13, + "title": "My, Oh My" + }, + { + "artist": "Trent Tomlinson", + "position": 14, + "title": "One Wing In The Fire" + }, + { + "artist": "Craig Morgan", + "position": 15, + "title": "Little Bit Of Life" + }, + { + "artist": "Keith Urban", + "position": 16, + "title": "Stupid Boy" + }, + { + "artist": "Trace Adkins", + "position": 17, + "title": "Ladies Love Country Boys" + }, + { + "artist": "Martina McBride", + "position": 18, + "title": "Anyway" + }, + { + "artist": "Joe Nichols", + "position": 19, + "title": "I'll Wait For you" + }, + { + "artist": "Kellie Pickler", + "position": 20, + "title": "Red High Heels" + }, + { + "artist": "Sara Evans", + "position": 21, + "title": "You'll Always Be My Baby" + }, + { + "artist": "Phil Vassar", + "position": 22, + "title": "The Woman In My Life" + }, + { + "artist": "Darryl Worley", + "position": 23, + "title": "I Just Came Back From A War" + }, + { + "artist": "Little Big Town", + "position": 24, + "title": "Good As Gone" + }, + { + "artist": "Gary Allan", + "position": 25, + "title": "A Feelin' Like That" + } + ], + "title": "2006 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Beyonce", + "position": 1, + "title": "Irreplaceable" + }, + { + "artist": "Akon Featuring Snoop Dogg", + "position": 2, + "title": "I Wanna Love You" + }, + { + "artist": "Akon Featuring Eminem", + "position": 3, + "title": "Smack That" + }, + { + "artist": "Fergie", + "position": 4, + "title": "Fergalicious" + }, + { + "artist": "Justin Timberlake Featuring T.I.", + "position": 5, + "title": "My Love" + }, + { + "artist": "Nelly Furtado", + "position": 6, + "title": "Say It Right" + }, + { + "artist": "Jim Jones", + "position": 7, + "title": "We Fly High" + }, + { + "artist": "The Fray", + "position": 8, + "title": "How To Save A Life" + }, + { + "artist": "Bow Wow Featuring Chris Brown & Johnta Austin", + "position": 9, + "title": "Shortie Like Mine" + }, + { + "artist": "Hinder", + "position": 10, + "title": "Lips Of An Angel" + }, + { + "artist": "Ciara", + "position": 11, + "title": "Promise" + }, + { + "artist": "Gwen Stefani", + "position": 12, + "title": "Wind It Up" + }, + { + "artist": "Unk", + "position": 13, + "title": "Walk It Out" + }, + { + "artist": "Young Jeezy", + "position": 14, + "title": "I Luv It" + }, + { + "artist": "Ludacris Featuring Pharrell", + "position": 15, + "title": "Money Maker" + }, + { + "artist": "Justin Timberlake", + "position": 16, + "title": "SexyBack" + }, + { + "artist": "Snow Patrol", + "position": 17, + "title": "Chasing Cars" + }, + { + "artist": "The All-American Rejects", + "position": 18, + "title": "It Ends Tonight" + }, + { + "artist": "Avril Lavigne", + "position": 19, + "title": "Keep Holding On" + }, + { + "artist": "Nickelback", + "position": 20, + "title": "Far Away" + }, + { + "artist": "Christina Aguilera", + "position": 21, + "title": "Hurt" + }, + { + "artist": "Paula DeAnda Featuring The DEY", + "position": 22, + "title": "Walk Away (Remember Me)" + }, + { + "artist": "Carrie Underwood", + "position": 23, + "title": "Before He Cheats" + }, + { + "artist": "Snoop Dogg Featuring R. Kelly", + "position": 24, + "title": "That's That" + }, + { + "artist": "Eminem, 50 Cent, Lloyd Banks & Cashis", + "position": 25, + "title": "You Don't Know" + }, + { + "artist": "Lloyd Featuring Lil' Wayne", + "position": 26, + "title": "You" + }, + { + "artist": "My Chemical Romance", + "position": 27, + "title": "Welcome To The Black Parade" + }, + { + "artist": "Chris Brown", + "position": 28, + "title": "Say Goodbye" + }, + { + "artist": "John Mayer", + "position": 29, + "title": "Waiting On The World To Change" + }, + { + "artist": "Fat Joe Featuring Lil Wayne", + "position": 30, + "title": "Make It Rain" + }, + { + "artist": "Ludacris Featuring Mary J. Blige", + "position": 31, + "title": "Runaway Love" + }, + { + "artist": "Lil Scrappy Featuring Young Buck", + "position": 32, + "title": "Money In The Bank" + }, + { + "artist": "Rascal Flatts", + "position": 33, + "title": "My Wish" + }, + { + "artist": "Evanescence", + "position": 34, + "title": "Call Me When You're Sober" + }, + { + "artist": "JoJo", + "position": 35, + "title": "Too Little Too Late" + }, + { + "artist": "Brad Paisley", + "position": 36, + "title": "She's Everything" + }, + { + "artist": "The Pussycat Dolls Featuring Timbaland", + "position": 37, + "title": "Wait A Minute" + }, + { + "artist": "Justin Timberlake", + "position": 38, + "title": "What Goes Around..." + }, + { + "artist": "Sugarland", + "position": 39, + "title": "Want To" + }, + { + "artist": "Rodney Atkins", + "position": 40, + "title": "Watching You" + }, + { + "artist": "Stone Sour", + "position": 41, + "title": "Through Glass" + }, + { + "artist": "Birdman & Lil Wayne", + "position": 42, + "title": "Stuntin' Like My Daddy" + }, + { + "artist": "Tim McGraw", + "position": 43, + "title": "My Little Girl" + }, + { + "artist": "Daughtry", + "position": 44, + "title": "It's Not Over" + }, + { + "artist": "Taylor Swift", + "position": 45, + "title": "Tim McGraw" + }, + { + "artist": "Rascal Flatts", + "position": 46, + "title": "What Hurts The Most" + }, + { + "artist": "Diddy Featuring Christina Aguilera", + "position": 47, + "title": "Tell Me" + }, + { + "artist": "Diddy Featuring Nicole Scherzinger", + "position": 48, + "title": "Come To Me" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 49, + "title": "Snow ((Hey Oh))" + }, + { + "artist": "The Fray", + "position": 50, + "title": "Happy Xmas (War Is Over)" + }, + { + "artist": "Cherish", + "position": 51, + "title": "Unappreciated" + }, + { + "artist": "Jay-Z", + "position": 52, + "title": "Show Me What You Got" + }, + { + "artist": "Danity Kane", + "position": 53, + "title": "Show Stopper" + }, + { + "artist": "Rihanna & Sean Paul", + "position": 54, + "title": "Break It Off" + }, + { + "artist": "Weird Al Yankovic", + "position": 55, + "title": "White & Nerdy" + }, + { + "artist": "Nas Featuring will.i.am", + "position": 56, + "title": "Hip Hop Is Dead" + }, + { + "artist": "Omarion", + "position": 57, + "title": "Ice Box" + }, + { + "artist": "George Strait", + "position": 58, + "title": "It Just Comes Natural" + }, + { + "artist": "The Killers", + "position": 59, + "title": "When You Were Young" + }, + { + "artist": "Jay-Z Featuring Chrisette Michele", + "position": 60, + "title": "Lost One" + }, + { + "artist": "Nelly Furtado", + "position": 61, + "title": "Maneater" + }, + { + "artist": "OK Go", + "position": 62, + "title": "Here It Goes Again" + }, + { + "artist": "Hellogoodbye", + "position": 63, + "title": "Here (In Your Arms)" + }, + { + "artist": "Chris Brown Featuring Jay Biz", + "position": 64, + "title": "Poppin'" + }, + { + "artist": "Jason Aldean", + "position": 65, + "title": "Amarillo Sky" + }, + { + "artist": "Blue October", + "position": 66, + "title": "Into The Ocean" + }, + { + "artist": "Montgomery Gentry", + "position": 67, + "title": "Some People Change" + }, + { + "artist": "Kenny Chesney", + "position": 68, + "title": "You Save Me" + }, + { + "artist": "Augustana", + "position": 69, + "title": "Boston" + }, + { + "artist": "Lil' Boosie Featuring Yung Joc", + "position": 70, + "title": "Zoom" + }, + { + "artist": "Sarah McLachlan", + "position": 71, + "title": "River" + }, + { + "artist": "Nickelback", + "position": 72, + "title": "Rockstar" + }, + { + "artist": "Rob Thomas", + "position": 73, + "title": "Streetcorner Symphony" + }, + { + "artist": "Beyonce Featuring Jay-Z", + "position": 74, + "title": "Upgrade U" + }, + { + "artist": "U2 & Green Day", + "position": 75, + "title": "The Saints Are Coming" + }, + { + "artist": "Mary J. Blige", + "position": 76, + "title": "Take Me As I Am" + }, + { + "artist": "Incubus", + "position": 77, + "title": "Anna-Molly" + }, + { + "artist": "The Red Jumpsuit Apparatus", + "position": 78, + "title": "Face Down" + }, + { + "artist": "Vanessa Hudgens", + "position": 79, + "title": "Come Back To Me" + }, + { + "artist": "Three Days Grace", + "position": 80, + "title": "Pain" + }, + { + "artist": "Fall Out Boy", + "position": 81, + "title": "The Carpal Tunnel Of Love" + }, + { + "artist": "Keith Urban", + "position": 82, + "title": "Stupid Boy" + }, + { + "artist": "T.I.", + "position": 83, + "title": "Top Back" + }, + { + "artist": "Jibbs", + "position": 84, + "title": "Chain Hang Low" + }, + { + "artist": "Chingy Featuring Jermaine Dupri", + "position": 85, + "title": "Dem Jeans" + }, + { + "artist": "Rich Boy Featuring Polow Da Don", + "position": 86, + "title": "Throw Some D's" + }, + { + "artist": "Heartland", + "position": 87, + "title": "I Loved Her First" + }, + { + "artist": "AFI", + "position": 88, + "title": "Love Like Winter" + }, + { + "artist": "The Game", + "position": 89, + "title": "Let's Ride" + }, + { + "artist": "Trace Adkins", + "position": 90, + "title": "Ladies Love Country Boys" + }, + { + "artist": "Robin Thicke", + "position": 91, + "title": "Lost Without U" + }, + { + "artist": "Mat Kearney", + "position": 92, + "title": "Nothing Left To Lose" + }, + { + "artist": "Gwen Stefani Featuring Akon", + "position": 93, + "title": "The Sweet Escape" + }, + { + "artist": "Kellie Pickler", + "position": 94, + "title": "Red High Heels" + }, + { + "artist": "Josh Groban", + "position": 95, + "title": "I'll Be Home For Christmas" + }, + { + "artist": "Pitbull", + "position": 96, + "title": "Ay Chico (Lengua Afuera)" + }, + { + "artist": "Craig Morgan", + "position": 97, + "title": "Little Bit Of Life" + }, + { + "artist": "Regina Spektor", + "position": 98, + "title": "Fidelity" + }, + { + "artist": "Trent Tomlinson", + "position": 99, + "title": "One Wing In The Fire" + }, + { + "artist": "Baby Boy Da Prince Featuring Lil Boosie", + "position": 100, + "title": "The Way I Live" + } + ], + "title": "2006 - Hot 100" + }, + { + "songs": [ + { + "artist": "Mariah Carey", + "position": 1, + "title": "Don't Forget About Us" + }, + { + "artist": "Mary J. Blige", + "position": 2, + "title": "Be Without You" + }, + { + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "position": 3, + "title": "I Think They Like Me" + }, + { + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "position": 4, + "title": "Grillz" + }, + { + "artist": "Ray J", + "position": 5, + "title": "One Wish" + }, + { + "artist": "Chris Brown", + "position": 6, + "title": "Run It!" + }, + { + "artist": "Keyshia Cole", + "position": 7, + "title": "I Should Have Cheated" + }, + { + "artist": "Juelz Santana", + "position": 8, + "title": "There It Go! (The Whistle Song)" + }, + { + "artist": "Jamie Foxx Featuring Ludacris", + "position": 9, + "title": "Unpredictable" + }, + { + "artist": "Alicia Keys", + "position": 10, + "title": "Unbreakable" + }, + { + "artist": "Purple Ribbon All-Stars", + "position": 11, + "title": "Kryptonite (I'm On It)" + }, + { + "artist": "Twista Featuring Trey Songz", + "position": 12, + "title": "Girl Tonite" + }, + { + "artist": "Trina Featuring Kelly Rowland", + "position": 13, + "title": "Here We Go" + }, + { + "artist": "Ne-Yo", + "position": 14, + "title": "So Sick" + }, + { + "artist": "Young Jeezy Featuring Akon", + "position": 15, + "title": "Soul Survivor" + }, + { + "artist": "Lil' Wayne", + "position": 16, + "title": "Fireman" + }, + { + "artist": "Kanye West Featuring Adam Levine", + "position": 17, + "title": "Heard 'Em Say" + }, + { + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "position": 18, + "title": "Stay Fly" + }, + { + "artist": "Trey Songz", + "position": 19, + "title": "Gotta Go" + }, + { + "artist": "T-Pain", + "position": 20, + "title": "I'm Sprung" + }, + { + "artist": "Beyonce Featuring Slim Thug", + "position": 21, + "title": "Check On It" + }, + { + "artist": "Lyfe Jennings", + "position": 22, + "title": "Must Be Nice" + }, + { + "artist": "D4L", + "position": 23, + "title": "Laffy Taffy" + }, + { + "artist": "Kirk Franklin", + "position": 24, + "title": "Looking For You" + }, + { + "artist": "50 Cent", + "position": 25, + "title": "Window Shopper" + } + ], + "title": "2005 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Chris Brown", + "position": 1, + "title": "Run It!" + }, + { + "artist": "The Pussycat Dolls", + "position": 2, + "title": "Stickwitu" + }, + { + "artist": "Kelly Clarkson", + "position": 3, + "title": "Because Of You" + }, + { + "artist": "Mariah Carey", + "position": 4, + "title": "Don't Forget About Us" + }, + { + "artist": "Nickelback", + "position": 5, + "title": "Photograph" + }, + { + "artist": "Kanye West Featuring Jamie Foxx", + "position": 6, + "title": "Gold Digger" + }, + { + "artist": "Beyonce Featuring Slim Thug", + "position": 7, + "title": "Check On It" + }, + { + "artist": "Fall Out Boy", + "position": 8, + "title": "Sugar, We're Goin' Down" + }, + { + "artist": "The All-American Rejects", + "position": 9, + "title": "Dirty Little Secret" + }, + { + "artist": "The Black Eyed Peas", + "position": 10, + "title": "My Humps" + }, + { + "artist": "Gwen Stefani", + "position": 11, + "title": "Luxurious" + }, + { + "artist": "Rihanna", + "position": 12, + "title": "If It's Lovin' That You Want" + }, + { + "artist": "Eminem", + "position": 13, + "title": "When I'm Gone" + }, + { + "artist": "Young Jeezy Featuring Akon", + "position": 14, + "title": "Soul Survivor" + }, + { + "artist": "D4L", + "position": 15, + "title": "Laffy Taffy" + }, + { + "artist": "Sean Paul", + "position": 16, + "title": "We Be Burnin'" + }, + { + "artist": "T-Pain", + "position": 17, + "title": "I'm Sprung" + }, + { + "artist": "Fall Out Boy", + "position": 18, + "title": "Dance, Dance" + }, + { + "artist": "Lifehouse", + "position": 19, + "title": "You And Me" + }, + { + "artist": "Weezer", + "position": 20, + "title": "Beverly Hills" + } + ], + "title": "2005 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Billy Currington", + "position": 1, + "title": "Must Be Doin' Somethin' Right" + }, + { + "artist": "George Strait", + "position": 2, + "title": "She Let Herself Go" + }, + { + "artist": "Garth Brooks", + "position": 3, + "title": "Good Ride Cowboy" + }, + { + "artist": "Dierks Bentley", + "position": 4, + "title": "Come A Little Closer" + }, + { + "artist": "Carrie Underwood", + "position": 5, + "title": "Jesus, Take The Wheel" + }, + { + "artist": "Joe Nichols", + "position": 6, + "title": "Tequila Makes Her Clothes Fall Off" + }, + { + "artist": "Kenny Chesney", + "position": 7, + "title": "Who You'd Be Today" + }, + { + "artist": "Trace Adkins", + "position": 8, + "title": "Honky Tonk Badonkadonk" + }, + { + "artist": "Toby Keith", + "position": 9, + "title": "Big Blue Note" + }, + { + "artist": "Little Big Town", + "position": 10, + "title": "Boondocks" + }, + { + "artist": "Faith Hill", + "position": 11, + "title": "Like We Never Loved At All" + }, + { + "artist": "Chris Cagle", + "position": 12, + "title": "Miss Me Baby" + }, + { + "artist": "Brad Paisley Featuring Dolly Parton", + "position": 13, + "title": "When I Get Where I'm Going" + }, + { + "artist": "Tim McGraw", + "position": 14, + "title": "My Old Friend" + }, + { + "artist": "Sugarland", + "position": 15, + "title": "Just Might (Make Me Believe)" + }, + { + "artist": "Montgomery Gentry", + "position": 16, + "title": "She Don't Tell Me To" + }, + { + "artist": "Josh Turner", + "position": 17, + "title": "Your Man" + }, + { + "artist": "Keith Urban", + "position": 18, + "title": "Tonight I Wanna Cry" + }, + { + "artist": "Brooks & Dunn", + "position": 19, + "title": "Believe" + }, + { + "artist": "Sara Evans", + "position": 20, + "title": "Cheatin'" + }, + { + "artist": "Miranda Lambert", + "position": 21, + "title": "Kerosene" + }, + { + "artist": "Gretchen Wilson", + "position": 22, + "title": "I Don't Feel Like Loving You Today" + }, + { + "artist": "Blake Shelton", + "position": 23, + "title": "Nobody But Me" + }, + { + "artist": "Big & Rich", + "position": 24, + "title": "Comin' To Your City" + }, + { + "artist": "Jamey Johnson", + "position": 25, + "title": "The Dollar" + } + ], + "title": "2005 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Mariah Carey", + "position": 1, + "title": "Don't Forget About Us" + }, + { + "artist": "Chris Brown", + "position": 2, + "title": "Run It!" + }, + { + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "position": 3, + "title": "Grillz" + }, + { + "artist": "D4L", + "position": 4, + "title": "Laffy Taffy" + }, + { + "artist": "The Pussycat Dolls", + "position": 5, + "title": "Stickwitu" + }, + { + "artist": "Nickelback", + "position": 6, + "title": "Photograph" + }, + { + "artist": "Kanye West Featuring Jamie Foxx", + "position": 7, + "title": "Gold Digger" + }, + { + "artist": "Beyonce Featuring Slim Thug", + "position": 8, + "title": "Check On It" + }, + { + "artist": "Kelly Clarkson", + "position": 9, + "title": "Because Of You" + }, + { + "artist": "Juelz Santana", + "position": 10, + "title": "There It Go! (The Whistle Song)" + }, + { + "artist": "The Black Eyed Peas", + "position": 11, + "title": "My Humps" + }, + { + "artist": "Ray J", + "position": 12, + "title": "One Wish" + }, + { + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "position": 13, + "title": "Stay Fly" + }, + { + "artist": "Young Jeezy Featuring Akon", + "position": 14, + "title": "Soul Survivor" + }, + { + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "position": 15, + "title": "I Think They Like Me" + }, + { + "artist": "Eminem", + "position": 16, + "title": "When I'm Gone" + }, + { + "artist": "T-Pain", + "position": 17, + "title": "I'm Sprung" + }, + { + "artist": "Trina Featuring Kelly Rowland", + "position": 18, + "title": "Here We Go" + }, + { + "artist": "Sean Paul", + "position": 19, + "title": "We Be Burnin'" + }, + { + "artist": "Mary J. Blige", + "position": 20, + "title": "Be Without You" + }, + { + "artist": "Madonna", + "position": 21, + "title": "Hung Up" + }, + { + "artist": "Fall Out Boy", + "position": 22, + "title": "Sugar, We're Goin' Down" + }, + { + "artist": "James Blunt", + "position": 23, + "title": "You're Beautiful" + }, + { + "artist": "Fall Out Boy", + "position": 24, + "title": "Dance, Dance" + }, + { + "artist": "Gwen Stefani", + "position": 25, + "title": "Luxurious" + }, + { + "artist": "Ne-Yo", + "position": 26, + "title": "So Sick" + }, + { + "artist": "The All-American Rejects", + "position": 27, + "title": "Dirty Little Secret" + }, + { + "artist": "Kanye West Featuring Adam Levine", + "position": 28, + "title": "Heard 'Em Say" + }, + { + "artist": "Lifehouse", + "position": 29, + "title": "You And Me" + }, + { + "artist": "Gorillaz", + "position": 30, + "title": "Feel Good Inc" + }, + { + "artist": "Carrie Underwood", + "position": 31, + "title": "Jesus, Take The Wheel" + }, + { + "artist": "Lil' Wayne", + "position": 32, + "title": "Fireman" + }, + { + "artist": "Green Day", + "position": 33, + "title": "Wake Me Up When September Ends" + }, + { + "artist": "Keyshia Cole", + "position": 34, + "title": "I Should Have Cheated" + }, + { + "artist": "Purple Ribbon All-Stars", + "position": 35, + "title": "Kryptonite (I'm On It)" + }, + { + "artist": "Rihanna", + "position": 36, + "title": "If It's Lovin' That You Want" + }, + { + "artist": "Weezer", + "position": 37, + "title": "Beverly Hills" + }, + { + "artist": "Trace Adkins", + "position": 38, + "title": "Honky Tonk Badonkadonk" + }, + { + "artist": "Billy Currington", + "position": 39, + "title": "Must Be Doin' Somethin' Right" + }, + { + "artist": "Dierks Bentley", + "position": 40, + "title": "Come A Little Closer" + }, + { + "artist": "Mariah Carey", + "position": 41, + "title": "Shake It Off" + }, + { + "artist": "Twista Featuring Trey Songz", + "position": 42, + "title": "Girl Tonite" + }, + { + "artist": "Chamillionaire Featuring Lil' Flip", + "position": 43, + "title": "Turn It Up" + }, + { + "artist": "Joe Nichols", + "position": 44, + "title": "Tequila Makes Her Clothes Fall Off" + }, + { + "artist": "The Pussycat Dolls Featuring Busta Rhymes", + "position": 45, + "title": "Don't Cha" + }, + { + "artist": "50 Cent", + "position": 46, + "title": "Window Shopper" + }, + { + "artist": "Jamie Foxx Featuring Ludacris", + "position": 47, + "title": "Unpredictable" + }, + { + "artist": "Ludacris & Field Mob Featuring Jamie Foxx", + "position": 48, + "title": "Georgia" + }, + { + "artist": "Alicia Keys", + "position": 49, + "title": "Unbreakable" + }, + { + "artist": "Mariah Carey", + "position": 50, + "title": "We Belong Together" + }, + { + "artist": "Natasha Bedingfield", + "position": 51, + "title": "Unwritten" + }, + { + "artist": "Eminem Featuring Nate Dogg", + "position": 52, + "title": "Shake That" + }, + { + "artist": "Faith Hill", + "position": 53, + "title": "Like We Never Loved At All" + }, + { + "artist": "George Strait", + "position": 54, + "title": "She Let Herself Go" + }, + { + "artist": "Cascada", + "position": 55, + "title": "Everytime We Touch" + }, + { + "artist": "Kenny Chesney", + "position": 56, + "title": "Who You'd Be Today" + }, + { + "artist": "Goo Goo Dolls", + "position": 57, + "title": "Better Days" + }, + { + "artist": "Little Big Town", + "position": 58, + "title": "Boondocks" + }, + { + "artist": "Garth Brooks", + "position": 59, + "title": "Good Ride Cowboy" + }, + { + "artist": "Death Cab For Cutie", + "position": 60, + "title": "Soul Meets Body" + }, + { + "artist": "Shakira", + "position": 61, + "title": "Don't Bother" + }, + { + "artist": "Brad Paisley Featuring Dolly Parton", + "position": 62, + "title": "When I Get Where I'm Going" + }, + { + "artist": "System Of A Down", + "position": 63, + "title": "Hypnotize" + }, + { + "artist": "The Notorious B.I.G. Featuring Diddy, Nelly, Jagged Edge & Avery Storm", + "position": 64, + "title": "Nasty Girl" + }, + { + "artist": "Korn", + "position": 65, + "title": "Twisted Transistor" + }, + { + "artist": "Daddy Yankee", + "position": 66, + "title": "Rompe" + }, + { + "artist": "Busta Rhymes", + "position": 67, + "title": "Touch It" + }, + { + "artist": "Trey Songz", + "position": 68, + "title": "Gotta Go" + }, + { + "artist": "Chris Cagle", + "position": 69, + "title": "Miss Me Baby" + }, + { + "artist": "The Black Eyed Peas", + "position": 70, + "title": "Pump It" + }, + { + "artist": "Ying Yang Twins Featuring Pitbull", + "position": 71, + "title": "Shake" + }, + { + "artist": "Juvenile", + "position": 72, + "title": "Rodeo" + }, + { + "artist": "Bow Wow Featuring J-Kwon & Jermaine Dupri", + "position": 73, + "title": "Fresh Azimiz" + }, + { + "artist": "Cast Of Rent", + "position": 74, + "title": "Seasons Of Love" + }, + { + "artist": "Keith Urban", + "position": 75, + "title": "Better Life" + }, + { + "artist": "Ashlee Simpson", + "position": 76, + "title": "L.O.V.E." + }, + { + "artist": "Toby Keith", + "position": 77, + "title": "Big Blue Note" + }, + { + "artist": "Avenged Sevenfold", + "position": 78, + "title": "Bat Country" + }, + { + "artist": "Sugarland", + "position": 79, + "title": "Just Might (Make Me Believe)" + }, + { + "artist": "Shinedown", + "position": 80, + "title": "Save Me" + }, + { + "artist": "Weezer", + "position": 81, + "title": "Perfect Situation" + }, + { + "artist": "Foo Fighters", + "position": 82, + "title": "DOA" + }, + { + "artist": "Kirk Franklin", + "position": 83, + "title": "Looking For You" + }, + { + "artist": "Frankie J", + "position": 84, + "title": "More Than Words" + }, + { + "artist": "Wisin & Yandel", + "position": 85, + "title": "Rakata" + }, + { + "artist": "Keith Urban", + "position": 86, + "title": "Tonight I Wanna Cry" + }, + { + "artist": "T-Pain Featuring Mike Jones", + "position": 87, + "title": "I'm N Luv (Wit A Stripper)" + }, + { + "artist": "Tim McGraw", + "position": 88, + "title": "My Old Friend" + }, + { + "artist": "Chris Brown", + "position": 89, + "title": "Yo (Excuse Me Miss)" + }, + { + "artist": "Miranda Lambert", + "position": 90, + "title": "Kerosene" + }, + { + "artist": "YoungBloodZ", + "position": 91, + "title": "Presidential" + }, + { + "artist": "Ashlee Simpson", + "position": 92, + "title": "Boyfriend" + }, + { + "artist": "Josh Turner", + "position": 93, + "title": "Your Man" + }, + { + "artist": "Seether", + "position": 94, + "title": "Remedy" + }, + { + "artist": "Brooks & Dunn", + "position": 95, + "title": "Believe" + }, + { + "artist": "Twista Featuring Pitbull", + "position": 96, + "title": "Hit The Floor" + }, + { + "artist": "Lindsay Lohan", + "position": 97, + "title": "Confessions Of A Broken Heart (Daughter To Father)" + }, + { + "artist": "Montgomery Gentry", + "position": 98, + "title": "She Don't Tell Me To" + }, + { + "artist": "Bon Jovi", + "position": 99, + "title": "Have A Nice Day" + }, + { + "artist": "Big & Rich", + "position": 100, + "title": "Comin' To Your City" + } + ], + "title": "2005 - Hot 100" + }, + { + "songs": [ + { + "artist": "Snoop Dogg Featuring Pharrell", + "position": 1, + "title": "Drop It Like It's Hot" + }, + { + "artist": "Mario", + "position": 2, + "title": "Let Me Love You" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "position": 3, + "title": "Lovers And Friends" + }, + { + "artist": "Ciara Featuring Missy Elliott", + "position": 4, + "title": "1, 2 Step" + }, + { + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "position": 5, + "title": "Soldier" + }, + { + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "position": 6, + "title": "Wonderful" + }, + { + "artist": "Usher And Alicia Keys", + "position": 7, + "title": "My Boo" + }, + { + "artist": "Jadakiss Featuring Mariah Carey", + "position": 8, + "title": "U Make Me Wanna" + }, + { + "artist": "Anthony Hamilton", + "position": 9, + "title": "Charlene" + }, + { + "artist": "Lil Wayne", + "position": 10, + "title": "Go D.J." + }, + { + "artist": "Ashanti", + "position": 11, + "title": "Only U" + }, + { + "artist": "Fabolous", + "position": 12, + "title": "Breathe" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "position": 13, + "title": "What U Gon' Do" + }, + { + "artist": "50 Cent", + "position": 14, + "title": "Disco Inferno" + }, + { + "artist": "T.I.", + "position": 15, + "title": "Bring Em Out" + }, + { + "artist": "Lloyd Banks Featuring Avant", + "position": 16, + "title": "Karma" + }, + { + "artist": "Ludacris", + "position": 17, + "title": "Get Back" + }, + { + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "position": 18, + "title": "New York" + }, + { + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "position": 19, + "title": "Let's Go" + }, + { + "artist": "The Game Featuring 50 Cent", + "position": 20, + "title": "How We Do" + }, + { + "artist": "Young Buck", + "position": 21, + "title": "Shorty Wanna Ride" + }, + { + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "position": 22, + "title": "Diary" + }, + { + "artist": "Destiny's Child", + "position": 23, + "title": "Lose My Breath" + }, + { + "artist": "Trillville Featuring Cutty", + "position": 24, + "title": "Some Cut" + }, + { + "artist": "LL Cool J Featuring 7 Aurelius", + "position": 25, + "title": "Hush" + } + ], + "title": "2004 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Nelly Featuring Tim McGraw", + "position": 1, + "title": "Over And Over" + }, + { + "artist": "Gavin DeGraw", + "position": 2, + "title": "I Don't Want To Be" + }, + { + "artist": "Kelly Clarkson", + "position": 3, + "title": "Breakaway" + }, + { + "artist": "Usher And Alicia Keys", + "position": 4, + "title": "My Boo" + }, + { + "artist": "Snoop Dogg Featuring Pharrell", + "position": 5, + "title": "Drop It Like It's Hot" + }, + { + "artist": "Mario", + "position": 6, + "title": "Let Me Love You" + }, + { + "artist": "Destiny's Child", + "position": 7, + "title": "Lose My Breath" + }, + { + "artist": "Switchfoot", + "position": 8, + "title": "Dare You To Move" + }, + { + "artist": "JoJo Featuring Bow Wow", + "position": 9, + "title": "Baby It's You" + }, + { + "artist": "Simple Plan", + "position": 10, + "title": "Welcome To My Life" + }, + { + "artist": "Ciara Featuring Missy Elliott", + "position": 11, + "title": "1, 2 Step" + }, + { + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "position": 12, + "title": "Let's Go" + }, + { + "artist": "Jesse McCartney", + "position": 13, + "title": "Beautiful Soul" + }, + { + "artist": "Ryan Cabrera", + "position": 14, + "title": "True" + }, + { + "artist": "Eminem", + "position": 15, + "title": "Just Lose It" + }, + { + "artist": "Maroon5", + "position": 16, + "title": "She Will Be Loved" + }, + { + "artist": "Seether Featuring Amy Lee", + "position": 17, + "title": "Broken" + }, + { + "artist": "Avril Lavigne", + "position": 18, + "title": "Nobody's Home" + }, + { + "artist": "Kelly Clarkson", + "position": 19, + "title": "Since U Been Gone" + }, + { + "artist": "Ciara Featuring Petey Pablo", + "position": 20, + "title": "Goodies" + } + ], + "title": "2004 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Blake Shelton", + "position": 1, + "title": "Some Beach" + }, + { + "artist": "Tim McGraw", + "position": 2, + "title": "Back When" + }, + { + "artist": "Kenny Chesney", + "position": 3, + "title": "The Woman With You" + }, + { + "artist": "Darryl Worley", + "position": 4, + "title": "Awful, Beautiful Life" + }, + { + "artist": "Gary Allan", + "position": 5, + "title": "Nothing On But The Radio" + }, + { + "artist": "Dierks Bentley", + "position": 6, + "title": "How Am I Doin'" + }, + { + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "position": 7, + "title": "Party For Two" + }, + { + "artist": "Lonestar", + "position": 8, + "title": "Mr. Mom" + }, + { + "artist": "Brad Paisley", + "position": 9, + "title": "Mud On The Tires" + }, + { + "artist": "Alan Jackson", + "position": 10, + "title": "Monday Morning Church" + }, + { + "artist": "Gretchen Wilson", + "position": 11, + "title": "When I Think About Cheatin'" + }, + { + "artist": "Keith Urban", + "position": 12, + "title": "You're My Better Half" + }, + { + "artist": "LeAnn Rimes", + "position": 13, + "title": "Nothin 'Bout Love Makes Sense" + }, + { + "artist": "SheDaisy", + "position": 14, + "title": "Come Home Soon" + }, + { + "artist": "Rascal Flatts", + "position": 15, + "title": "Bless The Broken Road" + }, + { + "artist": "Reba McEntire", + "position": 16, + "title": "He Gets That From Me" + }, + { + "artist": "Big & Rich", + "position": 17, + "title": "Holy Water" + }, + { + "artist": "Josh Gracin", + "position": 18, + "title": "Nothin' To Lose" + }, + { + "artist": "Billy Dean", + "position": 19, + "title": "Let Them Be Little" + }, + { + "artist": "Lee Ann Womack", + "position": 20, + "title": "I May Hate Myself In The Morning" + }, + { + "artist": "Pat Green", + "position": 21, + "title": "Don't Break My Heart Again" + }, + { + "artist": "Jimmy Wayne", + "position": 22, + "title": "Paper Angels" + }, + { + "artist": "Sugarland", + "position": 23, + "title": "Baby Girl" + }, + { + "artist": "Jamie O'Neal", + "position": 24, + "title": "Trying To Find Atlantis" + }, + { + "artist": "Andy Griggs", + "position": 25, + "title": "If Heaven" + } + ], + "title": "2004 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Snoop Dogg Featuring Pharrell", + "position": 1, + "title": "Drop It Like It's Hot" + }, + { + "artist": "Mario", + "position": 2, + "title": "Let Me Love You" + }, + { + "artist": "Ciara Featuring Missy Elliott", + "position": 3, + "title": "1, 2 Step" + }, + { + "artist": "Usher And Alicia Keys", + "position": 4, + "title": "My Boo" + }, + { + "artist": "Nelly Featuring Tim McGraw", + "position": 5, + "title": "Over And Over" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "position": 6, + "title": "Lovers And Friends" + }, + { + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "position": 7, + "title": "Soldier" + }, + { + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "position": 8, + "title": "Wonderful" + }, + { + "artist": "Destiny's Child", + "position": 9, + "title": "Lose My Breath" + }, + { + "artist": "Kelly Clarkson", + "position": 10, + "title": "Breakaway" + }, + { + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "position": 11, + "title": "Let's Go" + }, + { + "artist": "Gavin DeGraw", + "position": 12, + "title": "I Don't Want To Be" + }, + { + "artist": "50 Cent", + "position": 13, + "title": "Disco Inferno" + }, + { + "artist": "Ashanti", + "position": 14, + "title": "Only U" + }, + { + "artist": "Maroon5", + "position": 15, + "title": "She Will Be Loved" + }, + { + "artist": "Ciara Featuring Petey Pablo", + "position": 16, + "title": "Goodies" + }, + { + "artist": "N.O.R.E. Featuring Daddy Yankee, Nina Sky, Gem Star & Big Mato", + "position": 17, + "title": "Oye Mi Canto" + }, + { + "artist": "Ludacris", + "position": 18, + "title": "Get Back" + }, + { + "artist": "Switchfoot", + "position": 19, + "title": "Dare You To Move" + }, + { + "artist": "Fabolous", + "position": 20, + "title": "Breathe" + }, + { + "artist": "Jadakiss Featuring Mariah Carey", + "position": 21, + "title": "U Make Me Wanna" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "position": 22, + "title": "What U Gon' Do" + }, + { + "artist": "The Game Featuring 50 Cent", + "position": 23, + "title": "How We Do" + }, + { + "artist": "Lil Wayne", + "position": 24, + "title": "Go D.J." + }, + { + "artist": "Lloyd Banks Featuring Avant", + "position": 25, + "title": "Karma" + }, + { + "artist": "Eminem Featuring Dr. Dre & 50 Cent", + "position": 26, + "title": "Encore" + }, + { + "artist": "Green Day", + "position": 27, + "title": "Boulevard Of Broken Dreams" + }, + { + "artist": "Blake Shelton", + "position": 28, + "title": "Some Beach" + }, + { + "artist": "Anthony Hamilton", + "position": 29, + "title": "Charlene" + }, + { + "artist": "Tim McGraw", + "position": 30, + "title": "Back When" + }, + { + "artist": "Seether Featuring Amy Lee", + "position": 31, + "title": "Broken" + }, + { + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "position": 32, + "title": "New York" + }, + { + "artist": "JoJo Featuring Bow Wow", + "position": 33, + "title": "Baby It's You" + }, + { + "artist": "John Mayer", + "position": 34, + "title": "Daughters" + }, + { + "artist": "T.I.", + "position": 35, + "title": "Bring Em Out" + }, + { + "artist": "U2", + "position": 36, + "title": "Vertigo" + }, + { + "artist": "Jay-Z/Linkin Park", + "position": 37, + "title": "Numb/Encore" + }, + { + "artist": "Young Buck", + "position": 38, + "title": "Shorty Wanna Ride" + }, + { + "artist": "Ryan Cabrera", + "position": 39, + "title": "True" + }, + { + "artist": "Simple Plan", + "position": 40, + "title": "Welcome To My Life" + }, + { + "artist": "Finger Eleven", + "position": 41, + "title": "One Thing" + }, + { + "artist": "Ryan Cabrera", + "position": 42, + "title": "On The Way Down" + }, + { + "artist": "Avril Lavigne", + "position": 43, + "title": "My Happy Ending" + }, + { + "artist": "Darryl Worley", + "position": 44, + "title": "Awful, Beautiful Life" + }, + { + "artist": "Eminem", + "position": 45, + "title": "Just Lose It" + }, + { + "artist": "Terror Squad", + "position": 46, + "title": "Lean Back" + }, + { + "artist": "Kenny Chesney", + "position": 47, + "title": "The Woman With You" + }, + { + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "position": 48, + "title": "Diary" + }, + { + "artist": "Jesse McCartney", + "position": 49, + "title": "Beautiful Soul" + }, + { + "artist": "Gary Allan", + "position": 50, + "title": "Nothing On But The Radio" + }, + { + "artist": "Dierks Bentley", + "position": 51, + "title": "How Am I Doin'" + }, + { + "artist": "Chingy", + "position": 52, + "title": "Balla Baby" + }, + { + "artist": "Kelly Clarkson", + "position": 53, + "title": "Since U Been Gone" + }, + { + "artist": "LL Cool J Featuring 7 Aurelius", + "position": 54, + "title": "Hush" + }, + { + "artist": "Gretchen Wilson", + "position": 55, + "title": "When I Think About Cheatin'" + }, + { + "artist": "Keith Urban", + "position": 56, + "title": "You're My Better Half" + }, + { + "artist": "Avril Lavigne", + "position": 57, + "title": "Nobody's Home" + }, + { + "artist": "Brad Paisley", + "position": 58, + "title": "Mud On The Tires" + }, + { + "artist": "Lonestar", + "position": 59, + "title": "Mr. Mom" + }, + { + "artist": "LeAnn Rimes", + "position": 60, + "title": "Nothin 'Bout Love Makes Sense" + }, + { + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "position": 61, + "title": "Party For Two" + }, + { + "artist": "Rascal Flatts", + "position": 62, + "title": "Bless The Broken Road" + }, + { + "artist": "The Killers", + "position": 63, + "title": "Somebody Told Me" + }, + { + "artist": "Bowling For Soup", + "position": 64, + "title": "1985" + }, + { + "artist": "Lenny Kravitz", + "position": 65, + "title": "Lady" + }, + { + "artist": "Alicia Keys", + "position": 66, + "title": "Karma" + }, + { + "artist": "Alan Jackson", + "position": 67, + "title": "Monday Morning Church" + }, + { + "artist": "Goo Goo Dolls", + "position": 68, + "title": "Give A Little Bit" + }, + { + "artist": "Rupee", + "position": 69, + "title": "Tempted To Touch" + }, + { + "artist": "Trillville Featuring Cutty", + "position": 70, + "title": "Some Cut" + }, + { + "artist": "Reba McEntire", + "position": 71, + "title": "He Gets That From Me" + }, + { + "artist": "Chevelle", + "position": 72, + "title": "Vitamin R (Leading Us Along)" + }, + { + "artist": "Daddy Yankee", + "position": 73, + "title": "Gasolina" + }, + { + "artist": "Gwen Stefani Featuring Eve", + "position": 74, + "title": "Rich Girl" + }, + { + "artist": "SheDaisy", + "position": 75, + "title": "Come Home Soon" + }, + { + "artist": "Usher", + "position": 76, + "title": "Caught Up" + }, + { + "artist": "Velvet Revolver", + "position": 77, + "title": "Fall To Pieces" + }, + { + "artist": "Guerilla Black Featuring Mario Winans", + "position": 78, + "title": "You're The One" + }, + { + "artist": "Breaking Benjamin", + "position": 79, + "title": "So Cold" + }, + { + "artist": "Phil Vassar", + "position": 80, + "title": "In A Real Love" + }, + { + "artist": "Crossfade", + "position": 81, + "title": "Cold" + }, + { + "artist": "Keyshia Cole Featuring Shyne", + "position": 82, + "title": "I Changed My Mind" + }, + { + "artist": "Papa Roach", + "position": 83, + "title": "Getting Away With Murder" + }, + { + "artist": "Terror Squad", + "position": 84, + "title": "Take Me Home" + }, + { + "artist": "Crime Mob Featuring Lil Scrappy", + "position": 85, + "title": "Knuck If You Buck" + }, + { + "artist": "Juvenile, Wacko & Skip", + "position": 86, + "title": "Nolia Clap" + }, + { + "artist": "Gwen Stefani", + "position": 87, + "title": "What You Waiting For?" + }, + { + "artist": "Brooks & Dunn", + "position": 88, + "title": "That's What It's All About" + }, + { + "artist": "Sugarland", + "position": 89, + "title": "Baby Girl" + }, + { + "artist": "Patti LaBelle Featuring Ron Isley", + "position": 90, + "title": "Gotta Go Solo" + }, + { + "artist": "Body Head Bangerz Featuring YoungBloodz", + "position": 91, + "title": "I Smoke, I Drank" + }, + { + "artist": "Green Day", + "position": 92, + "title": "American Idiot" + }, + { + "artist": "Beyonce", + "position": 93, + "title": "Dangerously In Love" + }, + { + "artist": "Xzibit Featuring Keri Hilson", + "position": 94, + "title": "Hey Now (Mean Muggin)" + }, + { + "artist": "Nivea Featuring Lil Jon & YoungBloodZ", + "position": 95, + "title": "Okay" + }, + { + "artist": "Monchy & Alexandra", + "position": 96, + "title": "Perdidos" + }, + { + "artist": "George Strait", + "position": 97, + "title": "I Hate Everything" + }, + { + "artist": "John Legend", + "position": 98, + "title": "Used To Love U" + }, + { + "artist": "Anita Baker", + "position": 99, + "title": "You're My Everything" + }, + { + "artist": "Prince", + "position": 100, + "title": "Call My Name" + } + ], + "title": "2004 - Hot 100" + }, + { + "songs": [ + { + "artist": "Alicia Keys", + "position": 1, + "title": "You Don't Know My Name" + }, + { + "artist": "Jagged Edge", + "position": 2, + "title": "Walked Outta Heaven" + }, + { + "artist": "OutKast Featuring Sleepy Brown", + "position": 3, + "title": "The Way You Move" + }, + { + "artist": "R. Kelly", + "position": 4, + "title": "Step In The Name Of Love" + }, + { + "artist": "Avant", + "position": 5, + "title": "Read Your Mind" + }, + { + "artist": "Kelis", + "position": 6, + "title": "Milkshake" + }, + { + "artist": "Jay-Z", + "position": 7, + "title": "Change Clothes" + }, + { + "artist": "YoungBloodZ Featuring Lil Jon", + "position": 8, + "title": "Damn!" + }, + { + "artist": "Ludacris Featuring Shawnna", + "position": 9, + "title": "Stand Up" + }, + { + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "position": 10, + "title": "Slow Jamz" + }, + { + "artist": "Tupac Featuring The Notorious B.I.G.", + "position": 11, + "title": "Runnin (Dying To Live)" + }, + { + "artist": "Beyonce", + "position": 12, + "title": "Me, Myself And I" + }, + { + "artist": "G-Unit", + "position": 13, + "title": "Stunt 101" + }, + { + "artist": "OutKast", + "position": 14, + "title": "Hey Ya!" + }, + { + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "position": 15, + "title": "Holidae In" + }, + { + "artist": "Kanye West", + "position": 16, + "title": "Through The Wire" + }, + { + "artist": "Joe", + "position": 17, + "title": "More & More" + }, + { + "artist": "Musiq", + "position": 18, + "title": "Forthenight" + }, + { + "artist": "Murphy Lee Featuring Jermaine Dupri", + "position": 19, + "title": "Wat Da Hook Gon Be" + }, + { + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "position": 20, + "title": "Salt Shaker" + }, + { + "artist": "Mary J. Blige Featuring Eve", + "position": 21, + "title": "Not Today" + }, + { + "artist": "Ashanti", + "position": 22, + "title": "Rain On Me" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "position": 23, + "title": "Get Low" + }, + { + "artist": "Bow Wow Featuring Jagged Edge", + "position": 24, + "title": "My Baby" + }, + { + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "position": 25, + "title": "Clubbin" + } + ], + "title": "2003 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "OutKast", + "position": 1, + "title": "Hey Ya!" + }, + { + "artist": "3 Doors Down", + "position": 2, + "title": "Here Without You" + }, + { + "artist": "Baby Bash Featuring Frankie J", + "position": 3, + "title": "Suga Suga" + }, + { + "artist": "Nickelback", + "position": 4, + "title": "Someday" + }, + { + "artist": "Simple Plan", + "position": 5, + "title": "Perfect" + }, + { + "artist": "No Doubt", + "position": 6, + "title": "It's My Life" + }, + { + "artist": "Beyonce Featuring Sean Paul", + "position": 7, + "title": "Baby Boy" + }, + { + "artist": "Trapt", + "position": 8, + "title": "Headstrong" + }, + { + "artist": "Stacie Orrico", + "position": 9, + "title": "(There's Gotta Be) More To Life" + }, + { + "artist": "Ludacris Featuring Shawnna", + "position": 10, + "title": "Stand Up" + }, + { + "artist": "OutKast Featuring Sleepy Brown", + "position": 11, + "title": "The Way You Move" + }, + { + "artist": "Christina Aguilera", + "position": 12, + "title": "The Voice Within" + }, + { + "artist": "Liz Phair", + "position": 13, + "title": "Why Can't I" + }, + { + "artist": "Clay Aiken", + "position": 14, + "title": "Invisible" + }, + { + "artist": "Kelis", + "position": 15, + "title": "Milkshake" + }, + { + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "position": 16, + "title": "Holidae In" + }, + { + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "position": 17, + "title": "Why Don't You & I" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "position": 18, + "title": "Get Low" + }, + { + "artist": "Michelle Branch", + "position": 19, + "title": "Breathe" + }, + { + "artist": "Staind", + "position": 20, + "title": "So Far Away" + } + ], + "title": "2003 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Kenny Chesney", + "position": 1, + "title": "There Goes My Life" + }, + { + "artist": "George Strait", + "position": 2, + "title": "Cowboys Like Us" + }, + { + "artist": "Toby Keith", + "position": 3, + "title": "I Love This Bar" + }, + { + "artist": "Brooks & Dunn", + "position": 4, + "title": "You Can't Take The Honky Tonk Out Of The Girl" + }, + { + "artist": "Alan Jackson", + "position": 5, + "title": "Remember When" + }, + { + "artist": "Chris Cagle", + "position": 6, + "title": "Chicks Dig It" + }, + { + "artist": "Rodney Atkins", + "position": 7, + "title": "Honesty (Write Me A List)" + }, + { + "artist": "Lonestar", + "position": 8, + "title": "Walking In Memphis" + }, + { + "artist": "Tracy Byrd", + "position": 9, + "title": "Drinkin' Bone" + }, + { + "artist": "Terri Clark", + "position": 10, + "title": "I Wanna Do It All" + }, + { + "artist": "Montgomery Gentry", + "position": 11, + "title": "Hell Yeah" + }, + { + "artist": "Shania Twain", + "position": 12, + "title": "She's Not Just A Pretty Face" + }, + { + "artist": "Tim McGraw", + "position": 13, + "title": "Watch The Wind Blow By" + }, + { + "artist": "Brad Paisley", + "position": 14, + "title": "Little Moments" + }, + { + "artist": "Jo Dee Messina", + "position": 15, + "title": "I Wish" + }, + { + "artist": "Pat Green", + "position": 16, + "title": "Wave On Wave" + }, + { + "artist": "Rascal Flatts", + "position": 17, + "title": "I Melt" + }, + { + "artist": "Keith Urban", + "position": 18, + "title": "Who Wouldn't Wanna Be Me" + }, + { + "artist": "Diamond Rio", + "position": 19, + "title": "Wrinkles" + }, + { + "artist": "Trace Adkins", + "position": 20, + "title": "Hot Mama" + }, + { + "artist": "Jimmy Wayne", + "position": 21, + "title": "I Love You This Much" + }, + { + "artist": "Toby Keith", + "position": 22, + "title": "American Soldier" + }, + { + "artist": "Josh Turner", + "position": 23, + "title": "Long Black Train" + }, + { + "artist": "Sara Evans", + "position": 24, + "title": "Perfect" + }, + { + "artist": "Martina McBride", + "position": 25, + "title": "In My Daughter's Eyes" + } + ], + "title": "2003 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "OutKast", + "position": 1, + "title": "Hey Ya!" + }, + { + "artist": "OutKast Featuring Sleepy Brown", + "position": 2, + "title": "The Way You Move" + }, + { + "artist": "Kelis", + "position": 3, + "title": "Milkshake" + }, + { + "artist": "Ludacris Featuring Shawnna", + "position": 4, + "title": "Stand Up" + }, + { + "artist": "Alicia Keys", + "position": 5, + "title": "You Don't Know My Name" + }, + { + "artist": "Jagged Edge", + "position": 6, + "title": "Walked Outta Heaven" + }, + { + "artist": "3 Doors Down", + "position": 7, + "title": "Here Without You" + }, + { + "artist": "Baby Bash Featuring Frankie J", + "position": 8, + "title": "Suga Suga" + }, + { + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "position": 9, + "title": "Holidae In" + }, + { + "artist": "Jay-Z", + "position": 10, + "title": "Change Clothes" + }, + { + "artist": "R. Kelly", + "position": 11, + "title": "Step In The Name Of Love" + }, + { + "artist": "Beyonce Featuring Sean Paul", + "position": 12, + "title": "Baby Boy" + }, + { + "artist": "YoungBloodZ Featuring Lil Jon", + "position": 13, + "title": "Damn!" + }, + { + "artist": "No Doubt", + "position": 14, + "title": "It's My Life" + }, + { + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "position": 15, + "title": "Get Low" + }, + { + "artist": "Nickelback", + "position": 16, + "title": "Someday" + }, + { + "artist": "Beyonce", + "position": 17, + "title": "Me, Myself And I" + }, + { + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "position": 18, + "title": "Slow Jamz" + }, + { + "artist": "Avant", + "position": 19, + "title": "Read Your Mind" + }, + { + "artist": "Tupac Featuring The Notorious B.I.G.", + "position": 20, + "title": "Runnin (Dying To Live)" + }, + { + "artist": "G-Unit", + "position": 21, + "title": "Stunt 101" + }, + { + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "position": 22, + "title": "Why Don't You & I" + }, + { + "artist": "Murphy Lee Featuring Jermaine Dupri", + "position": 23, + "title": "Wat Da Hook Gon Be" + }, + { + "artist": "Simple Plan", + "position": 24, + "title": "Perfect" + }, + { + "artist": "Trapt", + "position": 25, + "title": "Headstrong" + }, + { + "artist": "Dido", + "position": 26, + "title": "White Flag" + }, + { + "artist": "Linkin Park", + "position": 27, + "title": "Numb" + }, + { + "artist": "Staind", + "position": 28, + "title": "So Far Away" + }, + { + "artist": "Kenny Chesney", + "position": 29, + "title": "There Goes My Life" + }, + { + "artist": "Sheryl Crow", + "position": 30, + "title": "The First Cut Is The Deepest" + }, + { + "artist": "matchbox twenty", + "position": 31, + "title": "Bright Lights" + }, + { + "artist": "Liz Phair", + "position": 32, + "title": "Why Can't I" + }, + { + "artist": "Nick Cannon Featuring R. Kelly", + "position": 33, + "title": "Gigolo" + }, + { + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "position": 34, + "title": "Salt Shaker" + }, + { + "artist": "Chingy", + "position": 35, + "title": "Right Thurr" + }, + { + "artist": "Christina Aguilera", + "position": 36, + "title": "The Voice Within" + }, + { + "artist": "Maroon5", + "position": 37, + "title": "Harder To Breathe" + }, + { + "artist": "Stacie Orrico", + "position": 38, + "title": "(There's Gotta Be) More To Life" + }, + { + "artist": "Kanye West", + "position": 39, + "title": "Through The Wire" + }, + { + "artist": "Nelly, P. Diddy & Murphy Lee", + "position": 40, + "title": "Shake Ya Tailfeather" + }, + { + "artist": "Toby Keith", + "position": 41, + "title": "I Love This Bar" + }, + { + "artist": "Brooks & Dunn", + "position": 42, + "title": "You Can't Take The Honky Tonk Out Of The Girl" + }, + { + "artist": "Clay Aiken", + "position": 43, + "title": "Invisible" + }, + { + "artist": "Alan Jackson", + "position": 44, + "title": "Remember When" + }, + { + "artist": "Michelle Branch", + "position": 45, + "title": "Breathe" + }, + { + "artist": "George Strait", + "position": 46, + "title": "Cowboys Like Us" + }, + { + "artist": "Mary J. Blige Featuring Eve", + "position": 47, + "title": "Not Today" + }, + { + "artist": "matchbox twenty", + "position": 48, + "title": "Unwell" + }, + { + "artist": "Joe", + "position": 49, + "title": "More & More" + }, + { + "artist": "Ashanti", + "position": 50, + "title": "Rain On Me" + }, + { + "artist": "Sarah McLachlan", + "position": 51, + "title": "Fallen" + }, + { + "artist": "Westside Connection Featuring Nate Dogg", + "position": 52, + "title": "Gangsta Nation" + }, + { + "artist": "Musiq", + "position": 53, + "title": "Forthenight" + }, + { + "artist": "Bow Wow Featuring Jagged Edge", + "position": 54, + "title": "My Baby" + }, + { + "artist": "Three Days Grace", + "position": 55, + "title": "(I Hate) Everything About You" + }, + { + "artist": "Chris Cagle", + "position": 56, + "title": "Chicks Dig It" + }, + { + "artist": "Mya", + "position": 57, + "title": "Fallen" + }, + { + "artist": "Eamon", + "position": 58, + "title": "F**k It (I Don't Want You Back)" + }, + { + "artist": "Rodney Atkins", + "position": 59, + "title": "Honesty (Write Me A List)" + }, + { + "artist": "Terri Clark", + "position": 60, + "title": "I Wanna Do It All" + }, + { + "artist": "Tim McGraw", + "position": 61, + "title": "Watch The Wind Blow By" + }, + { + "artist": "Shania Twain", + "position": 62, + "title": "She's Not Just A Pretty Face" + }, + { + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "position": 63, + "title": "Clubbin" + }, + { + "artist": "Montgomery Gentry", + "position": 64, + "title": "Hell Yeah" + }, + { + "artist": "Jessica Simpson", + "position": 65, + "title": "With You" + }, + { + "artist": "Tracy Byrd", + "position": 66, + "title": "Drinkin' Bone" + }, + { + "artist": "Keith Urban", + "position": 67, + "title": "Who Wouldn't Wanna Be Me" + }, + { + "artist": "Missy Elliott", + "position": 68, + "title": "Pass That Dutch" + }, + { + "artist": "Toby Keith", + "position": 69, + "title": "American Soldier" + }, + { + "artist": "Fountains Of Wayne", + "position": 70, + "title": "Stacy's Mom" + }, + { + "artist": "Cassidy Featuring R. Kelly", + "position": 71, + "title": "Hotel" + }, + { + "artist": "Brad Paisley", + "position": 72, + "title": "Little Moments" + }, + { + "artist": "Jet", + "position": 73, + "title": "Are You Gonna Be My Girl" + }, + { + "artist": "The Offspring", + "position": 74, + "title": "Hit That" + }, + { + "artist": "Lonestar", + "position": 75, + "title": "Walking In Memphis" + }, + { + "artist": "Puddle Of Mudd", + "position": 76, + "title": "Away From Me" + }, + { + "artist": "Pat Green", + "position": 77, + "title": "Wave On Wave" + }, + { + "artist": "Rascal Flatts", + "position": 78, + "title": "I Melt" + }, + { + "artist": "B2K Featuring Fabolous", + "position": 79, + "title": "Badaboom" + }, + { + "artist": "Trapt", + "position": 80, + "title": "Still Frame" + }, + { + "artist": "Britney Spears Featuring Madonna", + "position": 81, + "title": "Me Against The Music" + }, + { + "artist": "Marques Houston Featuring Jermaine \"JD\" Dupri", + "position": 82, + "title": "Pop That Booty" + }, + { + "artist": "Ginuwine", + "position": 83, + "title": "Love You More" + }, + { + "artist": "Monica", + "position": 84, + "title": "Knock Knock" + }, + { + "artist": "Live", + "position": 85, + "title": "Heaven" + }, + { + "artist": "Barenaked Ladies", + "position": 86, + "title": "Another Postcard (Chimps)" + }, + { + "artist": "Gary Allan", + "position": 87, + "title": "Tough Little Boys" + }, + { + "artist": "Audioslave", + "position": 88, + "title": "Show Me How To Live" + }, + { + "artist": "A Perfect Circle", + "position": 89, + "title": "Weak And Powerless" + }, + { + "artist": "John Mayer", + "position": 90, + "title": "Bigger Than My Body" + }, + { + "artist": "Josh Turner", + "position": 91, + "title": "Long Black Train" + }, + { + "artist": "Ryan Duarte", + "position": 92, + "title": "You" + }, + { + "artist": "Ja Rule", + "position": 93, + "title": "Clap Back" + }, + { + "artist": "Too Short Featuring Lil Jon & The East Side Boyz", + "position": 94, + "title": "Shake That Monkey" + }, + { + "artist": "Lasgo", + "position": 95, + "title": "Alone" + }, + { + "artist": "Trillville", + "position": 96, + "title": "Neva Eva" + }, + { + "artist": "Big Tymers Featuring R. Kelly", + "position": 97, + "title": "Gangsta Girl" + }, + { + "artist": "Scotty Emerick With Toby Keith", + "position": 98, + "title": "I Can't Take You Anywhere" + }, + { + "artist": "Hilary Duff", + "position": 99, + "title": "So Yesterday" + }, + { + "artist": "Michael Jackson", + "position": 100, + "title": "One More Chance" + } + ], + "title": "2003 - Hot 100" + }, + { + "songs": [ + { + "artist": "Erykah Badu Featuring Common", + "position": 1, + "title": "Love Of My Life (An Ode To Hip Hop)" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott", + "position": 2, + "title": "Work It" + }, + { + "artist": "B2K & P. Diddy", + "position": 3, + "title": "Bump, Bump, Bump" + }, + { + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "position": 4, + "title": "Air Force Ones" + }, + { + "artist": "Jay-Z Featuring Beyonce Knowles", + "position": 5, + "title": "'03 Bonnie & Clyde" + }, + { + "artist": "Musiq", + "position": 6, + "title": "dontchange" + }, + { + "artist": "Aaliyah", + "position": 7, + "title": "Miss You" + }, + { + "artist": "Eminem", + "position": 8, + "title": "Lose Yourself" + }, + { + "artist": "R. Kelly", + "position": 9, + "title": "Ignition" + }, + { + "artist": "Jaheim Featuring Tha Rayne", + "position": 10, + "title": "Fabulous" + }, + { + "artist": "Dru Hill", + "position": 11, + "title": "I Should Be..." + }, + { + "artist": "LL Cool J", + "position": 12, + "title": "Luv U Better" + }, + { + "artist": "Sean Paul", + "position": 13, + "title": "Gimme The Light" + }, + { + "artist": "2Pac", + "position": 14, + "title": "Thugz Mansion" + }, + { + "artist": "Nas", + "position": 15, + "title": "Made You Look" + }, + { + "artist": "Erick Sermon Featuring Redman", + "position": 16, + "title": "React" + }, + { + "artist": "Aaliyah", + "position": 17, + "title": "I Care 4 U" + }, + { + "artist": "Amerie", + "position": 18, + "title": "Talkin' To Me" + }, + { + "artist": "50 Cent", + "position": 19, + "title": "Wanksta" + }, + { + "artist": "LL Cool J Featuring Amerie", + "position": 20, + "title": "Paradise" + }, + { + "artist": "Clipse", + "position": 21, + "title": "When The Last Time" + }, + { + "artist": "Busta Rhymes Featuring Spliff Star", + "position": 22, + "title": "Make It Clap" + }, + { + "artist": "Ja Rule Featuring Bobby Brown", + "position": 23, + "title": "Thug Lovin'" + }, + { + "artist": "Eve", + "position": 24, + "title": "Satisfaction" + }, + { + "artist": "Baby Featuring P. Diddy", + "position": 25, + "title": "Do That..." + } + ], + "title": "2002 - R&B Hip-Hop Songs" + }, + { + "songs": [ + { + "artist": "Eminem", + "position": 1, + "title": "Lose Yourself" + }, + { + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "position": 2, + "title": "Jenny From The Block" + }, + { + "artist": "Christina Aguilera", + "position": 3, + "title": "Beautiful" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott", + "position": 4, + "title": "Work It" + }, + { + "artist": "No Doubt Featuring Lady Saw", + "position": 5, + "title": "Underneath It All" + }, + { + "artist": "Pink", + "position": 6, + "title": "Family Portrait" + }, + { + "artist": "Puddle Of Mudd", + "position": 7, + "title": "She Hates Me" + }, + { + "artist": "Nivea Featuring Brian & Brandon Casey", + "position": 8, + "title": "Don't Mess With My Man" + }, + { + "artist": "Santana Featuring Michelle Branch", + "position": 9, + "title": "The Game Of Love" + }, + { + "artist": "Avril Lavigne", + "position": 10, + "title": "I'm With You" + }, + { + "artist": "Kelly Rowland", + "position": 11, + "title": "Stole" + }, + { + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "position": 12, + "title": "Hey Ma" + }, + { + "artist": "Justin Timberlake", + "position": 13, + "title": "Cry Me A River" + }, + { + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "position": 14, + "title": "Air Force Ones" + }, + { + "artist": "Good Charlotte", + "position": 15, + "title": "Lifestyles Of The Rich And Famous" + }, + { + "artist": "O-Town", + "position": 16, + "title": "These Are The Days" + }, + { + "artist": "John Mayer", + "position": 17, + "title": "Your Body Is A Wonderland" + }, + { + "artist": "Justin Timberlake", + "position": 18, + "title": "Like I Love You" + }, + { + "artist": "Avril Lavigne", + "position": 19, + "title": "Sk8er Boi" + }, + { + "artist": "Creed", + "position": 20, + "title": "One Last Breath" + } + ], + "title": "2002 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "George Strait", + "position": 1, + "title": "She'll Leave You With A Smile" + }, + { + "artist": "Toby Keith", + "position": 2, + "title": "Who's Your Daddy?" + }, + { + "artist": "Rascal Flatts", + "position": 3, + "title": "These Days" + }, + { + "artist": "Mark Wills", + "position": 4, + "title": "19 Somethin'" + }, + { + "artist": "Emerson Drive", + "position": 5, + "title": "Fall Into Me" + }, + { + "artist": "Tim McGraw", + "position": 6, + "title": "Red Rag Top" + }, + { + "artist": "Kenny Chesney", + "position": 7, + "title": "A Lot Of Things Different" + }, + { + "artist": "Keith Urban", + "position": 8, + "title": "Somebody Like You" + }, + { + "artist": "Terri Clark", + "position": 9, + "title": "I Just Wanna Be Mad" + }, + { + "artist": "Blake Shelton", + "position": 10, + "title": "The Baby" + }, + { + "artist": "Dixie Chicks", + "position": 11, + "title": "Landslide" + }, + { + "artist": "Brad Paisley", + "position": 12, + "title": "I Wish You'd Stay" + }, + { + "artist": "Travis Tritt", + "position": 13, + "title": "Strong Enough To Be Your Man" + }, + { + "artist": "Brooks & Dunn", + "position": 14, + "title": "Every River" + }, + { + "artist": "Diamond Rio", + "position": 15, + "title": "Beautiful Mess" + }, + { + "artist": "Gary Allan", + "position": 16, + "title": "Man To Man" + }, + { + "artist": "Aaron Lines", + "position": 17, + "title": "You Can't Hide Beautiful" + }, + { + "artist": "Lonestar", + "position": 18, + "title": "Unusually Unusual" + }, + { + "artist": "John Michael Montgomery", + "position": 19, + "title": "'Til Nothing Comes Between Us" + }, + { + "artist": "Montgomery Gentry", + "position": 20, + "title": "My Town" + }, + { + "artist": "Trace Adkins", + "position": 21, + "title": "Chrome" + }, + { + "artist": "Trick Pony", + "position": 22, + "title": "On A Mission" + }, + { + "artist": "Kellie Coffey", + "position": 23, + "title": "At The End Of The Day" + }, + { + "artist": "Shania Twain", + "position": 24, + "title": "I'm Gonna Getcha Good!" + }, + { + "artist": "Jennifer Hanson", + "position": 25, + "title": "Beautiful Goodbye" + } + ], + "title": "2002 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Eminem", + "position": 1, + "title": "Lose Yourself" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott", + "position": 2, + "title": "Work It" + }, + { + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "position": 3, + "title": "Jenny From The Block" + }, + { + "artist": "Jay-Z Featuring Beyonce Knowles", + "position": 4, + "title": "'03 Bonnie & Clyde" + }, + { + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "position": 5, + "title": "Air Force Ones" + }, + { + "artist": "Christina Aguilera", + "position": 6, + "title": "Beautiful" + }, + { + "artist": "B2K & P. Diddy", + "position": 7, + "title": "Bump, Bump, Bump" + }, + { + "artist": "Nivea Featuring Brian & Brandon Casey", + "position": 8, + "title": "Don't Mess With My Man" + }, + { + "artist": "No Doubt Featuring Lady Saw", + "position": 9, + "title": "Underneath It All" + }, + { + "artist": "Santana Featuring Michelle Branch", + "position": 10, + "title": "The Game Of Love" + }, + { + "artist": "Erykah Badu Featuring Common", + "position": 11, + "title": "Love Of My Life (An Ode To Hip Hop)" + }, + { + "artist": "Sean Paul", + "position": 12, + "title": "Gimme The Light" + }, + { + "artist": "Puddle Of Mudd", + "position": 13, + "title": "She Hates Me" + }, + { + "artist": "Dixie Chicks", + "position": 14, + "title": "Landslide" + }, + { + "artist": "Aaliyah", + "position": 15, + "title": "Miss You" + }, + { + "artist": "Avril Lavigne", + "position": 16, + "title": "I'm With You" + }, + { + "artist": "LL Cool J", + "position": 17, + "title": "Luv U Better" + }, + { + "artist": "Musiq", + "position": 18, + "title": "dontchange" + }, + { + "artist": "2Pac", + "position": 19, + "title": "Thugz Mansion" + }, + { + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "position": 20, + "title": "Hey Ma" + }, + { + "artist": "Pink", + "position": 21, + "title": "Family Portrait" + }, + { + "artist": "John Mayer", + "position": 22, + "title": "Your Body Is A Wonderland" + }, + { + "artist": "George Strait", + "position": 23, + "title": "She'll Leave You With A Smile" + }, + { + "artist": "Creed", + "position": 24, + "title": "One Last Breath" + }, + { + "artist": "Jennifer Lopez Featuring LL Cool J", + "position": 25, + "title": "All I Have" + }, + { + "artist": "Nelly Featuring Kelly Rowland", + "position": 26, + "title": "Dilemma" + }, + { + "artist": "Clipse", + "position": 27, + "title": "When The Last Time" + }, + { + "artist": "Toby Keith", + "position": 28, + "title": "Who's Your Daddy?" + }, + { + "artist": "Justin Timberlake", + "position": 29, + "title": "Cry Me A River" + }, + { + "artist": "Rascal Flatts", + "position": 30, + "title": "These Days" + }, + { + "artist": "Mark Wills", + "position": 31, + "title": "19 Somethin'" + }, + { + "artist": "R. Kelly", + "position": 32, + "title": "Ignition" + }, + { + "artist": "matchbox twenty", + "position": 33, + "title": "Disease" + }, + { + "artist": "Kid Rock Featuring Sheryl Crow", + "position": 34, + "title": "Picture" + }, + { + "artist": "Madonna", + "position": 35, + "title": "Die Another Day" + }, + { + "artist": "Dru Hill", + "position": 36, + "title": "I Should Be..." + }, + { + "artist": "Jaheim Featuring Tha Rayne", + "position": 37, + "title": "Fabulous" + }, + { + "artist": "3 Doors Down", + "position": 38, + "title": "When I'm Gone" + }, + { + "artist": "Nas", + "position": 39, + "title": "Made You Look" + }, + { + "artist": "Kelly Rowland", + "position": 40, + "title": "Stole" + }, + { + "artist": "Avril Lavigne", + "position": 41, + "title": "Complicated" + }, + { + "artist": "Justin Timberlake", + "position": 42, + "title": "Like I Love You" + }, + { + "artist": "Baby Featuring P. Diddy", + "position": 43, + "title": "Do That..." + }, + { + "artist": "Emerson Drive", + "position": 44, + "title": "Fall Into Me" + }, + { + "artist": "Eve", + "position": 45, + "title": "Satisfaction" + }, + { + "artist": "Keith Urban", + "position": 46, + "title": "Somebody Like You" + }, + { + "artist": "Good Charlotte", + "position": 47, + "title": "Lifestyles Of The Rich And Famous" + }, + { + "artist": "Erick Sermon Featuring Redman", + "position": 48, + "title": "React" + }, + { + "artist": "50 Cent", + "position": 49, + "title": "Wanksta" + }, + { + "artist": "Foo Fighters", + "position": 50, + "title": "All My Life" + }, + { + "artist": "Amerie", + "position": 51, + "title": "Talkin' To Me" + }, + { + "artist": "Tim McGraw", + "position": 52, + "title": "Red Rag Top" + }, + { + "artist": "LL Cool J Featuring Amerie", + "position": 53, + "title": "Paradise" + }, + { + "artist": "Aaliyah", + "position": 54, + "title": "I Care 4 U" + }, + { + "artist": "Ja Rule Featuring Bobby Brown", + "position": 55, + "title": "Thug Lovin'" + }, + { + "artist": "Avril Lavigne", + "position": 56, + "title": "Sk8er Boi" + }, + { + "artist": "Blake Shelton", + "position": 57, + "title": "The Baby" + }, + { + "artist": "Nirvana", + "position": 58, + "title": "You Know You're Right" + }, + { + "artist": "Terri Clark", + "position": 59, + "title": "I Just Wanna Be Mad" + }, + { + "artist": "Kenny Chesney", + "position": 60, + "title": "A Lot Of Things Different" + }, + { + "artist": "Lasgo", + "position": 61, + "title": "Something" + }, + { + "artist": "Busta Rhymes Featuring Spliff Star", + "position": 62, + "title": "Make It Clap" + }, + { + "artist": "Saliva", + "position": 63, + "title": "Always" + }, + { + "artist": "Chevelle", + "position": 64, + "title": "The Red" + }, + { + "artist": "Norah Jones", + "position": 65, + "title": "Don't Know Why" + }, + { + "artist": "Christina Aguilera Featuring Redman", + "position": 66, + "title": "Dirrty" + }, + { + "artist": "Ja Rule Featuring Ashanti", + "position": 67, + "title": "Mesmerize" + }, + { + "artist": "Aaron Lines", + "position": 68, + "title": "You Can't Hide Beautiful" + }, + { + "artist": "Audioslave", + "position": 69, + "title": "Cochise" + }, + { + "artist": "O-Town", + "position": 70, + "title": "These Are The Days" + }, + { + "artist": "Lifehouse", + "position": 71, + "title": "Spin" + }, + { + "artist": "Seether", + "position": 72, + "title": "Fine Again" + }, + { + "artist": "Stone Sour", + "position": 73, + "title": "Bother" + }, + { + "artist": "Disturbed", + "position": 74, + "title": "Prayer" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ludacris", + "position": 75, + "title": "Gossip Folks" + }, + { + "artist": "Shania Twain", + "position": 76, + "title": "I'm Gonna Getcha Good!" + }, + { + "artist": "Kelly Clarkson", + "position": 77, + "title": "A Moment Like This" + }, + { + "artist": "Queens Of The Stone Age", + "position": 78, + "title": "No One Knows" + }, + { + "artist": "Field Mob", + "position": 79, + "title": "Sick Of Being Lonely" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 80, + "title": "The Zephyr Song" + }, + { + "artist": "Uncle Kracker", + "position": 81, + "title": "In A Little While" + }, + { + "artist": "TLC", + "position": 82, + "title": "Girl Talk" + }, + { + "artist": "Faith Hill", + "position": 83, + "title": "Cry" + }, + { + "artist": "Mariah Carey", + "position": 84, + "title": "Through The Rain" + }, + { + "artist": "Whitney Houston", + "position": 85, + "title": "One Of Those Days" + }, + { + "artist": "Snoop Dogg", + "position": 86, + "title": "From Tha Chuuuch To Da Palace" + }, + { + "artist": "Brooks & Dunn", + "position": 87, + "title": "Every River" + }, + { + "artist": "Our Lady Peace", + "position": 88, + "title": "Somewhere Out There" + }, + { + "artist": "Common Featuring Mary J. Blige", + "position": 89, + "title": "Come Close To Me" + }, + { + "artist": "System Of A Down", + "position": 90, + "title": "Aerials" + }, + { + "artist": "Isyss", + "position": 91, + "title": "Single For The Rest Of My Life" + }, + { + "artist": "Kylie Minogue", + "position": 92, + "title": "Come Into My World" + }, + { + "artist": "Benzino", + "position": 93, + "title": "Rock The Party" + }, + { + "artist": "Trick Daddy Featuring LaTocha Scott", + "position": 94, + "title": "Thug Holiday" + }, + { + "artist": "Toni Braxton Featuring Loon", + "position": 95, + "title": "Hit The Freeway" + }, + { + "artist": "Montgomery Gentry", + "position": 96, + "title": "My Town" + }, + { + "artist": "Alan Jackson", + "position": 97, + "title": "Work In Progress" + }, + { + "artist": "Telepopmusik", + "position": 98, + "title": "Breathe" + }, + { + "artist": "Michelle Branch", + "position": 99, + "title": "Goodbye To You" + }, + { + "artist": "Big Tymers Featuring Tateeze, Boo & Gotti", + "position": 100, + "title": "Oh Yeah!" + } + ], + "title": "2002 - Hot 100" + }, + { + "songs": [ + { + "artist": "Nickelback", + "position": 1, + "title": "How You Remind Me" + }, + { + "artist": "Pink", + "position": 2, + "title": "Get The Party Started" + }, + { + "artist": "Mary J. Blige", + "position": 3, + "title": "Family Affair" + }, + { + "artist": "Enrique Iglesias", + "position": 4, + "title": "Hero" + }, + { + "artist": "Usher", + "position": 5, + "title": "U Got It Bad" + }, + { + "artist": "Shakira", + "position": 6, + "title": "Whenever, Wherever" + }, + { + "artist": "Toya", + "position": 7, + "title": "I Do!!" + }, + { + "artist": "Ja Rule Featuring Case", + "position": 8, + "title": "Livin' It Up" + }, + { + "artist": "Nelly Furtado", + "position": 9, + "title": "Turn Off The Light" + }, + { + "artist": "The Calling", + "position": 10, + "title": "Wherever You Will Go" + }, + { + "artist": "Creed", + "position": 11, + "title": "My Sacrifice" + }, + { + "artist": "No Doubt Featuring Bounty Killer", + "position": 12, + "title": "Hey Baby" + }, + { + "artist": "Destiny's Child", + "position": 13, + "title": "Emotion" + }, + { + "artist": "Jennifer Lopez Featuring Ja Rule", + "position": 14, + "title": "I'm Real" + }, + { + "artist": "Five For Fighting", + "position": 15, + "title": "Superman (It's Not Easy)" + }, + { + "artist": "'N Sync", + "position": 16, + "title": "Gone" + }, + { + "artist": "Ginuwine", + "position": 17, + "title": "Differences" + }, + { + "artist": "Lenny Kravitz", + "position": 18, + "title": "Dig In" + }, + { + "artist": "Alicia Keys", + "position": 19, + "title": "Fallin'" + }, + { + "artist": "Nelly", + "position": 20, + "title": "#1" + } + ], + "title": "2001 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Alan Jackson", + "position": 1, + "title": "Where Were You (When The World Stopped Turning)" + }, + { + "artist": "Toby Keith", + "position": 2, + "title": "I Wanna Talk About Me" + }, + { + "artist": "George Strait", + "position": 3, + "title": "Run" + }, + { + "artist": "Aaron Tippin", + "position": 4, + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + { + "artist": "Steve Holy", + "position": 5, + "title": "Good Morning Beautiful" + }, + { + "artist": "Trace Adkins", + "position": 6, + "title": "I'm Tryin'" + }, + { + "artist": "David Ball", + "position": 7, + "title": "Riding With Private Malone" + }, + { + "artist": "Garth Brooks", + "position": 8, + "title": "Wrapped Up In You" + }, + { + "artist": "Brad Paisley", + "position": 9, + "title": "Wrapped Around" + }, + { + "artist": "Jo Dee Messina With Tim McGraw", + "position": 10, + "title": "Bring On The Rain" + }, + { + "artist": "Lonestar", + "position": 11, + "title": "With Me" + }, + { + "artist": "Brooks & Dunn", + "position": 12, + "title": "The Long Goodbye" + }, + { + "artist": "Joe Diffie", + "position": 13, + "title": "In Another World" + }, + { + "artist": "Brooks & Dunn", + "position": 14, + "title": "Only In America" + }, + { + "artist": "Tracy Byrd", + "position": 15, + "title": "Just Let Me Be In Love" + }, + { + "artist": "Tim McGraw", + "position": 16, + "title": "The Cowboy In Me" + }, + { + "artist": "Dixie Chicks", + "position": 17, + "title": "Some Days You Gotta Dance" + }, + { + "artist": "Travis Tritt", + "position": 18, + "title": "Love Of A Woman" + }, + { + "artist": "Martina McBride", + "position": 19, + "title": "Blessed" + }, + { + "artist": "Sara Evans", + "position": 20, + "title": "Saints & Angels" + }, + { + "artist": "Jamie O'Neal", + "position": 21, + "title": "Shiver" + }, + { + "artist": "Rascal Flatts", + "position": 22, + "title": "I'm Movin' On" + }, + { + "artist": "Chris Cagle", + "position": 23, + "title": "I Breathe In, I Breathe Out" + }, + { + "artist": "Blake Shelton", + "position": 24, + "title": "All Over Me" + }, + { + "artist": "Montgomery Gentry", + "position": 25, + "title": "Cold One Comin' On" + } + ], + "title": "2001 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Nickelback", + "position": 1, + "title": "How You Remind Me" + }, + { + "artist": "Usher", + "position": 2, + "title": "U Got It Bad" + }, + { + "artist": "Mary J. Blige", + "position": 3, + "title": "Family Affair" + }, + { + "artist": "Pink", + "position": 4, + "title": "Get The Party Started" + }, + { + "artist": "Enrique Iglesias", + "position": 5, + "title": "Hero" + }, + { + "artist": "Shakira", + "position": 6, + "title": "Whenever, Wherever" + }, + { + "artist": "Ja Rule Featuring Ashanti", + "position": 7, + "title": "Always On Time" + }, + { + "artist": "Ginuwine", + "position": 8, + "title": "Differences" + }, + { + "artist": "Creed", + "position": 9, + "title": "My Sacrifice" + }, + { + "artist": "Ja Rule Featuring Case", + "position": 10, + "title": "Livin' It Up" + }, + { + "artist": "Alicia Keys", + "position": 11, + "title": "A Woman's Worth" + }, + { + "artist": "Nelly Furtado", + "position": 12, + "title": "Turn Off The Light" + }, + { + "artist": "'N Sync", + "position": 13, + "title": "Gone" + }, + { + "artist": "Five For Fighting", + "position": 14, + "title": "Superman (It's Not Easy)" + }, + { + "artist": "The Calling", + "position": 15, + "title": "Wherever You Will Go" + }, + { + "artist": "Aaliyah", + "position": 16, + "title": "Rock The Boat" + }, + { + "artist": "Toya", + "position": 17, + "title": "I Do!!" + }, + { + "artist": "Jennifer Lopez Featuring Ja Rule", + "position": 18, + "title": "I'm Real" + }, + { + "artist": "Enya", + "position": 19, + "title": "Only Time" + }, + { + "artist": "Aaron Tippin", + "position": 20, + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + { + "artist": "Michael Jackson", + "position": 21, + "title": "Butterflies" + }, + { + "artist": "Fat Joe Featuring R. Kelly", + "position": 22, + "title": "We Thuggin'" + }, + { + "artist": "City High Featuring Eve", + "position": 23, + "title": "Caramel" + }, + { + "artist": "Alicia Keys", + "position": 24, + "title": "Fallin'" + }, + { + "artist": "Nelly", + "position": 25, + "title": "#1" + }, + { + "artist": "Linkin Park", + "position": 26, + "title": "In The End" + }, + { + "artist": "No Doubt Featuring Bounty Killer", + "position": 27, + "title": "Hey Baby" + }, + { + "artist": "Janet Featuring Missy Elliott, P. Diddy & Carly Simon", + "position": 28, + "title": "Son Of A Gun" + }, + { + "artist": "Destiny's Child", + "position": 29, + "title": "Emotion" + }, + { + "artist": "Alan Jackson", + "position": 30, + "title": "Where Were You (When The World Stopped Turning)" + }, + { + "artist": "Staind", + "position": 31, + "title": "It's Been Awhile" + }, + { + "artist": "Lenny Kravitz", + "position": 32, + "title": "Dig In" + }, + { + "artist": "Toby Keith", + "position": 33, + "title": "I Wanna Talk About Me" + }, + { + "artist": "Ludacris", + "position": 34, + "title": "Roll Out (My Business)" + }, + { + "artist": "Craig David", + "position": 35, + "title": "7 Days" + }, + { + "artist": "Jewel", + "position": 36, + "title": "Standing Still" + }, + { + "artist": "George Strait", + "position": 37, + "title": "Run" + }, + { + "artist": "Mr. Cheeks", + "position": 38, + "title": "Lights, Camera, Action!" + }, + { + "artist": "Steve Holy", + "position": 39, + "title": "Good Morning Beautiful" + }, + { + "artist": "Lifehouse", + "position": 40, + "title": "Hanging By A Moment" + }, + { + "artist": "Busta Rhymes", + "position": 41, + "title": "Break Ya Neck" + }, + { + "artist": "Train", + "position": 42, + "title": "Drops Of Jupiter (Tell Me)" + }, + { + "artist": "David Ball", + "position": 43, + "title": "Riding With Private Malone" + }, + { + "artist": "Trace Adkins", + "position": 44, + "title": "I'm Tryin'" + }, + { + "artist": "P.O.D.", + "position": 45, + "title": "Alive" + }, + { + "artist": "Garth Brooks", + "position": 46, + "title": "Wrapped Up In You" + }, + { + "artist": "Mystikal", + "position": 47, + "title": "Bouncin' Back (Bumpin' Me Against The Wall)" + }, + { + "artist": "Brad Paisley", + "position": 48, + "title": "Wrapped Around" + }, + { + "artist": "Faith Evans", + "position": 49, + "title": "You Gets No Love" + }, + { + "artist": "Petey Pablo", + "position": 50, + "title": "Raise Up" + }, + { + "artist": "OutKast Featuring Killer Mike", + "position": 51, + "title": "The Whole World" + }, + { + "artist": "Jay-Z", + "position": 52, + "title": "Girls, Girls, Girls" + }, + { + "artist": "Mary J. Blige", + "position": 53, + "title": "No More Drama" + }, + { + "artist": "Puddle Of Mudd", + "position": 54, + "title": "Blurry" + }, + { + "artist": "Maxwell", + "position": 55, + "title": "Lifetime" + }, + { + "artist": "Jo Dee Messina With Tim McGraw", + "position": 56, + "title": "Bring On The Rain" + }, + { + "artist": "LeAnn Rimes", + "position": 57, + "title": "Can't Fight The Moonlight" + }, + { + "artist": "Michelle Branch", + "position": 58, + "title": "Everywhere" + }, + { + "artist": "R. Kelly", + "position": 59, + "title": "The World's Greatest" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ginuwine & Tweet", + "position": 60, + "title": "Take Away" + }, + { + "artist": "Angie Stone", + "position": 61, + "title": "Brotha" + }, + { + "artist": "Fabolous", + "position": 62, + "title": "Young'n (Holla Back)" + }, + { + "artist": "Master P Featuring Weebie", + "position": 63, + "title": "Ooohhhwee" + }, + { + "artist": "Britney Spears", + "position": 64, + "title": "I'm A Slave 4 U" + }, + { + "artist": "Jagged Edge", + "position": 65, + "title": "Goodbye" + }, + { + "artist": "Brooks & Dunn", + "position": 66, + "title": "The Long Goodbye" + }, + { + "artist": "Travis Tritt", + "position": 67, + "title": "Love Of A Woman" + }, + { + "artist": "Joe", + "position": 68, + "title": "Let's Stay Home Tonight" + }, + { + "artist": "Incubus", + "position": 69, + "title": "Wish You Were Here" + }, + { + "artist": "Jermaine Dupri & Ludacris", + "position": 70, + "title": "Welcome To Atlanta" + }, + { + "artist": "Lonestar", + "position": 71, + "title": "With Me" + }, + { + "artist": "112", + "position": 72, + "title": "Dance With Me" + }, + { + "artist": "Lee Greenwood", + "position": 73, + "title": "God Bless The USA" + }, + { + "artist": "Jennifer Lopez Featuring Ja Rule", + "position": 74, + "title": "Ain't It Funny" + }, + { + "artist": "Juvenile", + "position": 75, + "title": "From Her Mama (Mama Got A**)" + }, + { + "artist": "Staind", + "position": 76, + "title": "Fade" + }, + { + "artist": "Glenn Lewis", + "position": 77, + "title": "Don't You Forget It" + }, + { + "artist": "U2", + "position": 78, + "title": "Stuck In A Moment You Can't Get Out Of" + }, + { + "artist": "Alien Ant Farm", + "position": 79, + "title": "Smooth Criminal" + }, + { + "artist": "Backstreet Boys", + "position": 80, + "title": "Drowning" + }, + { + "artist": "Mariah Carey", + "position": 81, + "title": "Never Too Far/Hero (Medley)" + }, + { + "artist": "Christina Milian", + "position": 82, + "title": "AM To PM" + }, + { + "artist": "Alan Jackson", + "position": 83, + "title": "Where I Come From" + }, + { + "artist": "Brian McKnight", + "position": 84, + "title": "Love Of My Life" + }, + { + "artist": "Method Man & Redman", + "position": 85, + "title": "Part II" + }, + { + "artist": "Puddle Of Mudd", + "position": 86, + "title": "Control" + }, + { + "artist": "Tim McGraw", + "position": 87, + "title": "Angry All The Time" + }, + { + "artist": "Bubba Sparxxx", + "position": 88, + "title": "Ugly" + }, + { + "artist": "Whitney Houston", + "position": 89, + "title": "The Star Spangled Banner" + }, + { + "artist": "Michael Jackson", + "position": 90, + "title": "You Rock My World" + }, + { + "artist": "Ludacris, LL Cool J & Keith Murray", + "position": 91, + "title": "Fatty Girl" + }, + { + "artist": "R. Kelly", + "position": 92, + "title": "Feelin' On Yo Booty" + }, + { + "artist": "Nas", + "position": 93, + "title": "Got Ur Self A..." + }, + { + "artist": "Tyrese", + "position": 94, + "title": "What Am I Gonna Do" + }, + { + "artist": "Reba", + "position": 95, + "title": "I'm A Survivor" + }, + { + "artist": "R.L., Snoop Dogg & Lil' Kim", + "position": 96, + "title": "Do U Wanna Roll (Dolittle Theme)" + }, + { + "artist": "Babyface", + "position": 97, + "title": "What If" + }, + { + "artist": "Jonell & Method Man", + "position": 98, + "title": "Round & Round" + }, + { + "artist": "Daniel Rodriguez", + "position": 99, + "title": "God Bless America" + }, + { + "artist": "DMX", + "position": 100, + "title": "Who We Be" + } + ], + "title": "2001 - Hot 100" + }, + { + "songs": [ + { + "artist": "Destiny's Child", + "position": 1, + "title": "Independent Women Part I" + }, + { + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "position": 2, + "title": "It Wasn't Me" + }, + { + "artist": "Mya", + "position": 3, + "title": "Case Of The Ex (Whatcha Gonna Do)" + }, + { + "artist": "Creed", + "position": 4, + "title": "With Arms Wide Open" + }, + { + "artist": "matchbox twenty", + "position": 5, + "title": "If You're Gone" + }, + { + "artist": "Dream", + "position": 6, + "title": "He Loves U Not" + }, + { + "artist": "Samantha Mumba", + "position": 7, + "title": "Gotta Tell You" + }, + { + "artist": "Debelah Morgan", + "position": 8, + "title": "Dance With Me" + }, + { + "artist": "3 Doors Down", + "position": 9, + "title": "Kryptonite" + }, + { + "artist": "Pink", + "position": 10, + "title": "Most Girls" + }, + { + "artist": "'N Sync", + "position": 11, + "title": "This I Promise You" + }, + { + "artist": "Lenny Kravitz", + "position": 12, + "title": "Again" + }, + { + "artist": "Jennifer Lopez", + "position": 13, + "title": "Love Don't Cost A Thing" + }, + { + "artist": "Evan And Jaron", + "position": 14, + "title": "Crazy For This Girl" + }, + { + "artist": "Kandi", + "position": 15, + "title": "Don't Think I'm Not" + }, + { + "artist": "Madonna", + "position": 16, + "title": "Don't Tell Me" + }, + { + "artist": "Britney Spears", + "position": 17, + "title": "Stronger" + }, + { + "artist": "SoulDecision Featuring Thrust", + "position": 18, + "title": "Faded" + }, + { + "artist": "Backstreet Boys", + "position": 19, + "title": "Shape Of My Heart" + }, + { + "artist": "Faith Hill", + "position": 20, + "title": "The Way You Love Me" + } + ], + "title": "2000 - Hot Pop Songs" + }, + { + "songs": [ + { + "artist": "Tim McGraw", + "position": 1, + "title": "My Next Thirty Years" + }, + { + "artist": "Dixie Chicks", + "position": 2, + "title": "Without You" + }, + { + "artist": "Sara Evans", + "position": 3, + "title": "Born To Fly" + }, + { + "artist": "Kenny Chesney", + "position": 4, + "title": "I Lost It" + }, + { + "artist": "Brad Paisley", + "position": 5, + "title": "We Danced" + }, + { + "artist": "Alan Jackson", + "position": 6, + "title": "www.memory" + }, + { + "artist": "Lonestar", + "position": 7, + "title": "Tell Her" + }, + { + "artist": "Phil Vassar", + "position": 8, + "title": "Just Another Day In Paradise" + }, + { + "artist": "Jo Dee Messina", + "position": 9, + "title": "Burn" + }, + { + "artist": "Travis Tritt", + "position": 10, + "title": "Best Of Intentions" + }, + { + "artist": "Lee Ann Womack", + "position": 11, + "title": "Ashes By Now" + }, + { + "artist": "Jamie O'Neal", + "position": 12, + "title": "There Is No Arizona" + }, + { + "artist": "Rascal Flatts", + "position": 13, + "title": "This Everyday Love" + }, + { + "artist": "John Michael Montgomery", + "position": 14, + "title": "The Little Girl" + }, + { + "artist": "Terri Clark", + "position": 15, + "title": "A Little Gasoline" + }, + { + "artist": "Keith Urban", + "position": 16, + "title": "But For The Grace Of God" + }, + { + "artist": "Garth Brooks", + "position": 17, + "title": "Wild Horses" + }, + { + "artist": "Toby Keith", + "position": 18, + "title": "You Shouldn't Kiss Me Like This" + }, + { + "artist": "The Clark Family Experience", + "position": 19, + "title": "Meanwhile Back At The Ranch" + }, + { + "artist": "Darryl Worley", + "position": 20, + "title": "A Good Day To Run" + }, + { + "artist": "Alabama", + "position": 21, + "title": "When It All Goes South" + }, + { + "artist": "Chris Cagle", + "position": 22, + "title": "My Love Goes On And On" + }, + { + "artist": "Andy Griggs", + "position": 23, + "title": "You Made Me That Way" + }, + { + "artist": "Aaron Tippin", + "position": 24, + "title": "Kiss This" + }, + { + "artist": "SheDaisy", + "position": 25, + "title": "Lucky 4 You (Tonight I'm Just Me)" + } + ], + "title": "2000 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Destiny's Child", + "position": 1, + "title": "Independent Women Part I" + }, + { + "artist": "Dream", + "position": 2, + "title": "He Loves U Not" + }, + { + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "position": 3, + "title": "It Wasn't Me" + }, + { + "artist": "Mya", + "position": 4, + "title": "Case Of The Ex (Whatcha Gonna Do)" + }, + { + "artist": "Creed", + "position": 5, + "title": "With Arms Wide Open" + }, + { + "artist": "OutKast", + "position": 6, + "title": "Ms. Jackson" + }, + { + "artist": "Faith Hill", + "position": 7, + "title": "The Way You Love Me" + }, + { + "artist": "matchbox twenty", + "position": 8, + "title": "If You're Gone" + }, + { + "artist": "3 Doors Down", + "position": 9, + "title": "Kryptonite" + }, + { + "artist": "Debelah Morgan", + "position": 10, + "title": "Dance With Me" + }, + { + "artist": "Jay-Z", + "position": 11, + "title": "I Just Wanna Love U (Give It 2 Me)" + }, + { + "artist": "'N Sync", + "position": 12, + "title": "This I Promise You" + }, + { + "artist": "Samantha Mumba", + "position": 13, + "title": "Gotta Tell You" + }, + { + "artist": "Pink", + "position": 14, + "title": "Most Girls" + }, + { + "artist": "R. Kelly", + "position": 15, + "title": "I Wish" + }, + { + "artist": "Lenny Kravitz", + "position": 16, + "title": "Again" + }, + { + "artist": "O-Town", + "position": 17, + "title": "Liquid Dreams" + }, + { + "artist": "Nelly", + "position": 18, + "title": "E.I." + }, + { + "artist": "Backstreet Boys", + "position": 19, + "title": "Shape Of My Heart" + }, + { + "artist": "Jennifer Lopez", + "position": 20, + "title": "Love Don't Cost A Thing" + }, + { + "artist": "Ja Rule Featuring Christina Milian", + "position": 21, + "title": "Between Me And You" + }, + { + "artist": "Barenaked Ladies", + "position": 22, + "title": "Pinch Me" + }, + { + "artist": "Evan And Jaron", + "position": 23, + "title": "Crazy For This Girl" + }, + { + "artist": "Ludacris Featuring Shawna", + "position": 24, + "title": "What's Your Fantasy" + }, + { + "artist": "U2", + "position": 25, + "title": "Beautiful Day" + }, + { + "artist": "Avant Featuring Ketara Wyatt", + "position": 26, + "title": "My First Love" + }, + { + "artist": "Madonna", + "position": 27, + "title": "Music" + }, + { + "artist": "Tim McGraw", + "position": 28, + "title": "My Next Thirty Years" + }, + { + "artist": "Britney Spears", + "position": 29, + "title": "Stronger" + }, + { + "artist": "Madonna", + "position": 30, + "title": "Don't Tell Me" + }, + { + "artist": "Musiq", + "position": 31, + "title": "Just Friends (Sunny)" + }, + { + "artist": "Mystikal Featuring Nivea", + "position": 32, + "title": "Danger (Been So Long)" + }, + { + "artist": "Dixie Chicks", + "position": 33, + "title": "Without You" + }, + { + "artist": "Sara Evans", + "position": 34, + "title": "Born To Fly" + }, + { + "artist": "Fuel", + "position": 35, + "title": "Hemorrhage (In My Hands)" + }, + { + "artist": "Kenny Chesney", + "position": 36, + "title": "I Lost It" + }, + { + "artist": "matchbox twenty", + "position": 37, + "title": "Bent" + }, + { + "artist": "K-Ci & JoJo", + "position": 38, + "title": "Crazy" + }, + { + "artist": "Mikaila", + "position": 39, + "title": "So In Love With Two" + }, + { + "artist": "Kandi", + "position": 40, + "title": "Don't Think I'm Not" + }, + { + "artist": "Lil Bow Wow", + "position": 41, + "title": "Bow Wow (That's My Name)" + }, + { + "artist": "Brad Paisley", + "position": 42, + "title": "We Danced" + }, + { + "artist": "Ricky Martin", + "position": 43, + "title": "She Bangs" + }, + { + "artist": "98 Degrees", + "position": 44, + "title": "My Everything" + }, + { + "artist": "Travis Tritt", + "position": 45, + "title": "Best Of Intentions" + }, + { + "artist": "Vertical Horizon", + "position": 46, + "title": "You're A God" + }, + { + "artist": "Carl Thomas", + "position": 47, + "title": "Emotional" + }, + { + "artist": "3LW", + "position": 48, + "title": "No More (Baby I'ma Do Right)" + }, + { + "artist": "Alan Jackson", + "position": 49, + "title": "www.memory" + }, + { + "artist": "Lonestar", + "position": 50, + "title": "Tell Her" + }, + { + "artist": "Phil Vassar", + "position": 51, + "title": "Just Another Day In Paradise" + }, + { + "artist": "Public Announcement", + "position": 52, + "title": "Mamacita" + }, + { + "artist": "Wyclef Jean Featuring Mary J. Blige", + "position": 53, + "title": "911" + }, + { + "artist": "Dave Hollister", + "position": 54, + "title": "One Woman Man" + }, + { + "artist": "Eminem Featuring Dido", + "position": 55, + "title": "Stan" + }, + { + "artist": "Lee Ann Womack", + "position": 56, + "title": "Ashes By Now" + }, + { + "artist": "Vitamin C", + "position": 57, + "title": "The Itch" + }, + { + "artist": "Jo Dee Messina", + "position": 58, + "title": "Burn" + }, + { + "artist": "Moby Featuring Gwen Stefani", + "position": 59, + "title": "South Side" + }, + { + "artist": "Cash Money Millionaires", + "position": 60, + "title": "Project Chick" + }, + { + "artist": "3 Doors Down", + "position": 61, + "title": "Loser" + }, + { + "artist": "John Michael Montgomery", + "position": 62, + "title": "The Little Girl" + }, + { + "artist": "David Gray", + "position": 63, + "title": "Babylon" + }, + { + "artist": "Jagged Edge", + "position": 64, + "title": "Promise" + }, + { + "artist": "112", + "position": 65, + "title": "It's Over Now" + }, + { + "artist": "Erykah Badu", + "position": 66, + "title": "Bag Lady" + }, + { + "artist": "Jamie O'Neal", + "position": 67, + "title": "There Is No Arizona" + }, + { + "artist": "NewSong", + "position": 68, + "title": "The Christmas Shoes" + }, + { + "artist": "BBMak", + "position": 69, + "title": "Still On Your Side" + }, + { + "artist": "Garth Brooks", + "position": 70, + "title": "Wild Horses" + }, + { + "artist": "Memphis Bleek Featuring Jay-Z & Missy Elliott", + "position": 71, + "title": "Is That Your Chick" + }, + { + "artist": "Keith Urban", + "position": 72, + "title": "But For The Grace Of God" + }, + { + "artist": "Limp Bizkit", + "position": 73, + "title": "Rollin'" + }, + { + "artist": "Kelly Price", + "position": 74, + "title": "You Should've Told Me" + }, + { + "artist": "Profyle", + "position": 75, + "title": "Liar" + }, + { + "artist": "Rascal Flatts", + "position": 76, + "title": "This Everyday Love" + }, + { + "artist": "Toby Keith", + "position": 77, + "title": "You Shouldn't Kiss Me Like This" + }, + { + "artist": "The Offspring", + "position": 78, + "title": "Original Prankster" + }, + { + "artist": "Yolanda Adams", + "position": 79, + "title": "Open My Heart" + }, + { + "artist": "Xzibit", + "position": 80, + "title": "X" + }, + { + "artist": "Shaggy Featuring Rayvon", + "position": 81, + "title": "Angel" + }, + { + "artist": "The Clark Family Experience", + "position": 82, + "title": "Meanwhile Back At The Ranch" + }, + { + "artist": "Billy Gilman", + "position": 83, + "title": "Oklahoma" + }, + { + "artist": "Beenie Man Featuring Mya", + "position": 84, + "title": "Girls Dem Sugar" + }, + { + "artist": "Ja Rule Featuring Lil' Mo And Vita", + "position": 85, + "title": "Put It On Me" + }, + { + "artist": "LeAnn Rimes", + "position": 86, + "title": "Can't Fight The Moonlight" + }, + { + "artist": "Jaheim", + "position": 87, + "title": "Could It Be" + }, + { + "artist": "Terri Clark", + "position": 88, + "title": "A Little Gasoline" + }, + { + "artist": "Lil' Kim Featuring Sisqo", + "position": 89, + "title": "How Many Licks?" + }, + { + "artist": "Boyz II Men", + "position": 90, + "title": "Thank You In Advance" + }, + { + "artist": "Chris Cagle", + "position": 91, + "title": "My Love Goes On And On" + }, + { + "artist": "Mos Def & Pharoahe Monch Featuring Nate Dogg", + "position": 92, + "title": "Oh No" + }, + { + "artist": "Marc Anthony", + "position": 93, + "title": "My Baby You" + }, + { + "artist": "98 Degrees", + "position": 94, + "title": "Give Me Just One Night (Una Noche)" + }, + { + "artist": "George Strait", + "position": 95, + "title": "Go On" + }, + { + "artist": "De La Soul Featuring Chaka Khan", + "position": 96, + "title": "All Good?" + }, + { + "artist": "Aaron Tippin", + "position": 97, + "title": "Kiss This" + }, + { + "artist": "Sunday", + "position": 98, + "title": "I Know" + }, + { + "artist": "Vince Gill", + "position": 99, + "title": "Feels Like Love" + }, + { + "artist": "Nine Days", + "position": 100, + "title": "If I Am" + } + ], + "title": "2000 - Hot 100" + }, + { + "songs": [ + { + "artist": "Faith Hill", + "position": 1, + "title": "Breathe" + }, + { + "artist": "Brad Paisley", + "position": 2, + "title": "He Didn't Have To Be" + }, + { + "artist": "Clint Black", + "position": 3, + "title": "When I Said I Do" + }, + { + "artist": "Reba", + "position": 4, + "title": "What Do You Say" + }, + { + "artist": "Dixie Chicks", + "position": 5, + "title": "Cowboy Take Me Away" + }, + { + "artist": "Alan Jackson", + "position": 6, + "title": "Pop A Top" + }, + { + "artist": "Tim McGraw", + "position": 7, + "title": "My Best Friend" + }, + { + "artist": "Yankee Grey", + "position": 8, + "title": "All Things Considered" + }, + { + "artist": "LeAnn Rimes", + "position": 9, + "title": "Big Deal" + }, + { + "artist": "John Michael Montgomery", + "position": 10, + "title": "Home To You" + }, + { + "artist": "Martina McBride", + "position": 11, + "title": "I Love You" + }, + { + "artist": "Tim McGraw", + "position": 12, + "title": "Something Like That" + }, + { + "artist": "Kenny Chesney", + "position": 13, + "title": "She Thinks My Tractor's Sexy" + }, + { + "artist": "Lonestar", + "position": 14, + "title": "Smile" + }, + { + "artist": "Shania Twain", + "position": 15, + "title": "Come On Over" + }, + { + "artist": "Clay Walker", + "position": 16, + "title": "Live, Laugh, Love" + }, + { + "artist": "Tracy Byrd", + "position": 17, + "title": "Put Your Hand In Mine" + }, + { + "artist": "Gary Allan", + "position": 18, + "title": "Smoke Rings In The Dark" + }, + { + "artist": "Ty Herndon", + "position": 19, + "title": "Steam" + }, + { + "artist": "Mark Wills", + "position": 20, + "title": "Back At One" + }, + { + "artist": "Brooks & Dunn", + "position": 21, + "title": "Beer Thirty" + }, + { + "artist": "George Strait", + "position": 22, + "title": "What Do You Say To That" + }, + { + "artist": "Lonestar", + "position": 23, + "title": "Amazed" + }, + { + "artist": "Joe Diffie", + "position": 24, + "title": "The Quittin' Kind" + }, + { + "artist": "Jo Dee Messina", + "position": 25, + "title": "Because You Love Me" + } + ], + "title": "1999 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Santana Featuring Rob Thomas", + "position": 1, + "title": "Smooth" + }, + { + "artist": "Brian McKnight", + "position": 2, + "title": "Back At One" + }, + { + "artist": "Jessica Simpson", + "position": 3, + "title": "I Wanna Love You Forever" + }, + { + "artist": "Savage Garden", + "position": 4, + "title": "I Knew I Loved You" + }, + { + "artist": "Whitney Houston", + "position": 5, + "title": "My Love Is Your Love" + }, + { + "artist": "Marc Anthony", + "position": 6, + "title": "I Need To Know" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring NAS, EVE & Q-Tip", + "position": 7, + "title": "Hot Boyz" + }, + { + "artist": "Donell Jones", + "position": 8, + "title": "U Know What's Up" + }, + { + "artist": "Blaque", + "position": 9, + "title": "Bring It All To Me" + }, + { + "artist": "Kevon Edmonds", + "position": 10, + "title": "24/7" + }, + { + "artist": "LFO", + "position": 11, + "title": "Girl On TV" + }, + { + "artist": "Jennifer Lopez", + "position": 12, + "title": "Waiting For Tonight" + }, + { + "artist": "Christina Aguilera", + "position": 13, + "title": "What A Girl Wants" + }, + { + "artist": "Smash Mouth", + "position": 14, + "title": "Then The Morning Comes" + }, + { + "artist": "Len", + "position": 15, + "title": "Steal My Sunshine" + }, + { + "artist": "Eiffel 65", + "position": 16, + "title": "Blue (Da Ba Dee)" + }, + { + "artist": "Jagged Edge", + "position": 17, + "title": "He Can't Love U" + }, + { + "artist": "Lou Bega", + "position": 18, + "title": "Mambo No. 5 (A Little Bit Of...)" + }, + { + "artist": "702", + "position": 19, + "title": "Where My Girls At?" + }, + { + "artist": "TLC", + "position": 20, + "title": "Unpretty" + }, + { + "artist": "Train", + "position": 21, + "title": "Meet Virginia" + }, + { + "artist": "Foo Fighters", + "position": 22, + "title": "Learn To Fly" + }, + { + "artist": "Sole Featuring JT Money & Kandi", + "position": 23, + "title": "4, 5, 6" + }, + { + "artist": "Montell Jordan", + "position": 24, + "title": "Get It On Tonite" + }, + { + "artist": "Juvenile Featuring Mannie Fresh & Lil' Wayne", + "position": 25, + "title": "Back That Thang Up" + }, + { + "artist": "LeAnn Rimes", + "position": 26, + "title": "Big Deal" + }, + { + "artist": "Ideal", + "position": 27, + "title": "Get Gone" + }, + { + "artist": "Faith Hill", + "position": 28, + "title": "Breathe" + }, + { + "artist": "Guy", + "position": 29, + "title": "Dancin'" + }, + { + "artist": "Celine Dion", + "position": 30, + "title": "That's The Way It Is" + }, + { + "artist": "Brad Paisley", + "position": 31, + "title": "He Didn't Have To Be" + }, + { + "artist": "Puff Daddy Featuring R. Kelly", + "position": 32, + "title": "Satisfy You" + }, + { + "artist": "Ol' Dirty Bastard Featuring Kelis", + "position": 33, + "title": "Got Your Money" + }, + { + "artist": "Sugar Ray", + "position": 34, + "title": "Someday" + }, + { + "artist": "Counting Crows", + "position": 35, + "title": "Hanginaround" + }, + { + "artist": "IMx", + "position": 36, + "title": "Stay The Night" + }, + { + "artist": "Goo Goo Dolls", + "position": 37, + "title": "Black Balloon" + }, + { + "artist": "Filter", + "position": 38, + "title": "Take A Picture" + }, + { + "artist": "Ricky Martin", + "position": 39, + "title": "Shake Your Bon-Bon" + }, + { + "artist": "Mint Condition", + "position": 40, + "title": "If You Love Me" + }, + { + "artist": "Clint Black", + "position": 41, + "title": "When I Said I Do" + }, + { + "artist": "Ice Cube Featuring Mack 10 & Ms. Toi", + "position": 42, + "title": "You Can Do It" + }, + { + "artist": "Marc Nelson", + "position": 43, + "title": "15 Minutes" + }, + { + "artist": "M2M", + "position": 44, + "title": "Don't Say You Love Me" + }, + { + "artist": "Lonestar", + "position": 45, + "title": "Amazed" + }, + { + "artist": "Reba", + "position": 46, + "title": "What Do You Say" + }, + { + "artist": "Christina Aguilera", + "position": 47, + "title": "The Christmas Song (Chestnuts Roasting On An Open Fire)" + }, + { + "artist": "Sisqo Featuring Make It Hot", + "position": 48, + "title": "Got To Get It" + }, + { + "artist": "Tal Bachman", + "position": 49, + "title": "She's So High" + }, + { + "artist": "Mariah Carey Featuring Joe & 98 Degrees", + "position": 50, + "title": "Thank God I Found You" + }, + { + "artist": "Mariah Carey Featuring Jay-Z", + "position": 51, + "title": "Heartbreaker" + }, + { + "artist": "Dixie Chicks", + "position": 52, + "title": "Cowboy Take Me Away" + }, + { + "artist": "Britney Spears", + "position": 53, + "title": "(You Drive Me) Crazy" + }, + { + "artist": "Tim McGraw", + "position": 54, + "title": "My Best Friend" + }, + { + "artist": "Alan Jackson", + "position": 55, + "title": "Pop A Top" + }, + { + "artist": "Robbie Williams", + "position": 56, + "title": "Angels" + }, + { + "artist": "Yankee Grey", + "position": 57, + "title": "All Things Considered" + }, + { + "artist": "Will Smith Featuring K-Ci", + "position": 58, + "title": "Will 2K" + }, + { + "artist": "Blink-182", + "position": 59, + "title": "All The Small Things" + }, + { + "artist": "Martina McBride", + "position": 60, + "title": "I Love You" + }, + { + "artist": "Creed", + "position": 61, + "title": "Higher" + }, + { + "artist": "B.G. Featuring Baby, Turk, Mannie Fresh, Juvenile & Lil' Wayne", + "position": 62, + "title": "Bling Bling" + }, + { + "artist": "Kelis", + "position": 63, + "title": "Caught Out There" + }, + { + "artist": "Mary J. Blige", + "position": 64, + "title": "Deep Inside" + }, + { + "artist": "Tim McGraw", + "position": 65, + "title": "Something Like That" + }, + { + "artist": "Eve", + "position": 66, + "title": "Gotta Man" + }, + { + "artist": "Enrique Iglesias", + "position": 67, + "title": "Rhythm Divine" + }, + { + "artist": "John Michael Montgomery", + "position": 68, + "title": "Home To You" + }, + { + "artist": "Amber", + "position": 69, + "title": "Sexual (Li Da Di)" + }, + { + "artist": "Backstreet Boys", + "position": 70, + "title": "Larger Than Life" + }, + { + "artist": "Ginuwine", + "position": 71, + "title": "None Of Ur Friends Business" + }, + { + "artist": "Destiny's Child", + "position": 72, + "title": "Bug A Boo" + }, + { + "artist": "Bush", + "position": 73, + "title": "The Chemicals Between Us" + }, + { + "artist": "Kenny Chesney", + "position": 74, + "title": "She Thinks My Tractor's Sexy" + }, + { + "artist": "D'Angelo Featuring Method Man And Redman", + "position": 75, + "title": "Left & Right" + }, + { + "artist": "Sixpence None The Richer", + "position": 76, + "title": "There She Goes" + }, + { + "artist": "Deborah Cox With R.L.", + "position": 77, + "title": "We Can't Be Friends" + }, + { + "artist": "Limp Bizkit Featuring Method Man", + "position": 78, + "title": "N 2 Gether Now" + }, + { + "artist": "R.E.M.", + "position": 79, + "title": "The Great Beyond" + }, + { + "artist": "Lonestar", + "position": 80, + "title": "Smile" + }, + { + "artist": "Shania Twain", + "position": 81, + "title": "Come On Over" + }, + { + "artist": "Fatboy Slim", + "position": 82, + "title": "The Rockafeller Skank" + }, + { + "artist": "Destiny's Child", + "position": 83, + "title": "Say My Name" + }, + { + "artist": "Lil' Wayne Featuring Juvenile & B.G.", + "position": 84, + "title": "Tha Block Is Hot" + }, + { + "artist": "'N Sync & Gloria Estefan", + "position": 85, + "title": "Music Of My Heart" + }, + { + "artist": "Angie Stone", + "position": 86, + "title": "No More Rain (In This Cloud)" + }, + { + "artist": "Rage Against The Machine", + "position": 87, + "title": "Guerrilla Radio" + }, + { + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Lil' Kim", + "position": 88, + "title": "Notorious B.I.G." + }, + { + "artist": "Kenny G", + "position": 89, + "title": "Auld Lang Syne" + }, + { + "artist": "Chico DeBarge", + "position": 90, + "title": "Give You What You Want (Fa Sure)" + }, + { + "artist": "Ty Herndon", + "position": 91, + "title": "Steam" + }, + { + "artist": "Prince", + "position": 92, + "title": "The Greatest Romance Ever Sold" + }, + { + "artist": "Warren G Featuring Mack 10", + "position": 93, + "title": "I Want It All" + }, + { + "artist": "Clay Walker", + "position": 94, + "title": "Live, Laugh, Love" + }, + { + "artist": "Limp Bizkit", + "position": 95, + "title": "Re-arranged" + }, + { + "artist": "J-Shin Featuring LaTocha Scott", + "position": 96, + "title": "One Night Stand" + }, + { + "artist": "SheDaisy", + "position": 97, + "title": "Deck The Halls" + }, + { + "artist": "Dr. Dre Featuring Snoop Dogg", + "position": 98, + "title": "Still D.R.E." + }, + { + "artist": "Beth Hart", + "position": 99, + "title": "L.A. Song" + }, + { + "artist": "Nas", + "position": 100, + "title": "NAStradamus" + } + ], + "title": "1999 - Hot 100" + }, + { + "songs": [ + { + "artist": "Terri Clark", + "position": 1, + "title": "You re Easy On The Eyes" + }, + { + "artist": "Brooks", + "position": 2, + "title": "Husbands And Wives" + }, + { + "artist": "Collin Raye", + "position": 3, + "title": "Someone You Used To Know" + }, + { + "artist": "Faith Hill", + "position": 4, + "title": "Let Me Let Go" + }, + { + "artist": "Clay Walker", + "position": 5, + "title": "You re Beginning To Get To Me" + }, + { + "artist": "Alan Jackson", + "position": 6, + "title": "Right On The Money" + }, + { + "artist": "Martina McBride", + "position": 7, + "title": "Wrong Again" + }, + { + "artist": "Aaron Tippin", + "position": 8, + "title": "For You I Will" + }, + { + "artist": "Blackhawk", + "position": 9, + "title": "There You Have It" + }, + { + "artist": "George Strait", + "position": 10, + "title": "We Really Shouldn t Be Doing This" + }, + { + "artist": "Tim McGraw", + "position": 11, + "title": "For A Little While" + }, + { + "artist": "Ty Herndon", + "position": 12, + "title": "It Must Be Love" + }, + { + "artist": "Randy Travis", + "position": 13, + "title": "Spirit Of A Boy, Wisdom Of A Man" + }, + { + "artist": "Jo Dee Messina", + "position": 14, + "title": "Stand Beside Me" + }, + { + "artist": "Reba", + "position": 15, + "title": "Wrong Night" + }, + { + "artist": "Diamond Rio", + "position": 16, + "title": "Unbelievable" + }, + { + "artist": "Dixie Chicks", + "position": 17, + "title": "Wide Open Spaces" + }, + { + "artist": "John Michael Montgomery", + "position": 18, + "title": "Hold On To Me" + }, + { + "artist": "Mark Chesnutt", + "position": 19, + "title": "I Don t Want To Miss A Thing" + }, + { + "artist": "Garth Brooks", + "position": 20, + "title": "It s Your Song" + }, + { + "artist": "Toby Keith", + "position": 21, + "title": "Getcha Some" + }, + { + "artist": "Sara Evans", + "position": 22, + "title": "No Place That Far" + }, + { + "artist": "Tim McGraw", + "position": 23, + "title": "Where The Green Grass Grows" + }, + { + "artist": "Billy Ray Cyrus", + "position": 24, + "title": "Busy Man" + }, + { + "artist": "The Wilkinsons", + "position": 25, + "title": "Fly (The Angel Song)" + } + ], + "title": "1998 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "R. Kelly", + "position": 1, + "title": "I m Your Angel" + }, + { + "artist": "Deborah Cox", + "position": 2, + "title": "Nobody s Supposed To Be Here" + }, + { + "artist": "Divine", + "position": 3, + "title": "Lately" + }, + { + "artist": "Shania Twain", + "position": 4, + "title": "From This Moment On" + }, + { + "artist": "Britney Spears", + "position": 5, + "title": "...Baby One More Time" + }, + { + "artist": "98 Degrees", + "position": 6, + "title": "Because Of You" + }, + { + "artist": "Lauryn Hill", + "position": 7, + "title": "Doo Wop (That Thing)" + }, + { + "artist": "Faith Evans", + "position": 8, + "title": "Love Like This" + }, + { + "artist": "Brandy", + "position": 9, + "title": "Have You Ever?" + }, + { + "artist": "Shawn Mullins", + "position": 10, + "title": "Lullaby" + }, + { + "artist": "Spice Girls", + "position": 11, + "title": "Goodbye" + }, + { + "artist": "Total Featuring Missy Elliott", + "position": 12, + "title": "Trippin" + }, + { + "artist": "Eagle-Eye Cherry", + "position": 13, + "title": "Save Tonight" + }, + { + "artist": "Faith Hill", + "position": 14, + "title": "This Kiss" + }, + { + "artist": "Jewel", + "position": 15, + "title": "Hands" + }, + { + "artist": "Third Eye Blind", + "position": 16, + "title": "Jumper" + }, + { + "artist": "Goo Goo Dolls", + "position": 17, + "title": "Slide" + }, + { + "artist": "Goo Goo Dolls", + "position": 18, + "title": "Iris" + }, + { + "artist": "Monica", + "position": 19, + "title": "The First Night" + }, + { + "artist": "Jay-Z Featuring Amil (Of Major Coinz)", + "position": 20, + "title": "Can I Get A..." + }, + { + "artist": "112 Featuring Mase", + "position": 21, + "title": "Love Me" + }, + { + "artist": "Edwin McCain", + "position": 22, + "title": "I ll Be" + }, + { + "artist": "Dru Hill Featuring Redman", + "position": 23, + "title": "How Deep Is Your Love" + }, + { + "artist": "Sheryl Crow", + "position": 24, + "title": "My Favorite Mistake" + }, + { + "artist": "BLACKstreet", + "position": 25, + "title": "Take Me There" + }, + { + "artist": "Alanis Morissette", + "position": 26, + "title": "Thank U" + }, + { + "artist": "Barenaked Ladies", + "position": 27, + "title": "One Week" + }, + { + "artist": "Sarah McLachlan", + "position": 28, + "title": "Angel" + }, + { + "artist": "Aaliyah", + "position": 29, + "title": "Are You That Somebody?" + }, + { + "artist": "Will Smith", + "position": 30, + "title": "Miami" + }, + { + "artist": "Eve 6", + "position": 31, + "title": "Inside Out" + }, + { + "artist": "Next", + "position": 32, + "title": "Too Close" + }, + { + "artist": "Monifah", + "position": 33, + "title": "Touch It" + }, + { + "artist": "N Sync", + "position": 34, + "title": "(God Must Have Spent) A Little More Time On You" + }, + { + "artist": "Jay-Z", + "position": 35, + "title": "Hard Knock Life (Ghetto Anthem)" + }, + { + "artist": "Dru Hill", + "position": 36, + "title": "These Are The Times" + }, + { + "artist": "Monica", + "position": 37, + "title": "Angel Of Mine" + }, + { + "artist": "2Pac", + "position": 38, + "title": "Changes" + }, + { + "artist": "Clay Walker", + "position": 39, + "title": "You re Beginning To Get To Me" + }, + { + "artist": "Collin Raye", + "position": 40, + "title": "Someone You Used To Know" + }, + { + "artist": "Madonna", + "position": 41, + "title": "The Power Of Good-Bye" + }, + { + "artist": "Ice Cube Featuring Mr. Short Khop", + "position": 42, + "title": "Pushin Weight" + }, + { + "artist": "Brian McKnight Featuring Tone", + "position": 43, + "title": "Hold Me" + }, + { + "artist": "Terri Clark", + "position": 44, + "title": "You re Easy On The Eyes" + }, + { + "artist": "Aaron Hall", + "position": 45, + "title": "All The Places (I Will Kiss You)" + }, + { + "artist": "Mo Thugs Family Featuring Bone Thugs-N-Harmony", + "position": 46, + "title": "Ghetto Cowboy" + }, + { + "artist": "Mark Chesnutt", + "position": 47, + "title": "I Don t Want To Miss A Thing" + }, + { + "artist": "Blackhawk", + "position": 48, + "title": "There You Have It" + }, + { + "artist": "Martina McBride", + "position": 49, + "title": "Wrong Again" + }, + { + "artist": "Brooks", + "position": 50, + "title": "Husbands And Wives" + }, + { + "artist": "Alan Jackson", + "position": 51, + "title": "Right On The Money" + }, + { + "artist": "New Radicals", + "position": 52, + "title": "You Get What You Give" + }, + { + "artist": "Lenny Kravitz", + "position": 53, + "title": "Fly Away" + }, + { + "artist": "Aaron Tippin", + "position": 54, + "title": "For You I Will" + }, + { + "artist": "Faith Hill", + "position": 55, + "title": "Let Me Let Go" + }, + { + "artist": "Whitney Houston", + "position": 56, + "title": "When You Believe" + }, + { + "artist": "Randy Travis", + "position": 57, + "title": "Spirit Of A Boy, Wisdom Of A Man" + }, + { + "artist": "OutKast", + "position": 58, + "title": "Rosa Parks" + }, + { + "artist": "The Offspring", + "position": 59, + "title": "Pretty Fly (For A White Guy)" + }, + { + "artist": "Tim McGraw", + "position": 60, + "title": "For A Little While" + }, + { + "artist": "TQ", + "position": 61, + "title": "Westside" + }, + { + "artist": "Keith Sweat Featuring Snoop Dogg", + "position": 62, + "title": "Come And Get With Me" + }, + { + "artist": "Ty Herndon", + "position": 63, + "title": "It Must Be Love" + }, + { + "artist": "George Strait", + "position": 64, + "title": "We Really Shouldn t Be Doing This" + }, + { + "artist": "Jo Dee Messina", + "position": 65, + "title": "Stand Beside Me" + }, + { + "artist": "Sara Evans", + "position": 66, + "title": "No Place That Far" + }, + { + "artist": "Dixie Chicks", + "position": 67, + "title": "Wide Open Spaces" + }, + { + "artist": "John Michael Montgomery", + "position": 68, + "title": "Hold On To Me" + }, + { + "artist": "U2", + "position": 69, + "title": "Sweetest Thing" + }, + { + "artist": "R. Kelly Featuring Keith Murray", + "position": 70, + "title": "Home Alone" + }, + { + "artist": "Voices Of Theory", + "position": 71, + "title": "Wherever You Go" + }, + { + "artist": "Aerosmith", + "position": 72, + "title": "I Don t Want To Miss A Thing" + }, + { + "artist": "Reba", + "position": 73, + "title": "Wrong Night" + }, + { + "artist": "Barenaked Ladies", + "position": 74, + "title": "It s All Been Done" + }, + { + "artist": "The Wilkinsons", + "position": 75, + "title": "Fly (The Angel Song)" + }, + { + "artist": "Diamond Rio", + "position": 76, + "title": "Unbelievable" + }, + { + "artist": "Cher", + "position": 77, + "title": "Believe" + }, + { + "artist": "Everclear", + "position": 78, + "title": "Father Of Mine" + }, + { + "artist": "R. Kelly", + "position": 79, + "title": "When A Woman s Fed Up" + }, + { + "artist": "Everlast", + "position": 80, + "title": "What It s Like" + }, + { + "artist": "Cake", + "position": 81, + "title": "Never There" + }, + { + "artist": "Brandy", + "position": 82, + "title": "Angel In Disguise" + }, + { + "artist": "Shaggy Featuring Janet", + "position": 83, + "title": "Luv Me, Luv Me" + }, + { + "artist": "Whitney Houston Feat. Faith Evans", + "position": 84, + "title": "Heartbreak Hotel" + }, + { + "artist": "matchbox 20", + "position": 85, + "title": "Back 2 Good" + }, + { + "artist": "Case", + "position": 86, + "title": "Faded Pictures" + }, + { + "artist": "Everything", + "position": 87, + "title": "Hooch" + }, + { + "artist": "Fastball", + "position": 88, + "title": "Fire Escape" + }, + { + "artist": "Xscape", + "position": 89, + "title": "My Little Secret" + }, + { + "artist": "Tim McGraw", + "position": 90, + "title": "Where The Green Grass Grows" + }, + { + "artist": "Five", + "position": 91, + "title": "It s The Things You Do" + }, + { + "artist": "Kirk Franklin Feat. Mary J. Blige, Bono, R. Kelly, Crystal Lewis", + "position": 92, + "title": "Lean On Me" + }, + { + "artist": "Garth Brooks", + "position": 93, + "title": "It s Your Song" + }, + { + "artist": "Hole", + "position": 94, + "title": "Celebrity Skin" + }, + { + "artist": "Mark Wills", + "position": 95, + "title": "Don t Laugh At Me" + }, + { + "artist": "Lee Ann Womack", + "position": 96, + "title": "A Little Past Little Rock" + }, + { + "artist": "Willie Max Featuring Raphael Saadiq", + "position": 97, + "title": "Can t Get Enough" + }, + { + "artist": "Alabama", + "position": 98, + "title": "How Do You Fall In Love" + }, + { + "artist": "Timbaland Featuring Missy \"Misdemeanor\" Elliott", + "position": 99, + "title": "Here We Come" + }, + { + "artist": "Travis Tritt", + "position": 100, + "title": "If I Lost You" + } + ], + "title": "1998 - Hot 100" + }, + { + "songs": [ + { + "artist": "Garth Brooks", + "position": 1, + "title": "Longneck Bottle" + }, + { + "artist": "Martina McBride", + "position": 2, + "title": "A Broken Wing" + }, + { + "artist": "Alan Jackson", + "position": 3, + "title": "Between The Devil And Me" + }, + { + "artist": "Michael Peterson", + "position": 4, + "title": "From Here To Eternity" + }, + { + "artist": "Trace Adkins", + "position": 5, + "title": "The Rest Of Mine" + }, + { + "artist": "Pam Tillis", + "position": 6, + "title": "Land Of The Living" + }, + { + "artist": "Toby Keith With Sting", + "position": 7, + "title": "I'm So Happy I Can't Stop Crying" + }, + { + "artist": "John Michael Montgomery", + "position": 8, + "title": "Angel In My Eyes" + }, + { + "artist": "Brooks & Dunn", + "position": 9, + "title": "He's Got You" + }, + { + "artist": "Tim McGraw", + "position": 10, + "title": "Just To See You Smile" + }, + { + "artist": "Sammy Kershaw", + "position": 11, + "title": "Love Of My Life" + }, + { + "artist": "Shania Twain", + "position": 12, + "title": "Love Gets Me Every Time" + }, + { + "artist": "LeAnn Rimes", + "position": 13, + "title": "On The Side Of Angels" + }, + { + "artist": "Lonestar", + "position": 14, + "title": "You Walked In" + }, + { + "artist": "Diamond Rio", + "position": 15, + "title": "Imagine That" + }, + { + "artist": "Patty Loveless", + "position": 16, + "title": "You Don't Seem To Miss Me" + }, + { + "artist": "Ty Herndon", + "position": 17, + "title": "I Have To Surrender" + }, + { + "artist": "Shania Twain", + "position": 18, + "title": "Don't Be Stupid (You Know I Love You)" + }, + { + "artist": "Lila McCann", + "position": 19, + "title": "I Wanna Fall In Love" + }, + { + "artist": "Lee Ann Womack", + "position": 20, + "title": "You've Got To Talk To Me" + }, + { + "artist": "George Strait", + "position": 21, + "title": "Today My World Slipped Away" + }, + { + "artist": "Anita Cochran (Duet With Steve Wariner)", + "position": 22, + "title": "What If I Said" + }, + { + "artist": "Alabama", + "position": 23, + "title": "Of Course I'm Alright" + }, + { + "artist": "Kenny Chesney", + "position": 24, + "title": "A Chance" + }, + { + "artist": "Clint Black", + "position": 25, + "title": "Something That We Do" + } + ], + "title": "1997 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Elton John", + "position": 1, + "title": "Candle In The Wind 1997/Something About The Way You Look Tonight" + }, + { + "artist": "LeAnn Rimes", + "position": 2, + "title": "How Do I Live" + }, + { + "artist": "Usher", + "position": 3, + "title": "You Make Me Wanna..." + }, + { + "artist": "Janet", + "position": 4, + "title": "Together Again" + }, + { + "artist": "Puff Daddy & The Family (Feat. The Notorious B.I.G. & Mase)", + "position": 5, + "title": "Been Around The World" + }, + { + "artist": "LSG", + "position": 6, + "title": "My Body" + }, + { + "artist": "Mase", + "position": 7, + "title": "Feel So Good" + }, + { + "artist": "Robyn", + "position": 8, + "title": "Show Me Love" + }, + { + "artist": "Savage Garden", + "position": 9, + "title": "Truly Madly Deeply" + }, + { + "artist": "Somethin' For The People Featuring Trina & Tamara", + "position": 10, + "title": "My Love Is The Shhh!" + }, + { + "artist": "Chumbawamba", + "position": 11, + "title": "Tubthumping" + }, + { + "artist": "Boyz II Men", + "position": 12, + "title": "A Song For Mama" + }, + { + "artist": "Hanson", + "position": 13, + "title": "I Will Come To You" + }, + { + "artist": "Paula Cole", + "position": 14, + "title": "I Don't Want To Wait" + }, + { + "artist": "Aaliyah", + "position": 15, + "title": "The One I Gave My Heart To" + }, + { + "artist": "Dru Hill", + "position": 16, + "title": "We're Not Making Love No More" + }, + { + "artist": "Allure Featuring 112", + "position": 17, + "title": "All Cried Out" + }, + { + "artist": "Spice Girls", + "position": 18, + "title": "Spice Up Your Life" + }, + { + "artist": "Next", + "position": 19, + "title": "Butta Love" + }, + { + "artist": "Uncle Sam", + "position": 20, + "title": "I Don't Ever Want To See You Again" + }, + { + "artist": "Missy \"Misdemeanor\" Elliott Featuring Da Brat", + "position": 21, + "title": "Sock It 2 Me" + }, + { + "artist": "Jewel", + "position": 22, + "title": "Foolish Games/You Were Meant For Me" + }, + { + "artist": "Lisa Loeb", + "position": 23, + "title": "I Do" + }, + { + "artist": "Boyz II Men", + "position": 24, + "title": "4 Seasons Of Loneliness" + }, + { + "artist": "Third Eye Blind", + "position": 25, + "title": "Semi-Charmed Life" + }, + { + "artist": "Backstreet Boys", + "position": 26, + "title": "Quit Playing Games (With My Heart)" + }, + { + "artist": "Third Eye Blind", + "position": 27, + "title": "How's It Going To Be" + }, + { + "artist": "Total", + "position": 28, + "title": "What About Us" + }, + { + "artist": "Aqua", + "position": 29, + "title": "Lollipop (Candyman)" + }, + { + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Mase", + "position": 30, + "title": "Mo Money Mo Problems" + }, + { + "artist": "Fiona Apple", + "position": 31, + "title": "Criminal" + }, + { + "artist": "She Moves", + "position": 32, + "title": "Breaking All The Rules" + }, + { + "artist": "Nu Flavor", + "position": 33, + "title": "Heaven" + }, + { + "artist": "Sister Hazel", + "position": 34, + "title": "All For You" + }, + { + "artist": "Destiny's Child", + "position": 35, + "title": "No, No, No" + }, + { + "artist": "Sarah McLachlan", + "position": 36, + "title": "Building A Mystery" + }, + { + "artist": "The Notorious B.I.G.", + "position": 37, + "title": "Going Back To Cali" + }, + { + "artist": "H-Town", + "position": 38, + "title": "They Like It Slow" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 39, + "title": "If I Could Teach The World" + }, + { + "artist": "Puff Daddy & Faith Evans Featuring 112", + "position": 40, + "title": "I'll Be Missing You" + }, + { + "artist": "Mariah Carey", + "position": 41, + "title": "Honey" + }, + { + "artist": "Los Umbrellos", + "position": 42, + "title": "No Tengo Dinero" + }, + { + "artist": "Metallica", + "position": 43, + "title": "The Memory Remains" + }, + { + "artist": "98 Degrees", + "position": 44, + "title": "Invisible Man" + }, + { + "artist": "Spice Girls", + "position": 45, + "title": "2 Become 1" + }, + { + "artist": "Shawn Colvin", + "position": 46, + "title": "Sunny Came Home" + }, + { + "artist": "Mary J. Blige", + "position": 47, + "title": "Everything" + }, + { + "artist": "Shania Twain", + "position": 48, + "title": "Don't Be Stupid (You Know I Love You)" + }, + { + "artist": "Milestone", + "position": 49, + "title": "I Care 'Bout You" + }, + { + "artist": "Gary Barlow", + "position": 50, + "title": "So Help Me Girl" + }, + { + "artist": "Richard Marx & Donna Lewis", + "position": 51, + "title": "At The Beginning" + }, + { + "artist": "Billie Myers", + "position": 52, + "title": "Kiss The Rain" + }, + { + "artist": "Shania Twain", + "position": 53, + "title": "Love Gets Me Every Time" + }, + { + "artist": "Imani Coppola", + "position": 54, + "title": "Legend Of A Cowgirl" + }, + { + "artist": "Master P Featuring Pimp C And The Shocker", + "position": 55, + "title": "I Miss My Homies" + }, + { + "artist": "Alana Davis", + "position": 56, + "title": "32 Flavors" + }, + { + "artist": "Bee Gees", + "position": 57, + "title": "Still Waters (Run Deep)" + }, + { + "artist": "WC From Westside Connection", + "position": 58, + "title": "Just Clownin'" + }, + { + "artist": "LeAnn Rimes", + "position": 59, + "title": "You Light Up My Life" + }, + { + "artist": "Davina", + "position": 60, + "title": "So Good" + }, + { + "artist": "Mack 10", + "position": 61, + "title": "Backyard Boogie" + }, + { + "artist": "Big Punisher", + "position": 62, + "title": "I'm Not A Player" + }, + { + "artist": "Reba McEntire", + "position": 63, + "title": "What If" + }, + { + "artist": "Olive", + "position": 64, + "title": "You're Not Alone" + }, + { + "artist": "Sting & The Police", + "position": 65, + "title": "Roxanne `97 - Puff Daddy Remix" + }, + { + "artist": "David Bowie", + "position": 66, + "title": "I'm Afraid Of Americans" + }, + { + "artist": "Insane Clown Posse", + "position": 67, + "title": "Santa's A Fat Bitch" + }, + { + "artist": "Kimberly Scott", + "position": 68, + "title": "Tuck Me In" + }, + { + "artist": "Brian McKnight Featuring Mase", + "position": 69, + "title": "You Should Be Mine (Don't Waste Your Time)" + }, + { + "artist": "K-Ci & JoJo", + "position": 70, + "title": "Last Night's Letter" + }, + { + "artist": "Diana King", + "position": 71, + "title": "L-L-Lies" + }, + { + "artist": "Amber", + "position": 72, + "title": "One More Night" + }, + { + "artist": "Playa", + "position": 73, + "title": "Don't Stop The Music" + }, + { + "artist": "Martina McBride With Jim Brickman", + "position": 74, + "title": "Valentine" + }, + { + "artist": "LL Cool J Featuring Method Man, Redman, DMX, Canibus And Master P", + "position": 75, + "title": "4, 3, 2, 1" + }, + { + "artist": "Clint Black", + "position": 76, + "title": "Something That We Do" + }, + { + "artist": "Naughty By Nature", + "position": 77, + "title": "Mourn You Til I Join You" + }, + { + "artist": "KAI", + "position": 78, + "title": "Say You'll Stay" + }, + { + "artist": "2Pac", + "position": 79, + "title": "I Wonder If Heaven Got A Ghetto" + }, + { + "artist": "Lord Tariq & Peter Gunz", + "position": 80, + "title": "Deja Vu [Uptown Baby]" + }, + { + "artist": "Daft Punk", + "position": 81, + "title": "Around The World" + }, + { + "artist": "En Vogue", + "position": 82, + "title": "Too Gone, Too Long" + }, + { + "artist": "BeBe Winans", + "position": 83, + "title": "In Harm's Way" + }, + { + "artist": "Trace Adkins", + "position": 84, + "title": "The Rest Of Mine" + }, + { + "artist": "4.0", + "position": 85, + "title": "Have A Little Mercy" + }, + { + "artist": "K.P. & Envyi", + "position": 86, + "title": "Swing My Way" + }, + { + "artist": "Changing Faces (Featuring Jay-Z)", + "position": 87, + "title": "All Of My Days" + }, + { + "artist": "Gang Starr", + "position": 88, + "title": "You Know My Steez" + }, + { + "artist": "Queen Pen Featuring Teddy Riley", + "position": 89, + "title": "Man Behind The Music" + }, + { + "artist": "Prodigy", + "position": 90, + "title": "Smack My Bitch Up" + }, + { + "artist": "Deana Carter", + "position": 91, + "title": "Did I Shave My Legs For This?" + }, + { + "artist": "Sammy Kershaw", + "position": 92, + "title": "Love Of My Life" + }, + { + "artist": "LL Cool J", + "position": 93, + "title": "Phenomenon" + }, + { + "artist": "Le Click Featuring Kayo", + "position": 94, + "title": "Don't Go" + }, + { + "artist": "Ultra Nate", + "position": 95, + "title": "Free" + }, + { + "artist": "Sublime", + "position": 96, + "title": "Doin' Time" + }, + { + "artist": "Toby Keith With Sting", + "position": 97, + "title": "I'm So Happy I Can't Stop Crying" + }, + { + "artist": "Yvette Michele", + "position": 98, + "title": "DJ Keep Playin' (Get Your Music On)" + }, + { + "artist": "Billy Lawrence", + "position": 99, + "title": "Up & Down" + }, + { + "artist": "Barenaked Ladies", + "position": 100, + "title": "Brian Wilson" + } + ], + "title": "1997 - Hot 100" + }, + { + "songs": [ + { + "artist": "LeAnn Rimes", + "position": 1, + "title": "One Way Ticket (Because I Can)" + }, + { + "artist": "Alan Jackson", + "position": 2, + "title": "Little Bitty" + }, + { + "artist": "Reba McEntire", + "position": 3, + "title": "The Fear Of Being Alone" + }, + { + "artist": "Garth Brooks", + "position": 4, + "title": "That Ol' Wind" + }, + { + "artist": "Tracy Byrd", + "position": 5, + "title": "Big Love" + }, + { + "artist": "Kevin Sharp", + "position": 6, + "title": "Nobody Knows" + }, + { + "artist": "Trace Adkins", + "position": 7, + "title": "Every Light In The House" + }, + { + "artist": "John Michael Montgomery", + "position": 8, + "title": "Friends" + }, + { + "artist": "Tim McGraw", + "position": 9, + "title": "Maybe We Should Just Sleep On It" + }, + { + "artist": "Gary Allan", + "position": 10, + "title": "Her Man" + }, + { + "artist": "Tracy Lawrence", + "position": 11, + "title": "Is That A Tear" + }, + { + "artist": "Mary Chapin Carpenter", + "position": 12, + "title": "Let Me Into Your Heart" + }, + { + "artist": "Trisha Yearwood", + "position": 13, + "title": "Everybody Knows" + }, + { + "artist": "Mark Chesnutt", + "position": 14, + "title": "It's A Little Too Late" + }, + { + "artist": "Vince Gill", + "position": 15, + "title": "Pretty Little Adriana" + }, + { + "artist": "David Kersh", + "position": 16, + "title": "Goodnight Sweetheart" + }, + { + "artist": "Faith Hill", + "position": 17, + "title": "I Can't Do That Anymore" + }, + { + "artist": "Clint Black", + "position": 18, + "title": "Half Way Up" + }, + { + "artist": "Bryan White", + "position": 19, + "title": "That's Another Song" + }, + { + "artist": "Deana Carter", + "position": 20, + "title": "Strawberry Wine" + }, + { + "artist": "Brooks & Dunn", + "position": 21, + "title": "A Man This Lonely" + }, + { + "artist": "Rick Trevino", + "position": 22, + "title": "Running Out Of Reasons To Run" + }, + { + "artist": "Daryle Singletary", + "position": 23, + "title": "Amen Kind Of Love" + }, + { + "artist": "Mindy McCready (Featuring Lonestar's Richie McDonald)", + "position": 24, + "title": "Maybe He'll Notice Her Now" + }, + { + "artist": "Randy Travis", + "position": 25, + "title": "Would I" + } + ], + "title": "1996 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Toni Braxton", + "position": 1, + "title": "Un-Break My Heart" + }, + { + "artist": "R. Kelly", + "position": 2, + "title": "I Believe I Can Fly (From \"Space Jam\")" + }, + { + "artist": "En Vogue", + "position": 3, + "title": "Don't Let Go (Love) (From \"Set It Off\")" + }, + { + "artist": "BLACKstreet (Featuring Dr. Dre)", + "position": 4, + "title": "No Diggity" + }, + { + "artist": "Keith Sweat Featuring Athena Cage", + "position": 5, + "title": "Nobody" + }, + { + "artist": "Merril Bainbridge", + "position": 6, + "title": "Mouth" + }, + { + "artist": "Whitney Houston", + "position": 7, + "title": "I Believe In You And Me (From \"The Preacher's Wife\")" + }, + { + "artist": "Celine Dion", + "position": 8, + "title": "It's All Coming Back To Me Now" + }, + { + "artist": "New Edition", + "position": 9, + "title": "I'm Still In Love With You" + }, + { + "artist": "Barbra Streisand & Bryan Adams", + "position": 10, + "title": "I Finally Found Someone (From \"The Mirror Has Two Faces\")" + }, + { + "artist": "Ginuwine", + "position": 11, + "title": "Pony" + }, + { + "artist": "Los Del Rio", + "position": 12, + "title": "Macarena (Bayside Boys Mix)" + }, + { + "artist": "No Mercy", + "position": 13, + "title": "Where Do You Go" + }, + { + "artist": "Sheryl Crow", + "position": 14, + "title": "If It Makes You Happy" + }, + { + "artist": "Journey", + "position": 15, + "title": "When You Love A Woman" + }, + { + "artist": "Az Yet", + "position": 16, + "title": "Last Night (From \"The Nutty Professor\")" + }, + { + "artist": "Seal", + "position": 17, + "title": "Fly Like An Eagle (From \"Space Jam\")" + }, + { + "artist": "Donna Lewis", + "position": 18, + "title": "I Love You Always Forever" + }, + { + "artist": "Mint Condition", + "position": 19, + "title": "What Kind Of Man Would I Be" + }, + { + "artist": "Lil' Kim Featuring Puff Daddy", + "position": 20, + "title": "No Time" + }, + { + "artist": "Babyface Feat. LL Cool J, Howard Hewett, Jody Watley & Jef", + "position": 21, + "title": "This Is For The Lover In You" + }, + { + "artist": "Montell Jordan", + "position": 22, + "title": "Falling" + }, + { + "artist": "Keith Sweat", + "position": 23, + "title": "Twisted" + }, + { + "artist": "Dru Hill", + "position": 24, + "title": "Tell Me (From \"Eddie\")" + }, + { + "artist": "Eric Clapton", + "position": 25, + "title": "Change The World (From \"Phenomenon\")" + }, + { + "artist": "Amber", + "position": 26, + "title": "This Is Your Night" + }, + { + "artist": "Nas", + "position": 27, + "title": "Street Dreams" + }, + { + "artist": "Madonna", + "position": 28, + "title": "You Must Love Me (From \"Evita\")" + }, + { + "artist": "dc Talk", + "position": 29, + "title": "Just Between You And Me" + }, + { + "artist": "Toni Braxton", + "position": 30, + "title": "You're Makin' Me High/Let It Flow" + }, + { + "artist": "MC Lyte", + "position": 31, + "title": "Cold Rock A Party" + }, + { + "artist": "Dishwalla", + "position": 32, + "title": "Counting Blue Cars" + }, + { + "artist": "Jewel", + "position": 33, + "title": "Foolish Games/You Were Meant For Me" + }, + { + "artist": "Gina G", + "position": 34, + "title": "Ooh Aah... Just A Little Bit" + }, + { + "artist": "John Mellencamp", + "position": 35, + "title": "Key West Intermezzo (I Saw You First)" + }, + { + "artist": "702", + "position": 36, + "title": "Steelo" + }, + { + "artist": "Alanis Morissette", + "position": 37, + "title": "You Learn/You Oughta Know" + }, + { + "artist": "Ghost Town DJ's", + "position": 38, + "title": "My Boo" + }, + { + "artist": "112", + "position": 39, + "title": "Come See Me" + }, + { + "artist": "OutKast", + "position": 40, + "title": "ATLiens" + }, + { + "artist": "Nate Dogg Featuring Snoop Doggy Dogg", + "position": 41, + "title": "Never Leave Me Alone" + }, + { + "artist": "Bryan Adams", + "position": 42, + "title": "Let's Make A Night To Remember" + }, + { + "artist": "LL Cool J", + "position": 43, + "title": "Loungin" + }, + { + "artist": "The Cranberries", + "position": 44, + "title": "When You're Gone/Free To Decide" + }, + { + "artist": "Westside Connection", + "position": 45, + "title": "Bow Down" + }, + { + "artist": "Quad City DJ's", + "position": 46, + "title": "C'mon N' Ride It (The Train)" + }, + { + "artist": "Mack 10 & Tha Dogg Pound", + "position": 47, + "title": "Nothin' But The Cavi Hit (From \"Rhyme & Reason\")" + }, + { + "artist": "Tracy Chapman", + "position": 48, + "title": "Give Me One Reason" + }, + { + "artist": "The Smashing Pumpkins", + "position": 49, + "title": "Thirty-Three" + }, + { + "artist": "Jocelyn Enriquez", + "position": 50, + "title": "Do You Miss Me" + }, + { + "artist": "Donell Jones", + "position": 51, + "title": "Knocks Me Off My Feet" + }, + { + "artist": "Donna Lewis", + "position": 52, + "title": "Without Love" + }, + { + "artist": "Aaliyah", + "position": 53, + "title": "If Your Girl Only Knew" + }, + { + "artist": "Brandy, Tamia, Gladys Knight & Chaka Khan", + "position": 54, + "title": "Missing You (From \"Set It Off\")" + }, + { + "artist": "Rod Stewart", + "position": 55, + "title": "If We Fall In Love Tonight" + }, + { + "artist": "Quad City DJ's", + "position": 56, + "title": "Space Jam (From \"Space Jam\")" + }, + { + "artist": "Gloria Estefan", + "position": 57, + "title": "I'm Not Giving You Up" + }, + { + "artist": "K-Ci & JoJo", + "position": 58, + "title": "How Could You (From \"Bulletproof\")" + }, + { + "artist": "The Blackout Allstars", + "position": 59, + "title": "I Like It" + }, + { + "artist": "Alan Jackson", + "position": 60, + "title": "Little Bitty" + }, + { + "artist": "Total", + "position": 61, + "title": "When Boy Meets Girl" + }, + { + "artist": "Duncan Sheik", + "position": 62, + "title": "Barely Breathing" + }, + { + "artist": "Johnny Gill Featuring Roger Troutman", + "position": 63, + "title": "It's Your Body" + }, + { + "artist": "Better Than Ezra", + "position": 64, + "title": "Desperately Wanting" + }, + { + "artist": "Rockell", + "position": 65, + "title": "I Fell In Love" + }, + { + "artist": "Los Del Rio", + "position": 66, + "title": "Macarena Christmas" + }, + { + "artist": "Da Brat", + "position": 67, + "title": "Sittin' On Top Of The World" + }, + { + "artist": "The Braids", + "position": 68, + "title": "Bohemian Rhapsody (From \"High School High\")" + }, + { + "artist": "Kenny G", + "position": 69, + "title": "The Moment" + }, + { + "artist": "R.E.M.", + "position": 70, + "title": "Bittersweet Me" + }, + { + "artist": "The Original", + "position": 71, + "title": "I Luv U Baby" + }, + { + "artist": "Crush", + "position": 72, + "title": "Jellyhead" + }, + { + "artist": "Metallica", + "position": 73, + "title": "Hero Of The Day" + }, + { + "artist": "Richie Rich", + "position": 74, + "title": "Let's Ride" + }, + { + "artist": "The Isley Brothers Featuring Angela Winbush", + "position": 75, + "title": "Floatin' On Your Love" + }, + { + "artist": "Le Click", + "position": 76, + "title": "Tonight Is The Night" + }, + { + "artist": "Melissa Etheridge", + "position": 77, + "title": "Nowhere To Go" + }, + { + "artist": "Goodfellaz", + "position": 78, + "title": "Sugar Honey Ice Tea" + }, + { + "artist": "Luscious Jackson", + "position": 79, + "title": "Naked Eye" + }, + { + "artist": "Shania Twain", + "position": 80, + "title": "God Bless The Child" + }, + { + "artist": "Wild Orchid", + "position": 81, + "title": "At Night I Pray" + }, + { + "artist": "Susanna Hoffs", + "position": 82, + "title": "All I Want" + }, + { + "artist": "Luther Vandross", + "position": 83, + "title": "I Can Make It Better" + }, + { + "artist": "Phil Collins", + "position": 84, + "title": "Dance Into The Light" + }, + { + "artist": "The Wonders", + "position": 85, + "title": "That Thing You Do! (From \"That Thing You Do!\")" + }, + { + "artist": "Trace Adkins", + "position": 86, + "title": "Every Light In The House" + }, + { + "artist": "New Edition", + "position": 87, + "title": "Hit Me Off" + }, + { + "artist": "Robert Miles Featuring Maria Nayler", + "position": 88, + "title": "One And One" + }, + { + "artist": "John Michael Montgomery", + "position": 89, + "title": "Friends" + }, + { + "artist": "Elton John", + "position": 90, + "title": "You Can Make History (Young Again)" + }, + { + "artist": "Warren G Featuring Adina Howard", + "position": 91, + "title": "What's Love Got To Do With It (From \"Supercop\")" + }, + { + "artist": "The Tony Rich Project", + "position": 92, + "title": "Leavin'" + }, + { + "artist": "Johnny Gill", + "position": 93, + "title": "Let's Get The Mood Right" + }, + { + "artist": "Amanda Marshall", + "position": 94, + "title": "Birmingham" + }, + { + "artist": "Redman Featuring K-Solo", + "position": 95, + "title": "That's How It Is (It's Like That)" + }, + { + "artist": "dog's eye view", + "position": 96, + "title": "Everything Falls Apart/Small Wonders" + }, + { + "artist": "SWV", + "position": 97, + "title": "Use Your Heart" + }, + { + "artist": "LL Cool J", + "position": 98, + "title": "Ain't Nobody (From \"Beavis And Butt-Head Do America\")" + }, + { + "artist": "Angelina", + "position": 99, + "title": "I Don't Need Your Love" + }, + { + "artist": "Lost Boyz", + "position": 100, + "title": "Music Makes Me High" + } + ], + "title": "1996 - Hot 100" + }, + { + "songs": [ + { + "artist": "Aaron Tippin", + "position": 1, + "title": "That's As Close As I'll Get To Loving You" + }, + { + "artist": "Tim McGraw", + "position": 2, + "title": "Can't Be Really Gone" + }, + { + "artist": "Bryan White", + "position": 3, + "title": "Rebecca Lynn" + }, + { + "artist": "Clint Black", + "position": 4, + "title": "Life Gets Away" + }, + { + "artist": "Jeff Carson", + "position": 5, + "title": "The Car" + }, + { + "artist": "Faith Hill", + "position": 6, + "title": "It Matters To Me" + }, + { + "artist": "Pam Tillis", + "position": 7, + "title": "Deep Down" + }, + { + "artist": "Alan Jackson", + "position": 8, + "title": "Tall, Tall Trees" + }, + { + "artist": "Tracy Byrd", + "position": 9, + "title": "Love Lessons" + }, + { + "artist": "George Strait", + "position": 10, + "title": "Check Yes Or No" + }, + { + "artist": "John Michael Montgomery", + "position": 11, + "title": "Cowboy Love" + }, + { + "artist": "Shania Twain", + "position": 12, + "title": "(If You're Not In It For Love) I'm Outta Here!" + }, + { + "artist": "Terri Clark", + "position": 13, + "title": "When Boy Meets Girl" + }, + { + "artist": "Lee Roy Parnell", + "position": 14, + "title": "When A Woman Loves A Man" + }, + { + "artist": "Doug Stone", + "position": 15, + "title": "Born In The Dark" + }, + { + "artist": "Reba McEntire", + "position": 16, + "title": "Ring On Her Finger, Time On Her Hands" + }, + { + "artist": "Joe Diffie", + "position": 17, + "title": "Bigger Than The Beatles" + }, + { + "artist": "Doug Supernaw", + "position": 18, + "title": "Not Enough Hours In The Night" + }, + { + "artist": "Alabama", + "position": 19, + "title": "In Pictures" + }, + { + "artist": "Dwight Yoakam", + "position": 20, + "title": "Nothing" + }, + { + "artist": "Blackhawk", + "position": 21, + "title": "Like There Ain't No Yesterday" + }, + { + "artist": "Collin Raye", + "position": 22, + "title": "Not That Different" + }, + { + "artist": "Wade Hayes", + "position": 23, + "title": "What I Meant To Say" + }, + { + "artist": "Clay Walker", + "position": 24, + "title": "Who Needs You Baby" + }, + { + "artist": "John Berry", + "position": 25, + "title": "If I Had Any Pride Left At All" + } + ], + "title": "1995 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Mariah Carey & Boyz II Men", + "position": 1, + "title": "One Sweet Day" + }, + { + "artist": "Whitney Houston", + "position": 2, + "title": "Exhale (Shoop Shoop) (From \"Waiting To Exhale\")" + }, + { + "artist": "LL Cool J", + "position": 3, + "title": "Hey Lover" + }, + { + "artist": "Coolio Featuring L.V.", + "position": 4, + "title": "Gangsta's Paradise (From \"Dangerous Minds\")" + }, + { + "artist": "TLC", + "position": 5, + "title": "Diggin' On You" + }, + { + "artist": "Mariah Carey", + "position": 6, + "title": "Fantasy" + }, + { + "artist": "Monica", + "position": 7, + "title": "Before You Walk Out Of My Life/Like This And Like That" + }, + { + "artist": "Deep Blue Something", + "position": 8, + "title": "Breakfast At Tiffany's" + }, + { + "artist": "Goo Goo Dolls", + "position": 9, + "title": "Name" + }, + { + "artist": "The Beatles", + "position": 10, + "title": "Free As A Bird" + }, + { + "artist": "Madonna", + "position": 11, + "title": "You'll See" + }, + { + "artist": "Everything But The Girl", + "position": 12, + "title": "Missing" + }, + { + "artist": "Pearl Jam", + "position": 13, + "title": "I Got Id/Long Road" + }, + { + "artist": "Janet Jackson", + "position": 14, + "title": "Runaway" + }, + { + "artist": "Joan Osborne", + "position": 15, + "title": "One Of Us" + }, + { + "artist": "R. Kelly", + "position": 16, + "title": "You Remind Me Of Something" + }, + { + "artist": "Ace Of Base", + "position": 17, + "title": "Beautiful Life" + }, + { + "artist": "Groove Theory", + "position": 18, + "title": "Tell Me" + }, + { + "artist": "Take That", + "position": 19, + "title": "Back For Good" + }, + { + "artist": "Sophie B. Hawkins", + "position": 20, + "title": "As I Lay Me Down" + }, + { + "artist": "Kris Kross", + "position": 21, + "title": "Tonite's Tha Night" + }, + { + "artist": "Faith Evans", + "position": 22, + "title": "Soon As I Get Home" + }, + { + "artist": "Hootie & The Blowfish", + "position": 23, + "title": "Only Wanna Be With You" + }, + { + "artist": "3T", + "position": 24, + "title": "Anything" + }, + { + "artist": "Seal", + "position": 25, + "title": "Kiss From A Rose (From \"Batman Forever\")" + }, + { + "artist": "The Smashing Pumpkins", + "position": 26, + "title": "Bullet With Butterfly Wings" + }, + { + "artist": "Hootie & The Blowfish", + "position": 27, + "title": "Time" + }, + { + "artist": "Xscape", + "position": 28, + "title": "Who Can I Run To" + }, + { + "artist": "Natalie Merchant", + "position": 29, + "title": "Carnival" + }, + { + "artist": "Selena", + "position": 30, + "title": "Dreaming Of You" + }, + { + "artist": "Del Amitri", + "position": 31, + "title": "Roll To Me" + }, + { + "artist": "La Bouche", + "position": 32, + "title": "Be My Lover" + }, + { + "artist": "Jodeci", + "position": 33, + "title": "Love U 4 Life" + }, + { + "artist": "Planet Soul", + "position": 34, + "title": "Set U Free" + }, + { + "artist": "Coolio", + "position": 35, + "title": "Too Hot" + }, + { + "artist": "Blues Traveler", + "position": 36, + "title": "Run-Around" + }, + { + "artist": "Meat Loaf", + "position": 37, + "title": "I'd Lie For You (And That's The Truth)" + }, + { + "artist": "Elton John", + "position": 38, + "title": "Blessed" + }, + { + "artist": "Blues Traveler", + "position": 39, + "title": "Hook" + }, + { + "artist": "Collective Soul", + "position": 40, + "title": "The World I Know" + }, + { + "artist": "Natalie Merchant", + "position": 41, + "title": "Wonder" + }, + { + "artist": "Folk Implosion", + "position": 42, + "title": "Natural One (From \"Kids\")" + }, + { + "artist": "Total", + "position": 43, + "title": "No One Else" + }, + { + "artist": "TLC", + "position": 44, + "title": "Waterfalls" + }, + { + "artist": "Collective Soul", + "position": 45, + "title": "December" + }, + { + "artist": "Brandy", + "position": 46, + "title": "Sittin' Up In My Room (From \"Waiting To Exhale\")" + }, + { + "artist": "Eazy-E", + "position": 47, + "title": "Just Tah Let U Know" + }, + { + "artist": "All-4-One", + "position": 48, + "title": "I Can Love You Like That" + }, + { + "artist": "The Tony Rich Project", + "position": 49, + "title": "Nobody Knows" + }, + { + "artist": "Big Mountain", + "position": 50, + "title": "Get Together" + }, + { + "artist": "Goodie Mob.", + "position": 51, + "title": "Cell Therapy" + }, + { + "artist": "Jon B", + "position": 52, + "title": "Pretty Girl" + }, + { + "artist": "D'Angelo", + "position": 53, + "title": "Cruisin'" + }, + { + "artist": "Blahzay Blahzay", + "position": 54, + "title": "Danger" + }, + { + "artist": "Terry Ellis", + "position": 55, + "title": "Where Ever You Are" + }, + { + "artist": "Boyz II Men", + "position": 56, + "title": "I Remember" + }, + { + "artist": "Michael Jackson", + "position": 57, + "title": "You Are Not Alone" + }, + { + "artist": "The Rembrandts", + "position": 58, + "title": "I'll Be There For You/This House Is Not A Home" + }, + { + "artist": "Def Leppard", + "position": 59, + "title": "When Love & Hate Collide" + }, + { + "artist": "L.A.D.", + "position": 60, + "title": "Ridin' Low" + }, + { + "artist": "Bush", + "position": 61, + "title": "Comedown" + }, + { + "artist": "Lisa Loeb & Nine Stories", + "position": 62, + "title": "Do You Sleep?" + }, + { + "artist": "Brandy", + "position": 63, + "title": "Brokenhearted" + }, + { + "artist": "Shai", + "position": 64, + "title": "Come With Me" + }, + { + "artist": "Immature (Featuring Smooth)", + "position": 65, + "title": "We Got It" + }, + { + "artist": "Tim McGraw", + "position": 66, + "title": "I Like It, I Love It" + }, + { + "artist": "Sarah McLachlan", + "position": 67, + "title": "I Will Remember You (Live)" + }, + { + "artist": "Los Del Rio", + "position": 68, + "title": "Macarena (Bayside Boys Mix)" + }, + { + "artist": "Monifah", + "position": 69, + "title": "I Miss You (Come Back Home) (From \"New York Undercover\")" + }, + { + "artist": "Max-A-Million", + "position": 70, + "title": "Sexual Healing" + }, + { + "artist": "L.V.", + "position": 71, + "title": "Throw Your Hands Up" + }, + { + "artist": "Raekwon", + "position": 72, + "title": "Incarcerated Scarfaces/Ice Cream" + }, + { + "artist": "The Mighty Dub Katz", + "position": 73, + "title": "Magic Carpet Ride" + }, + { + "artist": "Silk", + "position": 74, + "title": "Hooked On You" + }, + { + "artist": "The Pharcyde", + "position": 75, + "title": "Runnin'" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 76, + "title": "East 1999" + }, + { + "artist": "The Click", + "position": 77, + "title": "Hurricane" + }, + { + "artist": "No Doubt", + "position": 78, + "title": "Just A Girl" + }, + { + "artist": "Better Than Ezra", + "position": 79, + "title": "Rosealia" + }, + { + "artist": "The Outhere Brothers", + "position": 80, + "title": "Boom Boom Boom" + }, + { + "artist": "Shania Twain", + "position": 81, + "title": "(If You're Not In It For Love) I'm Outta Here!/The Woman In Me" + }, + { + "artist": "Salt-N-Pepa", + "position": 82, + "title": "Ain't Nuthin' But A She Thing" + }, + { + "artist": "Cypress Hill", + "position": 83, + "title": "Throw Your Set In The Air" + }, + { + "artist": "Kool G Rap", + "position": 84, + "title": "Fast Life" + }, + { + "artist": "Deborah Cox", + "position": 85, + "title": "Sentimental" + }, + { + "artist": "Real McCoy", + "position": 86, + "title": "Automatic Lover (Call For Love)" + }, + { + "artist": "Faith Hill", + "position": 87, + "title": "It Matters To Me" + }, + { + "artist": "Edwin McCain", + "position": 88, + "title": "Solitude" + }, + { + "artist": "Fugees", + "position": 89, + "title": "Fu-Gee-La" + }, + { + "artist": "L.B.C. Crew Feat. Tray D & South Sentrell", + "position": 90, + "title": "Beware Of My Crew (From \"A Thin Line Between Love And Hate\")" + }, + { + "artist": "Artie The 1 Man Party", + "position": 91, + "title": "A Mover La Colita" + }, + { + "artist": "Frost", + "position": 92, + "title": "East Side Rendezvous" + }, + { + "artist": "Backstreet Boys", + "position": 93, + "title": "We've Got It Goin' On" + }, + { + "artist": "Capleton", + "position": 94, + "title": "Wings Of The Morning" + }, + { + "artist": "P.M. Dawn", + "position": 95, + "title": "Sometimes I Miss You So Much (Dedicated To The Christ Consciousness)" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 96, + "title": "1st Of Tha Month" + }, + { + "artist": "Genius/GZA Featuring Inspektah Deck", + "position": 97, + "title": "Cold World" + }, + { + "artist": "Quincy Jones Introducing Tamia", + "position": 98, + "title": "You Put A Move On My Heart" + }, + { + "artist": "Method Man", + "position": 99, + "title": "The Riddler (From \"Batman Forever\")" + }, + { + "artist": "Prince", + "position": 100, + "title": "Gold" + } + ], + "title": "1995 - Hot 100" + }, + { + "songs": [ + { + "artist": "Joe Diffie", + "position": 1, + "title": "Pickup Man" + }, + { + "artist": "Tim McGraw", + "position": 2, + "title": "Not A Moment Too Soon" + }, + { + "artist": "Faith Hill", + "position": 3, + "title": "Take Me As I Am" + }, + { + "artist": "Mark Chesnutt", + "position": 4, + "title": "Goin Through The Big D" + }, + { + "artist": "Randy Travis", + "position": 5, + "title": "This Is Me" + }, + { + "artist": "Rick Trevino", + "position": 6, + "title": "Doctor Time" + }, + { + "artist": "Reba McEntire", + "position": 7, + "title": "Till You Love Me" + }, + { + "artist": "Alan Jackson", + "position": 8, + "title": "Gone Country" + }, + { + "artist": "Vince Gill", + "position": 9, + "title": "When Love Finds You" + }, + { + "artist": "Brooks", + "position": 10, + "title": "I ll Never Forgive My Heart" + }, + { + "artist": "Pam Tillis", + "position": 11, + "title": "Mi Vida Loca (My Crazy Life)" + }, + { + "artist": "Lari White", + "position": 12, + "title": "Now I Know" + }, + { + "artist": "Diamond Rio", + "position": 13, + "title": "Night Is Fallin In My Heart" + }, + { + "artist": "Mark Collie", + "position": 14, + "title": "Hard Lovin Woman" + }, + { + "artist": "John Berry", + "position": 15, + "title": "You And Only You" + }, + { + "artist": "Aaron Tippin", + "position": 16, + "title": "I Got It Honest" + }, + { + "artist": "Sawyer Brown", + "position": 17, + "title": "This Time" + }, + { + "artist": "John Michael Montgomery", + "position": 18, + "title": "If You ve Got Love" + }, + { + "artist": "Doug Stone", + "position": 19, + "title": "Little Houses" + }, + { + "artist": "Tracy Byrd", + "position": 20, + "title": "The First Step" + }, + { + "artist": "David Ball", + "position": 21, + "title": "When The Thought Of You Catches Up With Me" + }, + { + "artist": "Patty Loveless", + "position": 22, + "title": "Here I Am" + }, + { + "artist": "Clint Black", + "position": 23, + "title": "Untanglin My Mind" + }, + { + "artist": "Collin Raye", + "position": 24, + "title": "My Kind Of Girl" + }, + { + "artist": "George Strait", + "position": 25, + "title": "The Big One" + } + ], + "title": "1994 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Boyz II Men", + "position": 1, + "title": "On Bended Knee" + }, + { + "artist": "Ini Kamoze", + "position": 2, + "title": "Here Comes The Hotstepper (From \"Ready To Wear\")" + }, + { + "artist": "Real McCoy", + "position": 3, + "title": "Another Night" + }, + { + "artist": "TLC", + "position": 4, + "title": "Creep" + }, + { + "artist": "Bon Jovi", + "position": 5, + "title": "Always" + }, + { + "artist": "Brandy", + "position": 6, + "title": "I Wanna Be Down" + }, + { + "artist": "Boyz II Men", + "position": 7, + "title": "I ll Make Love To You" + }, + { + "artist": "BLACKstreet", + "position": 8, + "title": "Before I Let You Go" + }, + { + "artist": "69 Boyz", + "position": 9, + "title": "Tootsee Roll" + }, + { + "artist": "Melissa Etheridge", + "position": 10, + "title": "I m The Only One" + }, + { + "artist": "Janet Jackson", + "position": 11, + "title": "You Want This/70 s Love Groove" + }, + { + "artist": "Madonna", + "position": 12, + "title": "Secret" + }, + { + "artist": "4PM", + "position": 13, + "title": "Sukiyaki" + }, + { + "artist": "Madonna", + "position": 14, + "title": "Take A Bow" + }, + { + "artist": "20 Fingers Featuring Gillette", + "position": 15, + "title": "Short Dick Man" + }, + { + "artist": "Des ree", + "position": 16, + "title": "You Gotta Be" + }, + { + "artist": "Sheryl Crow", + "position": 17, + "title": "All I Wanna Do" + }, + { + "artist": "Gloria Estefan", + "position": 18, + "title": "Turn The Beat Around (From \"The Specialist\")" + }, + { + "artist": "Barry White", + "position": 19, + "title": "Practice What You Preach" + }, + { + "artist": "Pretenders", + "position": 20, + "title": "I ll Stand By You" + }, + { + "artist": "Crystal Waters", + "position": 21, + "title": "100% Pure Love" + }, + { + "artist": "Corona", + "position": 22, + "title": "The Rhythm Of The Night" + }, + { + "artist": "Vanessa Williams", + "position": 23, + "title": "The Sweetest Days" + }, + { + "artist": "Tom Petty", + "position": 24, + "title": "You Don t Know How It Feels" + }, + { + "artist": "Hootie", + "position": 25, + "title": "Hold My Hand" + }, + { + "artist": "Four Seasons", + "position": 26, + "title": "December 1963 (Oh, What A Night)" + }, + { + "artist": "Ace Of Base", + "position": 27, + "title": "Living In Danger" + }, + { + "artist": "Jade", + "position": 28, + "title": "Every Day Of The Week" + }, + { + "artist": "Immature", + "position": 29, + "title": "Constantly" + }, + { + "artist": "Immature", + "position": 30, + "title": "Never Lie" + }, + { + "artist": "Deadeye Dick", + "position": 31, + "title": "New Age Girl (From \"Dumb And Dumber\")" + }, + { + "artist": "R.E.M.", + "position": 32, + "title": "What s The Frequency, Kenneth?" + }, + { + "artist": "Toni Braxton", + "position": 33, + "title": "I Belong To You/How Many Ways" + }, + { + "artist": "Mary J. Blige", + "position": 34, + "title": "Be Happy" + }, + { + "artist": "Craig Mack", + "position": 35, + "title": "Flava In Ya Ear" + }, + { + "artist": "Babyface", + "position": 36, + "title": "When Can I See You" + }, + { + "artist": "John Mellencamp With Me Shell Ndegeocello", + "position": 37, + "title": "Wild Night" + }, + { + "artist": "Zhane", + "position": 38, + "title": "Shame (From \"A Low Down Dirty Shame\")" + }, + { + "artist": "Bone Thugs-N-Harmony", + "position": 39, + "title": "Thuggish Ruggish Bone" + }, + { + "artist": "Scarface", + "position": 40, + "title": "I Never Seen A Man Cry (aka I Seen A Man Die)" + }, + { + "artist": "Brownstone", + "position": 41, + "title": "If You Love Me" + }, + { + "artist": "Rappin 4-Tay", + "position": 42, + "title": "Playaz Club" + }, + { + "artist": "Sting", + "position": 43, + "title": "When We Dance" + }, + { + "artist": "N II U", + "position": 44, + "title": "I Miss You" + }, + { + "artist": "Method Man", + "position": 45, + "title": "Bring The Pain" + }, + { + "artist": "Jon Secada", + "position": 46, + "title": "Mental Picture" + }, + { + "artist": "Changing Faces", + "position": 47, + "title": "Foolin Around" + }, + { + "artist": "Aerosmith", + "position": 48, + "title": "Blind Man" + }, + { + "artist": "B.M.U. (Black Men United)", + "position": 49, + "title": "U Will Know (From \"Jason s Lyric\")" + }, + { + "artist": "Candlebox", + "position": 50, + "title": "Far Behind" + }, + { + "artist": "Warren G", + "position": 51, + "title": "Do You See" + }, + { + "artist": "Da Brat", + "position": 52, + "title": "Fa All Y all" + }, + { + "artist": "Keith Murray", + "position": 53, + "title": "The Most Beautifullest Thing In This World" + }, + { + "artist": "John Mellencamp", + "position": 54, + "title": "Dance Naked" + }, + { + "artist": "Elton John", + "position": 55, + "title": "Circle Of Life (From \"The Lion King\")" + }, + { + "artist": "Amy Grant With Vince Gill", + "position": 56, + "title": "House Of Love" + }, + { + "artist": "Lucas", + "position": 57, + "title": "Lucas With The Lid Off" + }, + { + "artist": "Toad The Wet Sprocket", + "position": 58, + "title": "Something s Always Wrong" + }, + { + "artist": "Luther Vandross", + "position": 59, + "title": "Always And Forever" + }, + { + "artist": "Heavy D", + "position": 60, + "title": "Black Coffee" + }, + { + "artist": "Hole", + "position": 61, + "title": "Doll Parts" + }, + { + "artist": "Guns N Roses", + "position": 62, + "title": "Sympathy For The Devil (\"Interview With The Vampire\")" + }, + { + "artist": "The Notorious B.I.G.", + "position": 63, + "title": "Juicy/Unbelievable" + }, + { + "artist": "Andru Donalds", + "position": 64, + "title": "Mishale" + }, + { + "artist": "2 Unlimited", + "position": 65, + "title": "Get Ready For This" + }, + { + "artist": "69 Boyz", + "position": 66, + "title": "Kitty Kitty" + }, + { + "artist": "Aaliyah", + "position": 67, + "title": "At Your Best (You Are Love)" + }, + { + "artist": "Joe Diffie", + "position": 68, + "title": "Pickup Man" + }, + { + "artist": "Urge Overkill", + "position": 69, + "title": "Girl, You ll Be A Woman Soon (From \"Pulp Fiction\")" + }, + { + "artist": "Luther Vandross", + "position": 70, + "title": "Endless Love" + }, + { + "artist": "Harry Connick, Jr.", + "position": 71, + "title": "(I Could Only) Whisper Your Name" + }, + { + "artist": "Eagles", + "position": 72, + "title": "Get Over It" + }, + { + "artist": "Craig Mack", + "position": 73, + "title": "Get Down" + }, + { + "artist": "Keith Sweat (Featuring Kut Klose)", + "position": 74, + "title": "Get Up On It" + }, + { + "artist": "Martin Page", + "position": 75, + "title": "In The House Of Stone And Light" + }, + { + "artist": "Silk", + "position": 76, + "title": "I Can Go Deep (From \"A Low Down Dirty Shame\")" + }, + { + "artist": "Mazzy Star", + "position": 77, + "title": "Fade Into You" + }, + { + "artist": "Lords Of The Underground", + "position": 78, + "title": "Tic Toc" + }, + { + "artist": "The Rolling Stones", + "position": 79, + "title": "Out Of Tears" + }, + { + "artist": "Reba McEntire", + "position": 80, + "title": "Till You Love Me" + }, + { + "artist": "Sheryl Crow", + "position": 81, + "title": "Strong Enough" + }, + { + "artist": "Steve Perry", + "position": 82, + "title": "Missing You" + }, + { + "artist": "The Flaming Lips", + "position": 83, + "title": "She Don t Use Jelly" + }, + { + "artist": "Huey Lewis", + "position": 84, + "title": "But It s Alright" + }, + { + "artist": "Tevin Campbell", + "position": 85, + "title": "Don t Say Goodbye Girl" + }, + { + "artist": "Shaquille O Neal", + "position": 86, + "title": "Biological Didn t Bother" + }, + { + "artist": "Anita Baker", + "position": 87, + "title": "I Apologize" + }, + { + "artist": "Joshua Kadison", + "position": 88, + "title": "Picture Postcards From L.A." + }, + { + "artist": "Nine", + "position": 89, + "title": "Whutcha Want?" + }, + { + "artist": "Lil Suzy", + "position": 90, + "title": "Promise Me" + }, + { + "artist": "Jeff Foxworthy", + "position": 91, + "title": "Redneck Stomp" + }, + { + "artist": "Freedy Johnston", + "position": 92, + "title": "Bad Reputation" + }, + { + "artist": "Dru Down", + "position": 93, + "title": "Pimp Of The Year" + }, + { + "artist": "The Murmurs", + "position": 94, + "title": "You Suck" + }, + { + "artist": "Liz Phair", + "position": 95, + "title": "Supernova" + }, + { + "artist": "Fu-Schnickens", + "position": 96, + "title": "Breakdown" + }, + { + "artist": "Weezer", + "position": 97, + "title": "Undone - The Sweater Song" + }, + { + "artist": "Tracy Lawrence", + "position": 98, + "title": "I See It Now" + }, + { + "artist": "Anita Baker", + "position": 99, + "title": "Body" + }, + { + "artist": "Doctor Dre", + "position": 100, + "title": "Back Up Off Me!" + } + ], + "title": "1994 - Hot 100" + }, + { + "songs": [ + { + "artist": "Doug Supernaw", + "position": 1, + "title": "I Don't Call Him Daddy" + }, + { + "artist": "Trisha Yearwood", + "position": 2, + "title": "The Song Remembers When" + }, + { + "artist": "Dwight Yoakam", + "position": 3, + "title": "Fast As You" + }, + { + "artist": "Tanya Tucker", + "position": 4, + "title": "Soon" + }, + { + "artist": "Sawyer Brown", + "position": 5, + "title": "The Boys & Me" + }, + { + "artist": "Faith Hill", + "position": 6, + "title": "Wild One" + }, + { + "artist": "Doug Stone", + "position": 7, + "title": "I Never Knew Love" + }, + { + "artist": "Wynonna", + "position": 8, + "title": "Is It Over Yet" + }, + { + "artist": "Billy Ray Cyrus", + "position": 9, + "title": "Somebody New" + }, + { + "artist": "Clay Walker", + "position": 10, + "title": "Live Until I Die" + }, + { + "artist": "Shenandoah", + "position": 11, + "title": "I Want To Be Loved Like That" + }, + { + "artist": "Little Texas", + "position": 12, + "title": "God Blessed Texas" + }, + { + "artist": "Clint Black", + "position": 13, + "title": "State Of Mind" + }, + { + "artist": "Joe Diffie", + "position": 14, + "title": "John Deere Green" + }, + { + "artist": "Sammy Kershaw", + "position": 15, + "title": "Queen Of My Double Wide Trailer" + }, + { + "artist": "John Michael Montgomery", + "position": 16, + "title": "I Swear" + }, + { + "artist": "Toby Keith", + "position": 17, + "title": "A Little Less Talk And A Lot More Action" + }, + { + "artist": "Boy Howdy", + "position": 18, + "title": "She'd Give Anything" + }, + { + "artist": "Patty Loveless", + "position": 19, + "title": "You Will" + }, + { + "artist": "Aaron Tippin", + "position": 20, + "title": "The Call Of The Wild" + }, + { + "artist": "Tracy Lawrence", + "position": 21, + "title": "My Second Home" + }, + { + "artist": "John Berry", + "position": 22, + "title": "Kiss Me In The Car" + }, + { + "artist": "Garth Brooks", + "position": 23, + "title": "American Honky-Tonk Bar Association" + }, + { + "artist": "Hal Ketchum", + "position": 24, + "title": "Someplace Far Away (Careful What You're Dreaming)" + }, + { + "artist": "Billy Dean", + "position": 25, + "title": "We Just Disagree" + } + ], + "title": "1993 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Mariah Carey", + "position": 1, + "title": "Hero" + }, + { + "artist": "Janet Jackson", + "position": 2, + "title": "Again" + }, + { + "artist": "Ace Of Base", + "position": 3, + "title": "All That She Wants" + }, + { + "artist": "Meat Loaf", + "position": 4, + "title": "I'd Do Anything For Love (But I Won't Do That)" + }, + { + "artist": "Bryan Adams/Rod Stewart/Sting", + "position": 5, + "title": "All For Love" + }, + { + "artist": "DRS", + "position": 6, + "title": "Gangsta Lean" + }, + { + "artist": "Salt-N-Pepa", + "position": 7, + "title": "Shoop" + }, + { + "artist": "Toni Braxton", + "position": 8, + "title": "Breathe Again" + }, + { + "artist": "Snoop Dogg", + "position": 9, + "title": "What's My Name?" + }, + { + "artist": "Michael Bolton", + "position": 10, + "title": "Said I Loved You...But I Lied" + }, + { + "artist": "Bryan Adams", + "position": 11, + "title": "Please Forgive Me" + }, + { + "artist": "Tevin Campbell", + "position": 12, + "title": "Can We Talk" + }, + { + "artist": "Tag Team", + "position": 13, + "title": "Whoomp! (There It Is)" + }, + { + "artist": "Xscape", + "position": 14, + "title": "Just Kickin' It" + }, + { + "artist": "2Pac", + "position": 15, + "title": "Keep Ya Head Up" + }, + { + "artist": "The Cranberries", + "position": 16, + "title": "Linger" + }, + { + "artist": "Zhane", + "position": 17, + "title": "Hey Mr. D.J." + }, + { + "artist": "10,000 Maniacs", + "position": 18, + "title": "Because The Night" + }, + { + "artist": "Domino", + "position": 19, + "title": "Getto Jam" + }, + { + "artist": "Culture Beat", + "position": 20, + "title": "Mr. Vain" + }, + { + "artist": "Babyface", + "position": 21, + "title": "Never Keeping Secrets" + }, + { + "artist": "Haddaway", + "position": 22, + "title": "What Is Love" + }, + { + "artist": "Jodeci", + "position": 23, + "title": "Cry For You" + }, + { + "artist": "Jimmy Cliff", + "position": 24, + "title": "I Can See Clearly Now (From \"Cool Runnings\")" + }, + { + "artist": "K7", + "position": 25, + "title": "Come Baby Come" + }, + { + "artist": "Mariah Carey", + "position": 26, + "title": "Dreamlover" + }, + { + "artist": "R. Kelly", + "position": 27, + "title": "Sex Me (Parts I & II)" + }, + { + "artist": "Celine Dion", + "position": 28, + "title": "The Power Of Love" + }, + { + "artist": "Billy Joel", + "position": 29, + "title": "All About Soul" + }, + { + "artist": "Hi-Five", + "position": 30, + "title": "Never Should've Let You Go (From \"Sister Act 2\")" + }, + { + "artist": "Color Me Badd", + "position": 31, + "title": "Time And Chance" + }, + { + "artist": "Gabrielle", + "position": 32, + "title": "Dreams" + }, + { + "artist": "Joshua Kadison", + "position": 33, + "title": "Jessie" + }, + { + "artist": "Queen Latifah", + "position": 34, + "title": "U.N.I.T.Y." + }, + { + "artist": "Aerosmith", + "position": 35, + "title": "Cryin'" + }, + { + "artist": "Tony Toni Tone", + "position": 36, + "title": "Anniversary" + }, + { + "artist": "Phil Collins", + "position": 37, + "title": "Both Sides Of The Story" + }, + { + "artist": "Billy Joel", + "position": 38, + "title": "The River Of Dreams" + }, + { + "artist": "Shaquille O'Neal", + "position": 39, + "title": "(I Know I Got) Skillz" + }, + { + "artist": "Inner Circle", + "position": 40, + "title": "Sweat (A La La La La Long)" + }, + { + "artist": "Blind Melon", + "position": 41, + "title": "No Rain" + }, + { + "artist": "Xscape", + "position": 42, + "title": "Understanding" + }, + { + "artist": "Janet Jackson", + "position": 43, + "title": "If" + }, + { + "artist": "Zapp & Roger", + "position": 44, + "title": "Slow And Easy" + }, + { + "artist": "Aerosmith", + "position": 45, + "title": "Amazing" + }, + { + "artist": "Gin Blossoms", + "position": 46, + "title": "Found Out About You" + }, + { + "artist": "Mr. Big", + "position": 47, + "title": "Wild World" + }, + { + "artist": "Toni Braxton", + "position": 48, + "title": "Another Sad Love Song" + }, + { + "artist": "Eazy-E", + "position": 49, + "title": "Real Muthaphuckkin G's" + }, + { + "artist": "Def Leppard", + "position": 50, + "title": "Two Steps Behind (From \"Last Action Hero\")" + }, + { + "artist": "UB40", + "position": 51, + "title": "Higher Ground" + }, + { + "artist": "Rod Stewart", + "position": 52, + "title": "Reason To Believe" + }, + { + "artist": "Boyz II Men", + "position": 53, + "title": "Let It Snow" + }, + { + "artist": "US 3", + "position": 54, + "title": "Cantaloop (Flip Fantasia)" + }, + { + "artist": "A Tribe Called Quest", + "position": 55, + "title": "Award Tour" + }, + { + "artist": "Elton John & Kiki Dee", + "position": 56, + "title": "True Love" + }, + { + "artist": "Intro", + "position": 57, + "title": "Come Inside" + }, + { + "artist": "Lisette Melendez", + "position": 58, + "title": "Goody Goody" + }, + { + "artist": "Def Leppard", + "position": 59, + "title": "Miss You In A Heartbeat" + }, + { + "artist": "Collage", + "position": 60, + "title": "I'll Be Loving You" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 61, + "title": "Soul To Squeeze (From \"Coneheads\")" + }, + { + "artist": "Rick Astley", + "position": 62, + "title": "Hopelessly" + }, + { + "artist": "Das EFX", + "position": 63, + "title": "Freakit" + }, + { + "artist": "R.E.M.", + "position": 64, + "title": "Everybody Hurts" + }, + { + "artist": "Little Texas", + "position": 65, + "title": "God Blessed Texas" + }, + { + "artist": "U2", + "position": 66, + "title": "Stay (Faraway, So Close!)" + }, + { + "artist": "The Lemonheads", + "position": 67, + "title": "Into Your Arms" + }, + { + "artist": "Expose", + "position": 68, + "title": "As Long As I Can Dream" + }, + { + "artist": "The Breeders", + "position": 69, + "title": "Cannonball" + }, + { + "artist": "Shai", + "position": 70, + "title": "Yours" + }, + { + "artist": "The Goodmen", + "position": 71, + "title": "Give It Up" + }, + { + "artist": "Kenny G", + "position": 72, + "title": "Sentimental" + }, + { + "artist": "Mista Grimm", + "position": 73, + "title": "Indo Smoke (From \"Poetic Justice\")" + }, + { + "artist": "Ice Cube", + "position": 74, + "title": "Really Doe" + }, + { + "artist": "Wu-Tang Clan", + "position": 75, + "title": "Method Man" + }, + { + "artist": "Jade", + "position": 76, + "title": "Looking For Mr. Do Right" + }, + { + "artist": "Taylor Dayne", + "position": 77, + "title": "Send Me A Lover" + }, + { + "artist": "Dr. Dre", + "position": 78, + "title": "Let Me Ride" + }, + { + "artist": "Lisa Keith", + "position": 79, + "title": "Better Than You" + }, + { + "artist": "Dwight Yoakam", + "position": 80, + "title": "Fast As You" + }, + { + "artist": "Souls Of Mischief", + "position": 81, + "title": "93 'Til Infinity" + }, + { + "artist": "Jazzy Jeff & The Fresh Prince", + "position": 82, + "title": "I'm Looking For The One (To Be With Me)" + }, + { + "artist": "Haddaway", + "position": 83, + "title": "Life (Everybody Needs Somebody To Love)" + }, + { + "artist": "Chantay Savage", + "position": 84, + "title": "Betcha'll Never Find" + }, + { + "artist": "Trisha Yearwood", + "position": 85, + "title": "The Song Remembers When" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 86, + "title": "Mary Jane's Last Dance" + }, + { + "artist": "Heart", + "position": 87, + "title": "Will You Be There (In The Morning)" + }, + { + "artist": "Kate Bush", + "position": 88, + "title": "Rubberband Girl" + }, + { + "artist": "Rozalla", + "position": 89, + "title": "I Love Music (From \"Carlito's Way\")" + }, + { + "artist": "Robin S.", + "position": 90, + "title": "Love For Love" + }, + { + "artist": "Joe Diffie", + "position": 91, + "title": "John Deere Green" + }, + { + "artist": "Kris Kross", + "position": 92, + "title": "I'm Real" + }, + { + "artist": "Reality", + "position": 93, + "title": "Yolanda" + }, + { + "artist": "RAab", + "position": 94, + "title": "Foreplay" + }, + { + "artist": "Bell Biv Devoe", + "position": 95, + "title": "Something In Your Eyes" + }, + { + "artist": "Nightcrawlers", + "position": 96, + "title": "Push The Feeling On" + }, + { + "artist": "Clay Walker", + "position": 97, + "title": "What's It To You" + }, + { + "artist": "Lords Of The Underground", + "position": 98, + "title": "Here Come The Lords" + }, + { + "artist": "Inner Circle", + "position": 99, + "title": "Rock With You" + }, + { + "artist": "MC Ren", + "position": 100, + "title": "Same Ol' Shit" + } + ], + "title": "1993 - Hot 100" + }, + { + "songs": [ + { + "artist": "Vince Gill", + "position": 1, + "title": "Don t Let Our Love Start Slippin Away" + }, + { + "artist": "Alan Jackson", + "position": 2, + "title": "She s Got The Rhythm (And I Got The Blues)" + }, + { + "artist": "Garth Brooks", + "position": 3, + "title": "Somewhere Other Than The Night" + }, + { + "artist": "Hal Ketchum", + "position": 4, + "title": "Sure Love" + }, + { + "artist": "Clint Black", + "position": 5, + "title": "Burn One Down" + }, + { + "artist": "George Strait", + "position": 6, + "title": "I Cross My Heart" + }, + { + "artist": "Trisha Yearwood", + "position": 7, + "title": "Walkaway Joe" + }, + { + "artist": "Brooks", + "position": 8, + "title": "Lost And Found" + }, + { + "artist": "Restless Heart", + "position": 9, + "title": "When She Cries" + }, + { + "artist": "Tracy Lawrence", + "position": 10, + "title": "Somebody Paints The Wall" + }, + { + "artist": "Randy Travis", + "position": 11, + "title": "Look Heart, No Hands" + }, + { + "artist": "Lee Roy Parnell", + "position": 12, + "title": "Love Without Mercy" + }, + { + "artist": "Reba McEntire", + "position": 13, + "title": "Take It Back" + }, + { + "artist": "Sammy Kershaw", + "position": 14, + "title": "Anywhere But Here" + }, + { + "artist": "John Michael Montgomery", + "position": 15, + "title": "Life s A Dance" + }, + { + "artist": "Ricky Van Shelton", + "position": 16, + "title": "Wild Man" + }, + { + "artist": "Doug Stone", + "position": 17, + "title": "Too Busy Being In Love" + }, + { + "artist": "Tanya Tucker", + "position": 18, + "title": "Two Sparrows In A Hurricane" + }, + { + "artist": "Alabama", + "position": 19, + "title": "I m In A Hurry (And Don t Know Why)" + }, + { + "artist": "Diamond Rio", + "position": 20, + "title": "In A Week Or Two" + }, + { + "artist": "Little Texas", + "position": 21, + "title": "What Were You Thinkin" + }, + { + "artist": "Travis Tritt", + "position": 22, + "title": "Can I Trust You With My Heart" + }, + { + "artist": "Chris LeDoux", + "position": 23, + "title": "Cadillac Ranch" + }, + { + "artist": "John Anderson", + "position": 24, + "title": "Let Go Of The Stone" + }, + { + "artist": "Wynonna", + "position": 25, + "title": "My Strongest Weakness" + } + ], + "title": "1992 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Whitney Houston", + "position": 1, + "title": "I Will Always Love You (From \"The Bodyguard\")" + }, + { + "artist": "Wreckx-N-Effect", + "position": 2, + "title": "Rump Shaker" + }, + { + "artist": "Shai", + "position": 3, + "title": "If I Ever Fall In Love" + }, + { + "artist": "Boyz II Men", + "position": 4, + "title": "In The Still Of The Nite (From \"The Jacksons\")" + }, + { + "artist": "P.M. Dawn", + "position": 5, + "title": "I d Die Without You (From \"Boomerang\")" + }, + { + "artist": "Snap", + "position": 6, + "title": "Rhythm Is A Dancer" + }, + { + "artist": "Bobby Brown", + "position": 7, + "title": "Good Enough" + }, + { + "artist": "Shanice", + "position": 8, + "title": "Saving Forever For You (From \"Beverly Hills, 90210\")" + }, + { + "artist": "The Heights", + "position": 9, + "title": "How Do You Talk To An Angel" + }, + { + "artist": "Mary J. Blige", + "position": 10, + "title": "Real Love" + }, + { + "artist": "TLC", + "position": 11, + "title": "What About Your Friends" + }, + { + "artist": "Michael Bolton", + "position": 12, + "title": "To Love Somebody" + }, + { + "artist": "Madonna", + "position": 13, + "title": "Deeper And Deeper" + }, + { + "artist": "Saigon Kick", + "position": 14, + "title": "Love Is On The Way" + }, + { + "artist": "Jon Secada", + "position": 15, + "title": "Do You Believe In Us" + }, + { + "artist": "Eric Clapton", + "position": 16, + "title": "Layla" + }, + { + "artist": "Spin Doctors", + "position": 17, + "title": "Little Miss Can t Be Wrong" + }, + { + "artist": "Restless Heart", + "position": 18, + "title": "When She Cries" + }, + { + "artist": "Go West", + "position": 19, + "title": "Faithful" + }, + { + "artist": "Annie Lennox", + "position": 20, + "title": "Walking On Broken Glass" + }, + { + "artist": "Boyz II Men", + "position": 21, + "title": "End Of The Road (From \"Boomerang\")" + }, + { + "artist": "Mad Cobra", + "position": 22, + "title": "Flex" + }, + { + "artist": "Damn Yankees", + "position": 23, + "title": "Where You Goin Now" + }, + { + "artist": "N2Deep", + "position": 24, + "title": "Back To The Hotel" + }, + { + "artist": "Genesis", + "position": 25, + "title": "Never A Time" + }, + { + "artist": "Elton John", + "position": 26, + "title": "The Last Song" + }, + { + "artist": "Charles", + "position": 27, + "title": "Would I Lie To You?" + }, + { + "artist": "R.E.M.", + "position": 28, + "title": "Drive" + }, + { + "artist": "Prince And The New Power Generation", + "position": 29, + "title": "7" + }, + { + "artist": "Patty Smyth", + "position": 30, + "title": "Sometimes Love Just Ain t Enough" + }, + { + "artist": "Portrait", + "position": 31, + "title": "Here We Go Again!" + }, + { + "artist": "House Of Pain", + "position": 32, + "title": "Jump Around" + }, + { + "artist": "Expose", + "position": 33, + "title": "I Wish The Phone Would Ring" + }, + { + "artist": "Toad The Wet Sprocket", + "position": 34, + "title": "Walk On The Ocean" + }, + { + "artist": "U2", + "position": 35, + "title": "Who s Gonna Ride Your Wild Horses" + }, + { + "artist": "Arrested Development", + "position": 36, + "title": "People Everyday" + }, + { + "artist": "Bon Jovi", + "position": 37, + "title": "Keep The Faith" + }, + { + "artist": "En Vogue", + "position": 38, + "title": "Give It Up, Turn It Loose" + }, + { + "artist": "Lo-Key?", + "position": 39, + "title": "I Got A Thang 4 Ya!" + }, + { + "artist": "En Vogue", + "position": 40, + "title": "Free Your Mind" + }, + { + "artist": "Bell Biv Devoe", + "position": 41, + "title": "Gangsta" + }, + { + "artist": "Peabo Bryson", + "position": 42, + "title": "A Whole New World (Aladdin s Theme)" + }, + { + "artist": "The S.O.U.L. S.Y.S.T.E.M.", + "position": 43, + "title": "It s Gonna Be A Lovely Day" + }, + { + "artist": "TLC", + "position": 44, + "title": "Baby-Baby-Baby" + }, + { + "artist": "Shabba Ranks (Featuring Johnny Gill)", + "position": 45, + "title": "Slow And Sexy" + }, + { + "artist": "Toni Braxton", + "position": 46, + "title": "Love Shoulda Brought You Home (From \"Boomerang\")" + }, + { + "artist": "Trey Lorenz", + "position": 47, + "title": "Someone To Hold" + }, + { + "artist": "Jon Secada", + "position": 48, + "title": "Just Another Day" + }, + { + "artist": "Sade", + "position": 49, + "title": "No Ordinary Love" + }, + { + "artist": "Celine Dion", + "position": 50, + "title": "Love Can Move Mountains" + }, + { + "artist": "Def Leppard", + "position": 51, + "title": "Have You Ever Needed Someone So Bad" + }, + { + "artist": "Dan Baird", + "position": 52, + "title": "I Love You Period" + }, + { + "artist": "Arrested Development", + "position": 53, + "title": "Mr. Wendal" + }, + { + "artist": "Michael Jackson", + "position": 54, + "title": "Heal The World" + }, + { + "artist": "After 7", + "position": 55, + "title": "Baby I m For Real/Natural High" + }, + { + "artist": "Hi-Five", + "position": 56, + "title": "Quality Time" + }, + { + "artist": "Mary J. Blige", + "position": 57, + "title": "Reminisce" + }, + { + "artist": "Shakespear s Sister", + "position": 58, + "title": "I Don t Care" + }, + { + "artist": "Madonna", + "position": 59, + "title": "Erotica" + }, + { + "artist": "Def Leppard", + "position": 60, + "title": "Stand Up (Kick Love Into Motion)" + }, + { + "artist": "Father M.C.", + "position": 61, + "title": "Everything s Gonna Be Alright" + }, + { + "artist": "Paperboy", + "position": 62, + "title": "Ditty" + }, + { + "artist": "Michael W. Smith", + "position": 63, + "title": "I Will Be Here For You" + }, + { + "artist": "Color Me Badd", + "position": 64, + "title": "Forever Love (From \"Mo Money\")" + }, + { + "artist": "Peter Gabriel", + "position": 65, + "title": "Steam" + }, + { + "artist": "10,000 Maniacs", + "position": 66, + "title": "These Are Days" + }, + { + "artist": "House Of Pain", + "position": 67, + "title": "Shamrocks And Shenanigans (Boom Shalock Lock Boom)" + }, + { + "artist": "Lighter Shade Of Brown", + "position": 68, + "title": "Homies" + }, + { + "artist": "The Soup Dragons", + "position": 69, + "title": "Pleasure" + }, + { + "artist": "Chuckii Booker", + "position": 70, + "title": "Games" + }, + { + "artist": "Firehouse", + "position": 71, + "title": "When I Look Into Your Eyes" + }, + { + "artist": "Positive K", + "position": 72, + "title": "I Got A Man" + }, + { + "artist": "George LaMond", + "position": 73, + "title": "Baby, I Believe In You" + }, + { + "artist": "Goddess", + "position": 74, + "title": "Sexual" + }, + { + "artist": "Classic Example", + "position": 75, + "title": "It s Alright (From \"South Central\")" + }, + { + "artist": "Jade", + "position": 76, + "title": "Don t Walk Away" + }, + { + "artist": "Richard Marx", + "position": 77, + "title": "Chains Around My Heart" + }, + { + "artist": "Al B. Sure!", + "position": 78, + "title": "Right Now" + }, + { + "artist": "Jeremy Jordan", + "position": 79, + "title": "The Right Kind Of Love (From \"Beverly Hills, 90210\")" + }, + { + "artist": "Kenny G", + "position": 80, + "title": "Forever In Love" + }, + { + "artist": "Kris Kross", + "position": 81, + "title": "I Missed The Bus" + }, + { + "artist": "Ice Cube", + "position": 82, + "title": "Wicked" + }, + { + "artist": "Smart E s", + "position": 83, + "title": "Sesame s Treet" + }, + { + "artist": "Wynonna", + "position": 84, + "title": "No One Else On Earth" + }, + { + "artist": "Megadeth", + "position": 85, + "title": "Symphony Of Destruction" + }, + { + "artist": "Guns N Roses", + "position": 86, + "title": "Yesterdays" + }, + { + "artist": "Bad Company", + "position": 87, + "title": "This Could Be The One" + }, + { + "artist": "Sound Factory", + "position": 88, + "title": "Understand This Groove" + }, + { + "artist": "Billy Ray Cyrus", + "position": 89, + "title": "Could ve Been Me" + }, + { + "artist": "Home Team", + "position": 90, + "title": "Pick It Up" + }, + { + "artist": "Cathy Dennis", + "position": 91, + "title": "Irresistible" + }, + { + "artist": "Chante Moore", + "position": 92, + "title": "Love s Taken Over" + }, + { + "artist": "Patty Smyth", + "position": 93, + "title": "No Mistakes" + }, + { + "artist": "Firehouse", + "position": 94, + "title": "Sleeping With You" + }, + { + "artist": "R. Kelly", + "position": 95, + "title": "Slow Dance (Hey Mr. DJ)" + }, + { + "artist": "Grand Puba", + "position": 96, + "title": "360 Degrees (What Goes Around)" + }, + { + "artist": "CeCe Peniston", + "position": 97, + "title": "Crazy Love" + }, + { + "artist": "AB Logic", + "position": 98, + "title": "Get Up (Move Boy Move)" + }, + { + "artist": "Arrested Development", + "position": 99, + "title": "Revolution (From \"Malcolm X\")" + }, + { + "artist": "Tevin Campbell", + "position": 100, + "title": "Alone With You" + } + ], + "title": "1992 - Hot 100" + }, + { + "songs": [ + { + "artist": "Brooks", + "position": 1, + "title": "My Next Broken Heart" + }, + { + "artist": "Reba McEntire", + "position": 2, + "title": "For My Broken Heart" + }, + { + "artist": "Collin Raye", + "position": 3, + "title": "Love, Me" + }, + { + "artist": "Restless Heart", + "position": 4, + "title": "You Can Depend On Me" + }, + { + "artist": "George Strait", + "position": 5, + "title": "The Chill Of An Early Fall" + }, + { + "artist": "Vince Gill", + "position": 6, + "title": "Look At Us" + }, + { + "artist": "Steve Wariner", + "position": 7, + "title": "Leave Him Out Of This" + }, + { + "artist": "Billy Dean", + "position": 8, + "title": "You Don t Count The Cost" + }, + { + "artist": "Tanya Tucker", + "position": 9, + "title": "(Without You) What Do I Do With Me" + }, + { + "artist": "Tracy Lawrence", + "position": 10, + "title": "Sticks And Stones" + }, + { + "artist": "Sammy Kershaw", + "position": 11, + "title": "Cadillac Style" + }, + { + "artist": "Garth Brooks", + "position": 12, + "title": "Shameless" + }, + { + "artist": "Little Texas", + "position": 13, + "title": "Some Guys Have All The Love" + }, + { + "artist": "The Remingtons", + "position": 14, + "title": "A Long Time Ago" + }, + { + "artist": "Doug Stone", + "position": 15, + "title": "A Jukebox With A Country Song" + }, + { + "artist": "Alabama", + "position": 16, + "title": "Then Again" + }, + { + "artist": "Randy Travis", + "position": 17, + "title": "Forever Together" + }, + { + "artist": "Mary Chapin Carpenter", + "position": 18, + "title": "Going Out Tonight" + }, + { + "artist": "Hal Ketchum", + "position": 19, + "title": "I Know Where Love Lives" + }, + { + "artist": "Sawyer Brown", + "position": 20, + "title": "The Dirt Road" + }, + { + "artist": "Suzy Bogguss", + "position": 21, + "title": "Someday Soon" + }, + { + "artist": "Mark Chesnutt", + "position": 22, + "title": "Broken Promise Land" + }, + { + "artist": "Travis Tritt With Marty Stuart", + "position": 23, + "title": "The Whiskey Ain t Workin" + }, + { + "artist": "Rob Crosby", + "position": 24, + "title": "Still Burnin For You" + }, + { + "artist": "Travis Tritt", + "position": 25, + "title": "Anymore" + } + ], + "title": "1991 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Michael Jackson", + "position": 1, + "title": "Black Or White" + }, + { + "artist": "Boyz II Men", + "position": 2, + "title": "It s So Hard To Say Goodbye To Yesterday" + }, + { + "artist": "Color Me Badd", + "position": 3, + "title": "All 4 Love" + }, + { + "artist": "P.M. Dawn", + "position": 4, + "title": "Set Adrift On Memory Bliss" + }, + { + "artist": "Michael Bolton", + "position": 5, + "title": "When A Man Loves A Woman" + }, + { + "artist": "Mariah Carey", + "position": 6, + "title": "Can t Let Go" + }, + { + "artist": "Paula Abdul", + "position": 7, + "title": "Blowing Kisses In The Wind" + }, + { + "artist": "CeCe Peniston", + "position": 8, + "title": "Finally" + }, + { + "artist": "M.C. Hammer", + "position": 9, + "title": "2 Legit 2 Quit" + }, + { + "artist": "Marky Mark", + "position": 10, + "title": "Wildside" + }, + { + "artist": "Amy Grant", + "position": 11, + "title": "That s What Love Is For" + }, + { + "artist": "Richard Marx", + "position": 12, + "title": "Keep Coming Back" + }, + { + "artist": "Genesis", + "position": 13, + "title": "No Son Of Mine" + }, + { + "artist": "Prince And The N.P.G.", + "position": 14, + "title": "Cream" + }, + { + "artist": "Naughty By Nature", + "position": 15, + "title": "O.P.P." + }, + { + "artist": "Salt-N-Pepa", + "position": 16, + "title": "Let s Talk About Sex" + }, + { + "artist": "Nirvana", + "position": 17, + "title": "Smells Like Teen Spirit" + }, + { + "artist": "Guns N Roses", + "position": 18, + "title": "Don t Cry" + }, + { + "artist": "George Michael/Elton John", + "position": 19, + "title": "Don t Let The Sun Go Down On Me" + }, + { + "artist": "M.C. Hammer", + "position": 20, + "title": "Addams Groove" + }, + { + "artist": "Bryan Adams", + "position": 21, + "title": "Can t Stop This Thing We Started" + }, + { + "artist": "Gloria Estefan", + "position": 22, + "title": "Live For Loving You" + }, + { + "artist": "Roberta Flack With Maxi Priest", + "position": 23, + "title": "Set The Night To Music" + }, + { + "artist": "Rod Stewart", + "position": 24, + "title": "Broken Arrow" + }, + { + "artist": "Shanice", + "position": 25, + "title": "I Love Your Smile" + }, + { + "artist": "U2", + "position": 26, + "title": "Mysterious Ways" + }, + { + "artist": "Natural Selection", + "position": 27, + "title": "Do Anything" + }, + { + "artist": "Jodeci", + "position": 28, + "title": "Forever My Lady" + }, + { + "artist": "Karyn White", + "position": 29, + "title": "Romantic" + }, + { + "artist": "Prince And The N.P.G.", + "position": 30, + "title": "Diamonds And Pearls" + }, + { + "artist": "Lisa Stansfield", + "position": 31, + "title": "Change" + }, + { + "artist": "Tevin Campbell", + "position": 32, + "title": "Tell Me What You Want Me To Do" + }, + { + "artist": "Nia Peeples", + "position": 33, + "title": "Street Of Dreams" + }, + { + "artist": "Roxette", + "position": 34, + "title": "Spending My Time" + }, + { + "artist": "Karyn White", + "position": 35, + "title": "The Way I Feel About You" + }, + { + "artist": "Stacy Earl", + "position": 36, + "title": "Love Me All Up" + }, + { + "artist": "Mariah Carey", + "position": 37, + "title": "Emotions" + }, + { + "artist": "Angelica", + "position": 38, + "title": "Angel Baby" + }, + { + "artist": "Geto Boys", + "position": 39, + "title": "Mind Playing Tricks On Me" + }, + { + "artist": "Cher", + "position": 40, + "title": "Save Up All Your Tears" + }, + { + "artist": "Keith Sweat", + "position": 41, + "title": "Keep It Comin" + }, + { + "artist": "Tracie Spencer", + "position": 42, + "title": "Tender Kisses" + }, + { + "artist": "Vanessa Williams", + "position": 43, + "title": "Running Back To You" + }, + { + "artist": "Motley Crue", + "position": 44, + "title": "Home Sweet Home" + }, + { + "artist": "The Storm", + "position": 45, + "title": "I ve Got A Lot To Learn About Love" + }, + { + "artist": "Curtis Stigers", + "position": 46, + "title": "I Wonder Why" + }, + { + "artist": "Metallica", + "position": 47, + "title": "Enter Sandman" + }, + { + "artist": "Van Halen", + "position": 48, + "title": "Top Of The World" + }, + { + "artist": "Shabba Ranks/Maxi Priest", + "position": 49, + "title": "Housecall" + }, + { + "artist": "Heavy D", + "position": 50, + "title": "Is It Good To You" + }, + { + "artist": "Kym Sims", + "position": 51, + "title": "Too Blind To See It" + }, + { + "artist": "D.J. Jazzy Jeff", + "position": 52, + "title": "Ring My Bell" + }, + { + "artist": "Metallica", + "position": 53, + "title": "The Unforgiven" + }, + { + "artist": "Lita Ford", + "position": 54, + "title": "Shot Of Poison" + }, + { + "artist": "The Party", + "position": 55, + "title": "In My Dreams" + }, + { + "artist": "Bonnie Raitt", + "position": 56, + "title": "I Can t Make You Love Me" + }, + { + "artist": "Scorpions", + "position": 57, + "title": "Send Me An Angel" + }, + { + "artist": "Public Enemy", + "position": 58, + "title": "Can t Truss It" + }, + { + "artist": "Natural Selection", + "position": 59, + "title": "Hearts Don t Think (They Feel)" + }, + { + "artist": "Firehouse", + "position": 60, + "title": "All She Wrote" + }, + { + "artist": "Icy Blu", + "position": 61, + "title": "I Wanna Be Your Girl" + }, + { + "artist": "Kid N Play", + "position": 62, + "title": "Ain t Gonna Hurt Nobody" + }, + { + "artist": "Lighter Shade Of Brown", + "position": 63, + "title": "On A Sunday Afternoon" + }, + { + "artist": "Digital Underground", + "position": 64, + "title": "Kiss You Back" + }, + { + "artist": "C+C Music Factory Presents Zelma Davis", + "position": 65, + "title": "Just A Touch Of Love" + }, + { + "artist": "The Farm", + "position": 66, + "title": "Groovy Train" + }, + { + "artist": "Right Said Fred", + "position": 67, + "title": "I m Too Sexy" + }, + { + "artist": "Lisette Melendez", + "position": 68, + "title": "A Day In My Life (Without You)" + }, + { + "artist": "M.C. Breed", + "position": 69, + "title": "Ain t No Future In Yo Fronting" + }, + { + "artist": "Vanessa Williams", + "position": 70, + "title": "The Comfort Zone" + }, + { + "artist": "Jody Watley", + "position": 71, + "title": "I Want You" + }, + { + "artist": "The 2 Live Crew", + "position": 72, + "title": "Pop That Coochie" + }, + { + "artist": "Ozzy Osbourne", + "position": 73, + "title": "No More Tears" + }, + { + "artist": "Corina", + "position": 74, + "title": "Whispers" + }, + { + "artist": "Atlantic Starr", + "position": 75, + "title": "Love Crazy" + }, + { + "artist": "Laissez Faire", + "position": 76, + "title": "In Paradise" + }, + { + "artist": "Voyce", + "position": 77, + "title": "Within My Heart" + }, + { + "artist": "Boyz II Men", + "position": 78, + "title": "Uhh Ahh" + }, + { + "artist": "John Mellencamp", + "position": 79, + "title": "Get A Leg Up" + }, + { + "artist": "Tone-Loc", + "position": 80, + "title": "All Through The Night" + }, + { + "artist": "Kenny Loggins", + "position": 81, + "title": "Conviction Of The Heart" + }, + { + "artist": "Mr. Big", + "position": 82, + "title": "To Be With You" + }, + { + "artist": "Big Audio", + "position": 83, + "title": "Rush" + }, + { + "artist": "Jesus Jones", + "position": 84, + "title": "Real Real Real" + }, + { + "artist": "Eddie Money", + "position": 85, + "title": "I ll Get By" + }, + { + "artist": "Bette Midler", + "position": 86, + "title": "Every Road Leads Back To You" + }, + { + "artist": "Bryan Adams", + "position": 87, + "title": "There Will Never Be Another Tonight" + }, + { + "artist": "Prince And The N.P.G.", + "position": 88, + "title": "Insatiable" + }, + { + "artist": "The Shamen", + "position": 89, + "title": "Move Any Mountain" + }, + { + "artist": "Damian Dame", + "position": 90, + "title": "Right Down To It" + }, + { + "artist": "U2", + "position": 91, + "title": "The Fly" + }, + { + "artist": "The KLF", + "position": 92, + "title": "What Time Is Love?" + }, + { + "artist": "Red Hot Chili Peppers", + "position": 93, + "title": "Give It Away" + }, + { + "artist": "Simply Red", + "position": 94, + "title": "Something Got Me Started" + }, + { + "artist": "Guns N Roses", + "position": 95, + "title": "Live And Let Die" + }, + { + "artist": "Cathy Dennis", + "position": 96, + "title": "Everybody Move" + }, + { + "artist": "UB40", + "position": 97, + "title": "Groovin" + }, + { + "artist": "Hi-Five", + "position": 98, + "title": "Just Another Girlfriend" + }, + { + "artist": "EMF", + "position": 99, + "title": "Lies" + }, + { + "artist": "Blue Train", + "position": 100, + "title": "All I Need Is You" + } + ], + "title": "1991 - Hot 100" + }, + { + "songs": [ + { + "artist": "George Strait", + "position": 1, + "title": "I ve Come To Expect It From You" + }, + { + "artist": "Garth Brooks", + "position": 2, + "title": "Unanswered Prayers" + }, + { + "artist": "Vince Gill", + "position": 3, + "title": "Never Knew Lonely" + }, + { + "artist": "Alan Jackson", + "position": 4, + "title": "Chasin That Neon Rainbow" + }, + { + "artist": "Shenandoah", + "position": 5, + "title": "Ghost In This House" + }, + { + "artist": "Clint Black", + "position": 6, + "title": "Put Yourself In My Shoes" + }, + { + "artist": "Alabama", + "position": 7, + "title": "Forever s As Far As I ll Go" + }, + { + "artist": "Ricky Van Shelton", + "position": 8, + "title": "Life s Little Ups And Downs" + }, + { + "artist": "Conway Twitty", + "position": 9, + "title": "Crazy In Love" + }, + { + "artist": "K.T. Oslin", + "position": 10, + "title": "Come Next Monday" + }, + { + "artist": "Tanya Tucker", + "position": 11, + "title": "It Won t Be Me" + }, + { + "artist": "Carlene Carter", + "position": 12, + "title": "Come On Back" + }, + { + "artist": "Reba McEntire", + "position": 13, + "title": "Rumor Has It" + }, + { + "artist": "Paul Overstreet", + "position": 14, + "title": "Daddy s Come Around" + }, + { + "artist": "Kathy Mattea", + "position": 15, + "title": "A Few Good Things Remain" + }, + { + "artist": "Dwight Yoakam", + "position": 16, + "title": "Turn It On, Turn It Up, Turn Me Loose" + }, + { + "artist": "Don Williams", + "position": 17, + "title": "Back In My Younger Days" + }, + { + "artist": "Mary Chapin Carpenter", + "position": 18, + "title": "You Win Again" + }, + { + "artist": "Mark Chesnutt", + "position": 19, + "title": "Brother Jukebox" + }, + { + "artist": "Joe Diffie", + "position": 20, + "title": "Home" + }, + { + "artist": "Doug Stone", + "position": 21, + "title": "These Lips Don t Know How To Say Goodbye" + }, + { + "artist": "Holly Dunn", + "position": 22, + "title": "You Really Had Me Going" + }, + { + "artist": "Rodney Crowell", + "position": 23, + "title": "Now That We re Alone" + }, + { + "artist": "Lee Greenwood", + "position": 24, + "title": "We ve Got It Made" + }, + { + "artist": "Highway 101", + "position": 25, + "title": "Someone Else s Trouble Now" + } + ], + "title": "1990 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Stevie B", + "position": 1, + "title": "Because I Love You (The Postman Song)" + }, + { + "artist": "Madonna", + "position": 2, + "title": "Justify My Love" + }, + { + "artist": "Bette Midler", + "position": 3, + "title": "From A Distance" + }, + { + "artist": "Wilson Phillips", + "position": 4, + "title": "Impulsive" + }, + { + "artist": "DNA Featuring Suzanne Vega", + "position": 5, + "title": "Tom s Diner" + }, + { + "artist": "Damn Yankees", + "position": 6, + "title": "High Enough" + }, + { + "artist": "Whitney Houston", + "position": 7, + "title": "I m Your Baby Tonight" + }, + { + "artist": "George Michael", + "position": 8, + "title": "Freedom" + }, + { + "artist": "UB40", + "position": 9, + "title": "The Way You Do The Things You Do" + }, + { + "artist": "Ralph Tresvant", + "position": 10, + "title": "Sensitivity" + }, + { + "artist": "Janet Jackson", + "position": 11, + "title": "Love Will Never Do (Without You)" + }, + { + "artist": "Jon Bon Jovi", + "position": 12, + "title": "Miracle (From \"Young Guns II\")" + }, + { + "artist": "Poison", + "position": 13, + "title": "Something To Believe In" + }, + { + "artist": "Mariah Carey", + "position": 14, + "title": "Love Takes Time" + }, + { + "artist": "Deee-Lite", + "position": 15, + "title": "Groove Is In The Heart" + }, + { + "artist": "Surface", + "position": 16, + "title": "The First Time" + }, + { + "artist": "Winger", + "position": 17, + "title": "Miles Away" + }, + { + "artist": "Steve Winwood", + "position": 18, + "title": "One And Only Man" + }, + { + "artist": "2 In A Room", + "position": 19, + "title": "Wiggle It" + }, + { + "artist": "Nelson", + "position": 20, + "title": "After The Rain" + }, + { + "artist": "C+C Music Factory", + "position": 21, + "title": "Gonna Make You Sweat" + }, + { + "artist": "Tony Toni Tone", + "position": 22, + "title": "Feels Good" + }, + { + "artist": "Vanilla Ice", + "position": 23, + "title": "Play That Funky Music" + }, + { + "artist": "Cathy Dennis", + "position": 24, + "title": "Just Another Dream" + }, + { + "artist": "Will To Power", + "position": 25, + "title": "I m Not In Love" + }, + { + "artist": "The Outfield", + "position": 26, + "title": "For You" + }, + { + "artist": "Phil Collins", + "position": 27, + "title": "Hang In Long Enough" + }, + { + "artist": "Alias", + "position": 28, + "title": "More Than Words Can Say" + }, + { + "artist": "Elisa Fiorillo", + "position": 29, + "title": "On The Way Up" + }, + { + "artist": "Heart", + "position": 30, + "title": "Stranded" + }, + { + "artist": "Johnny Gill", + "position": 31, + "title": "Fairweather Friend" + }, + { + "artist": "Debbie Gibson", + "position": 32, + "title": "Anything Is Possible" + }, + { + "artist": "Robert Palmer", + "position": 33, + "title": "You re Amazing" + }, + { + "artist": "Dino", + "position": 34, + "title": "Gentle" + }, + { + "artist": "Vanilla Ice", + "position": 35, + "title": "Ice Ice Baby" + }, + { + "artist": "Keith Sweat", + "position": 36, + "title": "I ll Give All My Love To You" + }, + { + "artist": "Donny Osmond", + "position": 37, + "title": "My Love Is A Fire" + }, + { + "artist": "Candyman", + "position": 38, + "title": "Knockin Boots" + }, + { + "artist": "INXS", + "position": 39, + "title": "Disappear" + }, + { + "artist": "Righteous Brothers", + "position": 40, + "title": "Unchained Melody" + }, + { + "artist": "LL Cool J", + "position": 41, + "title": "Around The Way Girl" + }, + { + "artist": "Daryl Hall John Oates", + "position": 42, + "title": "So Close" + }, + { + "artist": "Breathe Featuring David Glasper", + "position": 43, + "title": "Does She Love That Man?" + }, + { + "artist": "Too Short", + "position": 44, + "title": "The Ghetto" + }, + { + "artist": "Elton John", + "position": 45, + "title": "You Gotta Love Someone" + }, + { + "artist": "Warrant", + "position": 46, + "title": "I Saw Red" + }, + { + "artist": "M.C. Hammer", + "position": 47, + "title": "Pray" + }, + { + "artist": "Don Henley", + "position": 48, + "title": "New York Minute" + }, + { + "artist": "Cher", + "position": 49, + "title": "The Shoop Shoop Song (It s In His Kiss)" + }, + { + "artist": "The Black Crowes", + "position": 50, + "title": "Hard To Handle" + }, + { + "artist": "Celine Dion", + "position": 51, + "title": "Where Does My Heart Beat Now" + }, + { + "artist": "Depeche Mode", + "position": 52, + "title": "World In My Eyes" + }, + { + "artist": "Whitney Houston", + "position": 53, + "title": "All The Man That I Need" + }, + { + "artist": "Soho", + "position": 54, + "title": "Hippychick" + }, + { + "artist": "Pebbles", + "position": 55, + "title": "Love Makes Things Happen" + }, + { + "artist": "Bad Company", + "position": 56, + "title": "If You Needed Somebody" + }, + { + "artist": "Bell Biv Devoe", + "position": 57, + "title": "B.B.D. (I Thought It Was Me)?" + }, + { + "artist": "George LaMond (Duet With Brenda K. Starr)", + "position": 58, + "title": "No Matter What" + }, + { + "artist": "James Ingram", + "position": 59, + "title": "I Don t Have The Heart" + }, + { + "artist": "AC/DC", + "position": 60, + "title": "Moneytalks" + }, + { + "artist": "Iggy Pop With Kate Pierson", + "position": 61, + "title": "Candy" + }, + { + "artist": "After 7", + "position": 62, + "title": "Heat Of The Moment" + }, + { + "artist": "Maxi Priest", + "position": 63, + "title": "Close To You" + }, + { + "artist": "Chris Isaak", + "position": 64, + "title": "Wicked Game" + }, + { + "artist": "Guy", + "position": 65, + "title": "I Wanna Get With U" + }, + { + "artist": "Tony Toni Tone", + "position": 66, + "title": "It Never Rains (In Southern California)" + }, + { + "artist": "Cinderella", + "position": 67, + "title": "Shelter Me" + }, + { + "artist": "Black Box", + "position": 68, + "title": "I Don t Know Anybody Else" + }, + { + "artist": "After 7", + "position": 69, + "title": "Can t Stop" + }, + { + "artist": "Joey B. Ellis", + "position": 70, + "title": "Go For It! (Heart And Fire)" + }, + { + "artist": "Jude Cole", + "position": 71, + "title": "House Full Of Reasons" + }, + { + "artist": "Information Society", + "position": 72, + "title": "Think" + }, + { + "artist": "Trixter", + "position": 73, + "title": "Give It To Me Good" + }, + { + "artist": "Styx", + "position": 74, + "title": "Show Me The Way" + }, + { + "artist": "Tevin Campbell", + "position": 75, + "title": "Round And Round" + }, + { + "artist": "Pebbles", + "position": 76, + "title": "Giving You The Benefit" + }, + { + "artist": "Maxi Priest", + "position": 77, + "title": "Just A Little Bit Longer" + }, + { + "artist": "Urban Dance Squad", + "position": 78, + "title": "Deeper Shade Of Soul" + }, + { + "artist": "Oleta Adams", + "position": 79, + "title": "Get Here" + }, + { + "artist": "Billy Joel", + "position": 80, + "title": "And So It Goes" + }, + { + "artist": "Warrant", + "position": 81, + "title": "Cherry Pie" + }, + { + "artist": "TKA Featuring Michelle Visage", + "position": 82, + "title": "Crash (Have Some Fun)" + }, + { + "artist": "Concrete Blonde", + "position": 83, + "title": "Joey" + }, + { + "artist": "Pat", + "position": 84, + "title": "Use It Up And Wear It Out" + }, + { + "artist": "Candyman", + "position": 85, + "title": "Melt In Your Mouth" + }, + { + "artist": "2nu", + "position": 86, + "title": "This Is Ponderous" + }, + { + "artist": "David Cassidy", + "position": 87, + "title": "Lyin To Myself" + }, + { + "artist": "Al B. Sure!", + "position": 88, + "title": "Missunderstanding" + }, + { + "artist": "Tracie Spencer", + "position": 89, + "title": "This House" + }, + { + "artist": "Notorious", + "position": 90, + "title": "The Swalk" + }, + { + "artist": "The Party", + "position": 91, + "title": "I Found Love" + }, + { + "artist": "Timmy T.", + "position": 92, + "title": "One More Try" + }, + { + "artist": "Paul Simon", + "position": 93, + "title": "The Obvious Child" + }, + { + "artist": "Nelson", + "position": 94, + "title": "(Can t Live Without Your) Love And Affection" + }, + { + "artist": "Cheap Trick", + "position": 95, + "title": "Wherever Would I Be" + }, + { + "artist": "Slaughter", + "position": 96, + "title": "Spend My Life" + }, + { + "artist": "Righteous Brothers", + "position": 97, + "title": "Unchained Melody" + }, + { + "artist": "Janet Jackson", + "position": 98, + "title": "Black Cat" + }, + { + "artist": "Special Generation", + "position": 99, + "title": "Love Me Just For Me" + }, + { + "artist": "Phil Collins", + "position": 100, + "title": "Something Happened On The Way To Heaven" + } + ], + "title": "1990 - Hot 100" + }, + { + "songs": [ + { + "artist": "Highway 101", + "position": 1, + "title": "Who s Lonely Now" + }, + { + "artist": "Lorrie Morgan", + "position": 2, + "title": "Out Of Your Shoes" + }, + { + "artist": "Billy Joe Royal", + "position": 3, + "title": "Till I Can t Take It Anymore" + }, + { + "artist": "Keith Whitley", + "position": 4, + "title": "It Ain t Nothin" + }, + { + "artist": "Rodney Crowell", + "position": 5, + "title": "Many A Long" + }, + { + "artist": "Glen Campbell", + "position": 6, + "title": "She s Gone, Gone, Gone" + }, + { + "artist": "Vern Gosdin", + "position": 7, + "title": "That Just About Does It" + }, + { + "artist": "Skip Ewing", + "position": 8, + "title": "It s You Again" + }, + { + "artist": "Tanya Tucker", + "position": 9, + "title": "My Arms Stay Open All Night" + }, + { + "artist": "Willie Nelson", + "position": 10, + "title": "There You Are" + }, + { + "artist": "Clint Black", + "position": 11, + "title": "Nobody s Home" + }, + { + "artist": "The Charlie Daniels Band", + "position": 12, + "title": "Simple Man" + }, + { + "artist": "The Nitty Gritty Dirt Band", + "position": 13, + "title": "When It s Gone" + }, + { + "artist": "Steve Wariner", + "position": 14, + "title": "When I Could Come Home To You" + }, + { + "artist": "Ronnie Milsap", + "position": 15, + "title": "A Woman In Love" + }, + { + "artist": "Lionel Cartwright", + "position": 16, + "title": "In My Eyes" + }, + { + "artist": "The Desert Rose Band", + "position": 17, + "title": "Start All Over Again" + }, + { + "artist": "Ricky Van Shelton", + "position": 18, + "title": "Statue Of A Fool" + }, + { + "artist": "The Judds", + "position": 19, + "title": "One Man Woman" + }, + { + "artist": "Baillie And The Boys", + "position": 20, + "title": "I Can t Turn The Tide" + }, + { + "artist": "Kathy Mattea", + "position": 21, + "title": "Where ve You Been" + }, + { + "artist": "Alabama", + "position": 22, + "title": "Southern Star" + }, + { + "artist": "Shenandoah", + "position": 23, + "title": "Two Dozen Roses" + }, + { + "artist": "Holly Dunn", + "position": 24, + "title": "There Goes My Heart Again" + }, + { + "artist": "George Strait", + "position": 25, + "title": "Overnight Success" + } + ], + "title": "1989 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Phil Collins", + "position": 1, + "title": "Another Day In Paradise" + }, + { + "artist": "Janet Jackson", + "position": 2, + "title": "Rhythm Nation" + }, + { + "artist": "Linda Ronstadt (Featuring Aaron Neville)", + "position": 3, + "title": "Don t Know Much" + }, + { + "artist": "Technotronic", + "position": 4, + "title": "Pump Up The Jam" + }, + { + "artist": "Taylor Dayne", + "position": 5, + "title": "With Every Beat Of My Heart" + }, + { + "artist": "Michael Bolton", + "position": 6, + "title": "How Am I Supposed To Live Without You" + }, + { + "artist": "New Kids On The Block", + "position": 7, + "title": "This One s For The Children" + }, + { + "artist": "Cher", + "position": 8, + "title": "Just Like Jesse James" + }, + { + "artist": "Billy Joel", + "position": 9, + "title": "We Didn t Start The Fire" + }, + { + "artist": "Jody Watley", + "position": 10, + "title": "Everything" + }, + { + "artist": "Soul II Soul", + "position": 11, + "title": "Back To Life" + }, + { + "artist": "Jive Bunny", + "position": 12, + "title": "Swing The Mood" + }, + { + "artist": "Lou Gramm", + "position": 13, + "title": "Just Between You And Me" + }, + { + "artist": "Tom Petty", + "position": 14, + "title": "Free Fallin" + }, + { + "artist": "Tesla", + "position": 15, + "title": "Love Song" + }, + { + "artist": "Rod Stewart", + "position": 16, + "title": "Downtown Train" + }, + { + "artist": "Joe Cocker", + "position": 17, + "title": "When The Night Comes" + }, + { + "artist": "Seduction", + "position": 18, + "title": "Two To Make It Right" + }, + { + "artist": "Bon Jovi", + "position": 19, + "title": "Living In Sin" + }, + { + "artist": "Madonna", + "position": 20, + "title": "Oh Father" + }, + { + "artist": "Milli Vanilli", + "position": 21, + "title": "Blame It On The Rain" + }, + { + "artist": "Skid Row", + "position": 22, + "title": "I Remember You" + }, + { + "artist": "The Rolling Stones", + "position": 23, + "title": "Rock And A Hard Place" + }, + { + "artist": "Aerosmith", + "position": 24, + "title": "Janie s Got A Gun" + }, + { + "artist": "Quincy Jones Featuring Ray Charles", + "position": 25, + "title": "I ll Be Good To You" + }, + { + "artist": "Babyface", + "position": 26, + "title": "Tender Lover" + }, + { + "artist": "Eddie Money", + "position": 27, + "title": "Peace In Our Time" + }, + { + "artist": "The B-52 s", + "position": 28, + "title": "Love Shack" + }, + { + "artist": "Chicago", + "position": 29, + "title": "What Kind Of Man Would I Be?" + }, + { + "artist": "Kix", + "position": 30, + "title": "Don t Close Your Eyes" + }, + { + "artist": "Expose", + "position": 31, + "title": "Tell Me Why" + }, + { + "artist": "Paula Abdul (Duet With The Wild Pair)", + "position": 32, + "title": "Opposites Attract" + }, + { + "artist": "Paula Abdul", + "position": 33, + "title": "(It s Just) The Way That You Love Me" + }, + { + "artist": "Michael Damian", + "position": 34, + "title": "Was It Nothing At All" + }, + { + "artist": "Young MC", + "position": 35, + "title": "Principal s Office" + }, + { + "artist": "Young MC", + "position": 36, + "title": "Bust A Move" + }, + { + "artist": "Motley Crue", + "position": 37, + "title": "Kickstart My Heart" + }, + { + "artist": "Bad English", + "position": 38, + "title": "When I See You Smile" + }, + { + "artist": "Tina Turner", + "position": 39, + "title": "Steamy Windows" + }, + { + "artist": "Roxette", + "position": 40, + "title": "Dangerous" + }, + { + "artist": "Shana", + "position": 41, + "title": "I Want You" + }, + { + "artist": "Sybil", + "position": 42, + "title": "Don t Make Me Over" + }, + { + "artist": "Poco", + "position": 43, + "title": "Nothin To Hide" + }, + { + "artist": "Gloria Estefan", + "position": 44, + "title": "Here We Are" + }, + { + "artist": "The Cover Girls", + "position": 45, + "title": "We Can t Go Wrong" + }, + { + "artist": "Whitesnake", + "position": 46, + "title": "Fool For Your Loving" + }, + { + "artist": "Don Henley", + "position": 47, + "title": "The Last Worthless Evening" + }, + { + "artist": "Michel le", + "position": 48, + "title": "No More Lies" + }, + { + "artist": "Richard Marx", + "position": 49, + "title": "Angelia" + }, + { + "artist": "The 2 Live Crew", + "position": 50, + "title": "Me So Horny" + }, + { + "artist": "Milli Vanilli", + "position": 51, + "title": "All Or Nothing" + }, + { + "artist": "Jaya", + "position": 52, + "title": "If You Leave Me Now" + }, + { + "artist": "Bad English", + "position": 53, + "title": "Price Of Love" + }, + { + "artist": "Tears For Fears", + "position": 54, + "title": "Woman In Chains" + }, + { + "artist": "Belinda Carlisle", + "position": 55, + "title": "Leave A Light On" + }, + { + "artist": "Fiona (Duet With Kip Winger)", + "position": 56, + "title": "Everything You Do (You re Sexing Me)" + }, + { + "artist": "Alice Cooper", + "position": 57, + "title": "Poison" + }, + { + "artist": "Bonham", + "position": 58, + "title": "Wait For You" + }, + { + "artist": "Marcia Griffiths", + "position": 59, + "title": "Electric Boogie" + }, + { + "artist": "Paul Carrack", + "position": 60, + "title": "I Live By The Groove" + }, + { + "artist": "D-Mob With Cathy Dennis", + "position": 61, + "title": "C Mon And Get My Love" + }, + { + "artist": "SaFire", + "position": 62, + "title": "I Will Survive (From \"She-Devil\")" + }, + { + "artist": "Prince (With Sheena Easton)", + "position": 63, + "title": "The Arms Of Orion" + }, + { + "artist": "Jermaine Jackson", + "position": 64, + "title": "Don t Take It Personal" + }, + { + "artist": "Kevin Paige", + "position": 65, + "title": "Don t Shut Me Out" + }, + { + "artist": "Great White", + "position": 66, + "title": "The Angel Song" + }, + { + "artist": "Depeche Mode", + "position": 67, + "title": "Personal Jesus" + }, + { + "artist": "Pajama Party", + "position": 68, + "title": "Over And Over" + }, + { + "artist": "Luther Vandross", + "position": 69, + "title": "Here And Now" + }, + { + "artist": "The B-52 s", + "position": 70, + "title": "Roam" + }, + { + "artist": "Kenny G", + "position": 71, + "title": "Going Home" + }, + { + "artist": "Eric Clapton", + "position": 72, + "title": "Pretending" + }, + { + "artist": "Neneh Cherry", + "position": 73, + "title": "Heart" + }, + { + "artist": "Dino", + "position": 74, + "title": "Never 2 Much Of U" + }, + { + "artist": "Roxette", + "position": 75, + "title": "Listen To Your Heart" + }, + { + "artist": "Christopher Max", + "position": 76, + "title": "Serious Kinda Girl" + }, + { + "artist": "The Smithereens", + "position": 77, + "title": "A Girl Like You" + }, + { + "artist": "New Kids On The Block", + "position": 78, + "title": "Didn t I (Blow Your Mind)" + }, + { + "artist": "Bobby Brown", + "position": 79, + "title": "Rock Wit cha" + }, + { + "artist": "Gloria Estefan", + "position": 80, + "title": "Get On Your Feet" + }, + { + "artist": "Warrant", + "position": 81, + "title": "Sometimes She Cries" + }, + { + "artist": "The Cure", + "position": 82, + "title": "Lullaby" + }, + { + "artist": "Kiss", + "position": 83, + "title": "Hide Your Heart" + }, + { + "artist": "Loverboy", + "position": 84, + "title": "Too Hot" + }, + { + "artist": "Michael Penn", + "position": 85, + "title": "No Myth" + }, + { + "artist": "Alannah Myles", + "position": 86, + "title": "Black Velvet" + }, + { + "artist": "Diving For Pearls", + "position": 87, + "title": "Gimme Your Good Lovin" + }, + { + "artist": "Lil Louis", + "position": 88, + "title": "French Kiss" + }, + { + "artist": "Abstrac", + "position": 89, + "title": "Right And Hype" + }, + { + "artist": "Michael Morales", + "position": 90, + "title": "I Don t Know" + }, + { + "artist": "Stevie B", + "position": 91, + "title": "Girl I Am Searching For You" + }, + { + "artist": "Janet Jackson", + "position": 92, + "title": "Miss You Much" + }, + { + "artist": "Starship", + "position": 93, + "title": "I Didn t Mean To Stay All Night" + }, + { + "artist": "Sharon Bryant", + "position": 94, + "title": "Foolish Heart" + }, + { + "artist": "Christopher Williams", + "position": 95, + "title": "Talk To Myself" + }, + { + "artist": "After 7", + "position": 96, + "title": "Heat Of The Moment" + }, + { + "artist": "New Kids On The Block", + "position": 97, + "title": "Cover Girl" + }, + { + "artist": "Hooters", + "position": 98, + "title": "500 Miles" + }, + { + "artist": "Saraya", + "position": 99, + "title": "Back To The Bullet" + }, + { + "artist": "Chunky A", + "position": 100, + "title": "Owwww!" + } + ], + "title": "1989 - Hot 100" + }, + { + "songs": [ + { + "artist": "Keith Whitley", + "position": 1, + "title": "When You Say Nothing At All" + }, + { + "artist": "K.T. Oslin", + "position": 2, + "title": "Hold Me" + }, + { + "artist": "Paul Overstreet", + "position": 3, + "title": "Love Helps Those" + }, + { + "artist": "The Judds", + "position": 4, + "title": "Change Of Heart" + }, + { + "artist": "Shenandoah", + "position": 5, + "title": "Mama Knows" + }, + { + "artist": "Rodney Crowell", + "position": 6, + "title": "She s Crazy For Leaving" + }, + { + "artist": "Eddie Rabbitt", + "position": 7, + "title": "We Must Be Doin Somethin Right" + }, + { + "artist": "Baillie And The Boys", + "position": 8, + "title": "Long Shot" + }, + { + "artist": "Patty Loveless", + "position": 9, + "title": "Blue Side Of Town" + }, + { + "artist": "Randy Travis", + "position": 10, + "title": "Deeper Than The Holler" + }, + { + "artist": "Restless Heart", + "position": 11, + "title": "A Tender Lie" + }, + { + "artist": "Highway 101", + "position": 12, + "title": "All The Reasons Why" + }, + { + "artist": "Steve Wariner", + "position": 13, + "title": "Hold On (A Little Longer)" + }, + { + "artist": "The Statler Brothers", + "position": 14, + "title": "Let s Get Started If We re Gonna Break My Heart" + }, + { + "artist": "Skip Ewing", + "position": 15, + "title": "Burnin A Hole In My Heart" + }, + { + "artist": "Earl Thomas Conley", + "position": 16, + "title": "What I d Say" + }, + { + "artist": "Alabama", + "position": 17, + "title": "Song Of The South" + }, + { + "artist": "Hank Williams Jr.", + "position": 18, + "title": "Early In The Morning And Late At Night" + }, + { + "artist": "Dan Seals", + "position": 19, + "title": "Big Wheels In The Moonlight" + }, + { + "artist": "Dwight Yoakam", + "position": 20, + "title": "I Sang Dixie" + }, + { + "artist": "Kathy Mattea", + "position": 21, + "title": "Life As We Knew It" + }, + { + "artist": "The Shooters", + "position": 22, + "title": "Borderline" + }, + { + "artist": "The Forester Sisters", + "position": 23, + "title": "Sincerely" + }, + { + "artist": "Holly Dunn", + "position": 24, + "title": "(It s Always Gonna Be) Someday" + }, + { + "artist": "Gene Watson", + "position": 25, + "title": "Don t Waste It On The Blues" + } + ], + "title": "1988 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Poison", + "position": 1, + "title": "Every Rose Has Its Thorn" + }, + { + "artist": "Bobby Brown", + "position": 2, + "title": "My Prerogative" + }, + { + "artist": "Chicago", + "position": 3, + "title": "Look Away" + }, + { + "artist": "Anita Baker", + "position": 4, + "title": "Giving You The Best That I Got" + }, + { + "artist": "Boy Meets Girl", + "position": 5, + "title": "Waiting For A Star To Fall" + }, + { + "artist": "Phil Collins", + "position": 6, + "title": "Two Hearts" + }, + { + "artist": "Guns N Roses", + "position": 7, + "title": "Welcome To The Jungle" + }, + { + "artist": "Bangles", + "position": 8, + "title": "In Your Room" + }, + { + "artist": "Eddie Money", + "position": 9, + "title": "Walk On Water" + }, + { + "artist": "Taylor Dayne", + "position": 10, + "title": "Don t Rush Me" + }, + { + "artist": "Will To Power", + "position": 11, + "title": "Baby, I Love Your Way/Freebird Medley" + }, + { + "artist": "Def Leppard", + "position": 12, + "title": "Armageddon It" + }, + { + "artist": "Michael Jackson", + "position": 13, + "title": "Smooth Criminal" + }, + { + "artist": "Boys Club", + "position": 14, + "title": "I Remember Holding You" + }, + { + "artist": "Duran Duran", + "position": 15, + "title": "I Don t Want Your Love" + }, + { + "artist": "Kenny G", + "position": 16, + "title": "Silhouette" + }, + { + "artist": "Breathe", + "position": 17, + "title": "How Can I Fall?" + }, + { + "artist": "When In Rome", + "position": 18, + "title": "The Promise" + }, + { + "artist": "Annie Lennox", + "position": 19, + "title": "Put A Little Love In Your Heart" + }, + { + "artist": "Van Halen", + "position": 20, + "title": "Finish What Ya Started" + }, + { + "artist": "Was (Not Was)", + "position": 21, + "title": "Spy In The House Of Love" + }, + { + "artist": "Karyn White", + "position": 22, + "title": "The Way You Love Me" + }, + { + "artist": "Robert Palmer", + "position": 23, + "title": "Early In The Morning" + }, + { + "artist": "Tiffany", + "position": 24, + "title": "All This Time" + }, + { + "artist": "White Lion", + "position": 25, + "title": "When The Children Cry" + }, + { + "artist": "Bon Jovi", + "position": 26, + "title": "Born To Be My Baby" + }, + { + "artist": "Sheriff", + "position": 27, + "title": "When I m With You" + }, + { + "artist": "Joan Jett And The Blackhearts", + "position": 28, + "title": "Little Liar" + }, + { + "artist": "Steve Winwood", + "position": 29, + "title": "Holding On" + }, + { + "artist": "Maxi Priest", + "position": 30, + "title": "Wild World" + }, + { + "artist": "Samantha Fox", + "position": 31, + "title": "I Wanna Have Some Fun" + }, + { + "artist": "Cheryl \"Pepsii\" Riley", + "position": 32, + "title": "Thanks For My Child" + }, + { + "artist": "Cheap Trick", + "position": 33, + "title": "Ghost Town" + }, + { + "artist": "Sheena Easton", + "position": 34, + "title": "The Lover In Me" + }, + { + "artist": "Paula Abdul", + "position": 35, + "title": "Straight Up" + }, + { + "artist": "U2", + "position": 36, + "title": "Desire" + }, + { + "artist": "Tone-Loc", + "position": 37, + "title": "Wild Thing" + }, + { + "artist": "The Beach Boys", + "position": 38, + "title": "Kokomo (From The \"Cocktail\" Soundtrack)" + }, + { + "artist": "The Escape Club", + "position": 39, + "title": "Wild, Wild West" + }, + { + "artist": "The Art Of Noise Featuring Tom Jones", + "position": 40, + "title": "Kiss" + }, + { + "artist": "Information Society", + "position": 41, + "title": "Walking Away" + }, + { + "artist": "Robbie Nevil", + "position": 42, + "title": "Back On Holiday" + }, + { + "artist": "Bon Jovi", + "position": 43, + "title": "Bad Medicine" + }, + { + "artist": "Rick Astley", + "position": 44, + "title": "She Wants To Dance With Me" + }, + { + "artist": "Edie Brickell", + "position": 45, + "title": "What I Am" + }, + { + "artist": "The Boys", + "position": 46, + "title": "Dial My Heart" + }, + { + "artist": "New Kids On The Block", + "position": 47, + "title": "You Got It (The Right Stuff)" + }, + { + "artist": "Tracy Chapman", + "position": 48, + "title": "Baby Can I Hold You" + }, + { + "artist": "Ivan Neville", + "position": 49, + "title": "Not Just Another Girl" + }, + { + "artist": "Kylie Minogue", + "position": 50, + "title": "The Loco-Motion" + }, + { + "artist": "U2", + "position": 51, + "title": "Angel Of Harlem" + }, + { + "artist": "Judson Spence", + "position": 52, + "title": "Yeah, Yeah, Yeah" + }, + { + "artist": "Erasure", + "position": 53, + "title": "A Little Respect" + }, + { + "artist": "Cinderella", + "position": 54, + "title": "Don t Know What You Got (Till It s Gone)" + }, + { + "artist": "Phil Collins", + "position": 55, + "title": "Groovy Kind Of Love" + }, + { + "artist": "Fleetwood Mac", + "position": 56, + "title": "As Long As You Follow" + }, + { + "artist": "The Escape Club", + "position": 57, + "title": "Shake For The Sheik" + }, + { + "artist": "George Michael", + "position": 58, + "title": "Kissing A Fool" + }, + { + "artist": "Traveling Wilburys", + "position": 59, + "title": "Handle With Care" + }, + { + "artist": "Eighth Wonder", + "position": 60, + "title": "Cross My Heart" + }, + { + "artist": "Rod Stewart", + "position": 61, + "title": "My Heart Can t Tell You No" + }, + { + "artist": "Kylie Minogue", + "position": 62, + "title": "It s No Secret" + }, + { + "artist": "Siouxsie and The Banshees", + "position": 63, + "title": "Peek-A-Boo" + }, + { + "artist": "The Georgia Satellites", + "position": 64, + "title": "Hippy Hippy Shake (From \"Cocktail\")" + }, + { + "artist": "Alphaville", + "position": 65, + "title": "Forever Young" + }, + { + "artist": "Tracie Spencer", + "position": 66, + "title": "Symptoms Of True Love" + }, + { + "artist": "Basia", + "position": 67, + "title": "New Day For You" + }, + { + "artist": "UB40", + "position": 68, + "title": "Red Red Wine" + }, + { + "artist": "D.J. Jazzy Jeff", + "position": 69, + "title": "Girls Ain t Nothing But Trouble" + }, + { + "artist": "Pet Shop Boys", + "position": 70, + "title": "Domino Dancing" + }, + { + "artist": "Rod Stewart", + "position": 71, + "title": "Forever Young" + }, + { + "artist": "Vixen", + "position": 72, + "title": "Edge Of A Broken Heart" + }, + { + "artist": "Bobby McFerrin", + "position": 73, + "title": "Don t Worry, Be Happy (From \"Cocktail\")" + }, + { + "artist": "Randy Newman", + "position": 74, + "title": "It s Money That Matters" + }, + { + "artist": "Giant Steps", + "position": 75, + "title": "Another Lover" + }, + { + "artist": "Michelle Shocked", + "position": 76, + "title": "Anchorage" + }, + { + "artist": "Tommy Conwell And The Young Rumblers", + "position": 77, + "title": "If We Never Meet Again" + }, + { + "artist": "Mike", + "position": 78, + "title": "Nobody s Perfect" + }, + { + "artist": "Barbra Streisand", + "position": 79, + "title": "Till I Loved You" + }, + { + "artist": "Ann Wilson", + "position": 80, + "title": "Surrender To Me (From \"Tequila Sunrise\")" + }, + { + "artist": "Starship", + "position": 81, + "title": "Wild Again (From \"Cocktail\")" + }, + { + "artist": "Al B. Sure!", + "position": 82, + "title": "Killing Me Softly" + }, + { + "artist": "The Timelords", + "position": 83, + "title": "Doctorin The Tardis" + }, + { + "artist": "INXS", + "position": 84, + "title": "Never Tear Us Apart" + }, + { + "artist": "Duran Duran", + "position": 85, + "title": "All She Wants Is" + }, + { + "artist": "Fairground Attraction", + "position": 86, + "title": "Perfect" + }, + { + "artist": "Kon Kan", + "position": 87, + "title": "I Beg Your Pardon" + }, + { + "artist": "Bobby Brown", + "position": 88, + "title": "Don t Be Cruel" + }, + { + "artist": "SaFire", + "position": 89, + "title": "Boy, I ve Been Told" + }, + { + "artist": "Def Leppard", + "position": 90, + "title": "Love Bites" + }, + { + "artist": "Martika", + "position": 91, + "title": "More Than You Know" + }, + { + "artist": "J.J. Fad", + "position": 92, + "title": "Is It Love" + }, + { + "artist": "Taylor Dayne", + "position": 93, + "title": "I ll Always Love You" + }, + { + "artist": "New Kids On The Block", + "position": 94, + "title": "Please Don t Go Girl" + }, + { + "artist": "Sir Mix-A-Lot", + "position": 95, + "title": "Posse On Broadway" + }, + { + "artist": "Luther Vandross", + "position": 96, + "title": "Any Love" + }, + { + "artist": "L Trimm", + "position": 97, + "title": "Cars With The Boom" + }, + { + "artist": "Camouflage", + "position": 98, + "title": "The Great Commandment" + }, + { + "artist": "Information Society", + "position": 99, + "title": "What s On Your Mind (Pure Energy)" + }, + { + "artist": "Whitney Houston", + "position": 100, + "title": "One Moment In Time" + } + ], + "title": "1988 - Hot 100" + }, + { + "songs": [ + { + "artist": "Highway 101", + "position": 1, + "title": "Somewhere Tonight" + }, + { + "artist": "Kenny Rogers", + "position": 2, + "title": "I Prefer The Moonlight" + }, + { + "artist": "Exile", + "position": 3, + "title": "I Can't Get Close Enough" + }, + { + "artist": "Dan Seals", + "position": 4, + "title": "One Friend" + }, + { + "artist": "Hank Williams Jr.", + "position": 5, + "title": "Heaven Can't Be Found" + }, + { + "artist": "Ronnie Milsap", + "position": 6, + "title": "Where Do The Nights Go" + }, + { + "artist": "Kathy Mattea", + "position": 7, + "title": "Goin' Gone" + }, + { + "artist": "Glen Campbell", + "position": 8, + "title": "Still Within The Sound Of My Voice" + }, + { + "artist": "K.T. Oslin", + "position": 9, + "title": "Do Ya'" + }, + { + "artist": "Restless Heart", + "position": 10, + "title": "Wheels" + }, + { + "artist": "Michael Johnson", + "position": 11, + "title": "Crying Shame" + }, + { + "artist": "The O'Kanes", + "position": 12, + "title": "Just Lovin' You" + }, + { + "artist": "Lyle Lovett", + "position": 13, + "title": "Give Back My Heart" + }, + { + "artist": "Billy Joe Royal", + "position": 14, + "title": "I'll Pin A Note On Your Pillow" + }, + { + "artist": "Crystal Gayle", + "position": 15, + "title": "Only Love Can Save Me Now" + }, + { + "artist": "Don Williams", + "position": 16, + "title": "I Wouldn't Be A Man" + }, + { + "artist": "The Desert Rose Band", + "position": 17, + "title": "One Step Forward" + }, + { + "artist": "Rosanne Cash", + "position": 18, + "title": "Tennessee Flat Top Box" + }, + { + "artist": "Ricky Skaggs", + "position": 19, + "title": "I'm Tired" + }, + { + "artist": "The Forester Sisters", + "position": 20, + "title": "Lyin' In His Arms Again" + }, + { + "artist": "T.G. Sheppard", + "position": 21, + "title": "One For The Money" + }, + { + "artist": "Merle Haggard", + "position": 22, + "title": "Twinkle, Twinkle Lucky Star" + }, + { + "artist": "Waylon Jennings", + "position": 23, + "title": "Rough And Rowdy Days" + }, + { + "artist": "Foster & Lloyd", + "position": 24, + "title": "Sure Thing" + }, + { + "artist": "Dwight Yoakam", + "position": 25, + "title": "Please Please Baby" + } + ], + "title": "1987 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "George Michael", + "position": 1, + "title": "Faith" + }, + { + "artist": "Whitney Houston", + "position": 2, + "title": "So Emotional" + }, + { + "artist": "Whitesnake", + "position": 3, + "title": "Is This Love" + }, + { + "artist": "George Harrison", + "position": 4, + "title": "Got My Mind Set On You" + }, + { + "artist": "Debbie Gibson", + "position": 5, + "title": "Shake Your Love" + }, + { + "artist": "Jody Watley", + "position": 6, + "title": "Don't You Want Me" + }, + { + "artist": "Michael Jackson", + "position": 7, + "title": "The Way You Make Me Feel" + }, + { + "artist": "Pretty Poison", + "position": 8, + "title": "Catch Me (I'm Falling) (From The Film \"Hiding Out\")" + }, + { + "artist": "John Mellencamp", + "position": 9, + "title": "Cherry Bomb" + }, + { + "artist": "INXS", + "position": 10, + "title": "Need You Tonight" + }, + { + "artist": "Steve Winwood", + "position": 11, + "title": "Valerie" + }, + { + "artist": "Taylor Dayne", + "position": 12, + "title": "Tell It To My Heart" + }, + { + "artist": "Elton John", + "position": 13, + "title": "Candle In The Wind" + }, + { + "artist": "Aerosmith", + "position": 14, + "title": "Dude (Looks Like A Lady)" + }, + { + "artist": "Bangles", + "position": 15, + "title": "Hazy Shade Of Winter" + }, + { + "artist": "Tiffany", + "position": 16, + "title": "Could've Been" + }, + { + "artist": "Belinda Carlisle", + "position": 17, + "title": "Heaven Is A Place On Earth" + }, + { + "artist": "Heart", + "position": 18, + "title": "There's The Girl" + }, + { + "artist": "Def Leppard", + "position": 19, + "title": "Animal" + }, + { + "artist": "Expose", + "position": 20, + "title": "Seasons Change" + }, + { + "artist": "Bill Medley & Jennifer Warnes", + "position": 21, + "title": "(I've Had) The Time Of My Life" + }, + { + "artist": "Icehouse", + "position": 22, + "title": "Crazy" + }, + { + "artist": "Prince", + "position": 23, + "title": "I Could Never Take The Place Of Your Man" + }, + { + "artist": "Michael Bolton", + "position": 24, + "title": "That's What Love Is All About" + }, + { + "artist": "Eric Carmen", + "position": 25, + "title": "Hungry Eyes (From \"Dirty Dancing\")" + }, + { + "artist": "Roger", + "position": 26, + "title": "I Want To Be Your Man" + }, + { + "artist": "Laura Branigan", + "position": 27, + "title": "Power Of Love" + }, + { + "artist": "Sting", + "position": 28, + "title": "We'll Be Together" + }, + { + "artist": "Richard Marx", + "position": 29, + "title": "Should've Known Better" + }, + { + "artist": "Bruce Springsteen", + "position": 30, + "title": "Tunnel Of Love" + }, + { + "artist": "Natalie Cole", + "position": 31, + "title": "I Live For Your Love" + }, + { + "artist": "New Order", + "position": 32, + "title": "True Faith" + }, + { + "artist": "Foreigner", + "position": 33, + "title": "Say You Will" + }, + { + "artist": "Paul Carrack", + "position": 34, + "title": "Don't Shed A Tear" + }, + { + "artist": "Men Without Hats", + "position": 35, + "title": "Pop Goes The World" + }, + { + "artist": "Stryper", + "position": 36, + "title": "Honestly" + }, + { + "artist": "The Kane Gang", + "position": 37, + "title": "Motortown" + }, + { + "artist": "Fleetwood Mac", + "position": 38, + "title": "Everywhere" + }, + { + "artist": "Pet Shop Boys & Dusty Springfield", + "position": 39, + "title": "What Have I Done To Deserve This?" + }, + { + "artist": "Salt-N-Pepa", + "position": 40, + "title": "Push It" + }, + { + "artist": "The Cure", + "position": 41, + "title": "Just Like Heaven" + }, + { + "artist": "R.E.M.", + "position": 42, + "title": "The One I Love" + }, + { + "artist": "Tiffany", + "position": 43, + "title": "I Think We're Alone Now" + }, + { + "artist": "Cher", + "position": 44, + "title": "I Found Someone" + }, + { + "artist": "Gloria Estefan & Miami Sound Machine", + "position": 45, + "title": "Can't Stay Away From You" + }, + { + "artist": "M/A/R/R/S", + "position": 46, + "title": "Pump Up The Volume" + }, + { + "artist": "Bourgeois Tagg", + "position": 47, + "title": "I Don't Mind At All" + }, + { + "artist": "Bananarama", + "position": 48, + "title": "I Can't Help It" + }, + { + "artist": "Stevie Wonder", + "position": 49, + "title": "Skeletons" + }, + { + "artist": "The Jets", + "position": 50, + "title": "I Do You" + }, + { + "artist": "The Cover Girls", + "position": 51, + "title": "Because Of You" + }, + { + "artist": "Billy Idol", + "position": 52, + "title": "Mony Mony" + }, + { + "artist": "U2", + "position": 53, + "title": "In God's Country" + }, + { + "artist": "Deja", + "position": 54, + "title": "You And Me Tonight" + }, + { + "artist": "Patrick Swayze (Featuring Wendy Fraser)", + "position": 55, + "title": "She's Like The Wind" + }, + { + "artist": "Squeeze", + "position": 56, + "title": "853-5937" + }, + { + "artist": "Cutting Crew", + "position": 57, + "title": "I've Been In Love Before" + }, + { + "artist": "Shanice Wilson", + "position": 58, + "title": "(Baby Tell Me) Can You Dance" + }, + { + "artist": "Georgio", + "position": 59, + "title": "Lover's Lane" + }, + { + "artist": "Billy Idol", + "position": 60, + "title": "Hot In The City" + }, + { + "artist": "Rick Astley", + "position": 61, + "title": "Never Gonna Give You Up" + }, + { + "artist": "Squeeze", + "position": 62, + "title": "Hourglass" + }, + { + "artist": "Powersource (Solo...Sharon)", + "position": 63, + "title": "Dear Mr. Jesus" + }, + { + "artist": "Yes", + "position": 64, + "title": "Rhythm Of Love" + }, + { + "artist": "Dan Hill", + "position": 65, + "title": "Never Thought (That I Could Love)" + }, + { + "artist": "Earth, Wind & Fire", + "position": 66, + "title": "System Of Survival" + }, + { + "artist": "Buster Poindexter & His Banshees Of Blue", + "position": 67, + "title": "Hot Hot Hot" + }, + { + "artist": "Kiss", + "position": 68, + "title": "Reason To Live" + }, + { + "artist": "Poison", + "position": 69, + "title": "I Won't Forget You" + }, + { + "artist": "Eurythmics", + "position": 70, + "title": "I Need A Man" + }, + { + "artist": "Fleetwood Mac", + "position": 71, + "title": "Little Lies" + }, + { + "artist": "Swing Out Sister", + "position": 72, + "title": "Breakout" + }, + { + "artist": "Yes", + "position": 73, + "title": "Love Will Find A Way" + }, + { + "artist": "Alexander O'Neal", + "position": 74, + "title": "Criticize" + }, + { + "artist": "Prince", + "position": 75, + "title": "U Got The Look" + }, + { + "artist": "Swing Out Sister", + "position": 76, + "title": "Twilight World" + }, + { + "artist": "Mick Jagger", + "position": 77, + "title": "Throwaway" + }, + { + "artist": "Bruce Springsteen", + "position": 78, + "title": "Brilliant Disguise" + }, + { + "artist": "REO Speedwagon", + "position": 79, + "title": "In My Dreams" + }, + { + "artist": "Boy George", + "position": 80, + "title": "Live My Life (From The Film \"Hiding Out\")" + }, + { + "artist": "The Alarm", + "position": 81, + "title": "Rain In The Summertime" + }, + { + "artist": "Dokken", + "position": 82, + "title": "Burning Like A Flame" + }, + { + "artist": "Tony Terry", + "position": 83, + "title": "She's Fly" + }, + { + "artist": "Noel", + "position": 84, + "title": "Silent Morning" + }, + { + "artist": "Europe", + "position": 85, + "title": "Cherokee" + }, + { + "artist": "Lisa Lisa & Cult Jam Featuring Full Force", + "position": 86, + "title": "Someone To Love Me For Me" + }, + { + "artist": "Glenn Jones", + "position": 87, + "title": "We've Only Just Begun (The Romance Is Not Over)" + }, + { + "artist": "Glenn Medeiros", + "position": 88, + "title": "Lonely Won't Leave Me Alone" + }, + { + "artist": "Expose", + "position": 89, + "title": "Let Me Be The One" + }, + { + "artist": "Smokey Robinson", + "position": 90, + "title": "What's Too Much" + }, + { + "artist": "Motley Crue", + "position": 91, + "title": "You're All I Need" + }, + { + "artist": "Kool & The Gang", + "position": 92, + "title": "Special Way" + }, + { + "artist": "Sammy Hagar", + "position": 93, + "title": "Eagles Fly" + }, + { + "artist": "Pet Shop Boys", + "position": 94, + "title": "It's A Sin" + }, + { + "artist": "Heart", + "position": 95, + "title": "Who Will You Run To" + }, + { + "artist": "Depeche Mode", + "position": 96, + "title": "Never Let Me Down Again" + }, + { + "artist": "Madonna", + "position": 97, + "title": "Causing A Commotion" + }, + { + "artist": "Whitesnake", + "position": 98, + "title": "Here I Go Again" + }, + { + "artist": "Martha Davis", + "position": 99, + "title": "Don't Tell Me The Time" + }, + { + "artist": "Kenny G. (Vocal By Lenny Williams)", + "position": 100, + "title": "Don't Make Me Wait For Love" + } + ], + "title": "1987 - Hot 100" + }, + { + "songs": [ + { + "artist": "Hank Williams Jr.", + "position": 1, + "title": "Mind Your Own Business" + }, + { + "artist": "Michael Johnson", + "position": 2, + "title": "Give Me Wings" + }, + { + "artist": "Reba McEntire", + "position": 3, + "title": "What Am I Gonna Do About You" + }, + { + "artist": "Ricky Skaggs", + "position": 4, + "title": "Love s Gonna Get You Someday" + }, + { + "artist": "The Judds", + "position": 5, + "title": "Cry Myself To Sleep" + }, + { + "artist": "Don Williams", + "position": 6, + "title": "Then It s Love" + }, + { + "artist": "Conway Twitty", + "position": 7, + "title": "Fallin For You For Years" + }, + { + "artist": "T.G. Sheppard", + "position": 8, + "title": "Half Past Forever (Till I m Blue In The Heart)" + }, + { + "artist": "Dan Seals", + "position": 9, + "title": "You Still Move Me" + }, + { + "artist": "The O Kanes", + "position": 10, + "title": "Oh Darlin" + }, + { + "artist": "Judy Rodman", + "position": 11, + "title": "She Thinks That She ll Marry" + }, + { + "artist": "Pake McEntire", + "position": 12, + "title": "Bad Love" + }, + { + "artist": "John Conlee", + "position": 13, + "title": "The Carpenter" + }, + { + "artist": "Gary Morris", + "position": 14, + "title": "Leave Me Lonely" + }, + { + "artist": "Lionel Richie", + "position": 15, + "title": "Deep River Woman" + }, + { + "artist": "Bellamy Brothers With the Forester Sisters", + "position": 16, + "title": "Too Much Is Not Enough" + }, + { + "artist": "Eddie Rabbitt", + "position": 17, + "title": "Gotta Have You" + }, + { + "artist": "Lyle Lovett", + "position": 18, + "title": "Cowboy Man" + }, + { + "artist": "Tanya Tucker", + "position": 19, + "title": "I ll Come Back As Another Woman" + }, + { + "artist": "Ronnie Milsap", + "position": 20, + "title": "How Do I Turn You On" + }, + { + "artist": "Crystal Gayle", + "position": 21, + "title": "Straight To The Heart" + }, + { + "artist": "The Nitty Gritty Dirt Band", + "position": 22, + "title": "Fire In The Sky" + }, + { + "artist": "Keith Whitley", + "position": 23, + "title": "Homecoming 63" + }, + { + "artist": "Eddy Raven", + "position": 24, + "title": "Right Hand Man" + }, + { + "artist": "Mel McDaniel", + "position": 25, + "title": "Stand On It" + } + ], + "title": "1986 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Bangles", + "position": 1, + "title": "Walk Like An Egyptian" + }, + { + "artist": "Wang Chung", + "position": 2, + "title": "Everybody Have Fun Tonight" + }, + { + "artist": "Duran Duran", + "position": 3, + "title": "Notorious" + }, + { + "artist": "Gregory Abbott", + "position": 4, + "title": "Shake You Down" + }, + { + "artist": "Bruce Hornsby", + "position": 5, + "title": "The Way It Is" + }, + { + "artist": "Robbie Nevil", + "position": 6, + "title": "C est La Vie" + }, + { + "artist": "Janet Jackson", + "position": 7, + "title": "Control" + }, + { + "artist": "Bruce Springsteen", + "position": 8, + "title": "War" + }, + { + "artist": "Ben E. King", + "position": 9, + "title": "Stand By Me" + }, + { + "artist": "Pretenders", + "position": 10, + "title": "Don't Get Me Wrong" + }, + { + "artist": "Billy Idol", + "position": 11, + "title": "To Be A Lover" + }, + { + "artist": "Survivor", + "position": 12, + "title": "Is This Love" + }, + { + "artist": "Genesis", + "position": 13, + "title": "Land Of Confusion" + }, + { + "artist": "Kool", + "position": 14, + "title": "Victory" + }, + { + "artist": "Billy Vera", + "position": 15, + "title": "At This Moment" + }, + { + "artist": "John Berry", + "position": 16, + "title": "Love Is Forever" + }, + { + "artist": "Howard Jones", + "position": 17, + "title": "You Know I Love You ... Don t You?" + }, + { + "artist": "Glass Tiger", + "position": 18, + "title": "Someday" + }, + { + "artist": "Timbuk 3", + "position": 19, + "title": "The Future s So Bright, I Gotta Wear Shades" + }, + { + "artist": "Huey Lewis", + "position": 20, + "title": "Hip To Be Square" + }, + { + "artist": "Peter Cetera With Amy Grant", + "position": 21, + "title": "The Next Time I Fall" + }, + { + "artist": "Madonna", + "position": 22, + "title": "Open Your Heart" + }, + { + "artist": "Kansas", + "position": 23, + "title": "All I Wanted" + }, + { + "artist": "Bon Jovi", + "position": 24, + "title": "You Give Love A Bad Name" + }, + { + "artist": "Carly Simon", + "position": 25, + "title": "Coming Around Again" + }, + { + "artist": "Cyndi Lauper", + "position": 26, + "title": "Change Of Heart" + }, + { + "artist": "Samantha Fox", + "position": 27, + "title": "Touch Me (I Want Your Body)" + }, + { + "artist": "Gloria Estefan", + "position": 28, + "title": "Falling In Love (Uh-Oh)" + }, + { + "artist": "Run-D.M.C.", + "position": 29, + "title": "You Be Illin" + }, + { + "artist": "The Georgia Satellites", + "position": 30, + "title": "Keep Your Hands To Yourself" + }, + { + "artist": "Tina Turner", + "position": 31, + "title": "Two People" + }, + { + "artist": "Nancy Martinez", + "position": 32, + "title": "For Tonight" + }, + { + "artist": "Cameo", + "position": 33, + "title": "Word Up" + }, + { + "artist": "Billy Joel", + "position": 34, + "title": "This Is The Time" + }, + { + "artist": "Boston", + "position": 35, + "title": "We re Ready" + }, + { + "artist": "Chicago", + "position": 36, + "title": "Will You Still Love Me?" + }, + { + "artist": "Chico DeBarge", + "position": 37, + "title": "Talk To Me" + }, + { + "artist": "The Human League", + "position": 38, + "title": "Human" + }, + { + "artist": "Ready For The World", + "position": 39, + "title": "Love You Down" + }, + { + "artist": "Luther Vandross", + "position": 40, + "title": "Stop To Love" + }, + { + "artist": "Lionel Richie", + "position": 41, + "title": "Love Will Conquer All" + }, + { + "artist": "The Jets", + "position": 42, + "title": "You Got It All" + }, + { + "artist": "Lionel Richie", + "position": 43, + "title": "Ballerina Girl" + }, + { + "artist": "Benjamin Orr", + "position": 44, + "title": "Stay The Night" + }, + { + "artist": "The Pointer Sisters", + "position": 45, + "title": "Goldmine" + }, + { + "artist": "Cinderella", + "position": 46, + "title": "Nobody s Fool" + }, + { + "artist": "Freddie Jackson", + "position": 47, + "title": "Tasty Love" + }, + { + "artist": "Bon Jovi", + "position": 48, + "title": "Livin On A Prayer" + }, + { + "artist": "Journey", + "position": 49, + "title": "I ll Be Alright Without You" + }, + { + "artist": "Peter Gabriel", + "position": 50, + "title": "Big Time" + }, + { + "artist": "Talking Heads", + "position": 51, + "title": "Wild Wild Life" + }, + { + "artist": "Aretha Franklin", + "position": 52, + "title": "Jimmy Lee" + }, + { + "artist": "Jesse Johnson (Featuring Sly Stone)", + "position": 53, + "title": "Crazay" + }, + { + "artist": "The Human League", + "position": 54, + "title": "I Need Your Loving" + }, + { + "artist": "Anita Baker", + "position": 55, + "title": "Caught Up In The Rapture" + }, + { + "artist": "Don Johnson", + "position": 56, + "title": "Heartache Away" + }, + { + "artist": "Madonna", + "position": 57, + "title": "True Blue" + }, + { + "artist": "Boston", + "position": 58, + "title": "Amanda" + }, + { + "artist": "Eddie Money", + "position": 59, + "title": "Take Me Home Tonight" + }, + { + "artist": "Corey Hart", + "position": 60, + "title": "Can t Help Falling In Love" + }, + { + "artist": "Debbie Harry", + "position": 61, + "title": "French Kissin" + }, + { + "artist": "Jeff Lorber", + "position": 62, + "title": "Facts Of Love" + }, + { + "artist": "Dead Or Alive", + "position": 63, + "title": "Brand New Lover" + }, + { + "artist": "Toto", + "position": 64, + "title": "I ll Be Over You" + }, + { + "artist": "Eddie Money", + "position": 65, + "title": "I Wanna Go Back" + }, + { + "artist": "Ann Wilson", + "position": 66, + "title": "The Best Man In The World" + }, + { + "artist": "Linda Ronstadt", + "position": 67, + "title": "Somewhere Out There (From \"An American Tail\")" + }, + { + "artist": "Beastie Boys", + "position": 68, + "title": "(You Gotta) Fight For Your Right (To Party!)" + }, + { + "artist": "Orchestral Manoeuvres In The Dark", + "position": 69, + "title": "(Forever) Live And Die" + }, + { + "artist": "Grace Jones", + "position": 70, + "title": "I m Not Perfect (But I m Perfect For You)" + }, + { + "artist": "Oran Juice Jones", + "position": 71, + "title": "The Rain" + }, + { + "artist": "Bobby Brown", + "position": 72, + "title": "Girlfriend" + }, + { + "artist": "Stacey Q", + "position": 73, + "title": "We Connect" + }, + { + "artist": "Paul Young", + "position": 74, + "title": "Some People" + }, + { + "artist": "Commodores", + "position": 75, + "title": "Goin To The Bank" + }, + { + "artist": "Pet Shop Boys", + "position": 76, + "title": "Suburbia" + }, + { + "artist": "Toto", + "position": 77, + "title": "Without Your Love" + }, + { + "artist": "David", + "position": 78, + "title": "Welcome To The Boomtown" + }, + { + "artist": "Robert Palmer", + "position": 79, + "title": "I Didn t Mean To Turn You On" + }, + { + "artist": "Cameo", + "position": 80, + "title": "Candy" + }, + { + "artist": "Ric Ocasek", + "position": 81, + "title": "True To You" + }, + { + "artist": "Paul Simon", + "position": 82, + "title": "Graceland" + }, + { + "artist": "Bob Geldof", + "position": 83, + "title": "This Is The World Calling" + }, + { + "artist": "Lisa Lisa", + "position": 84, + "title": "All Cried Out" + }, + { + "artist": "Daryl Hall", + "position": 85, + "title": "Foolish Pride" + }, + { + "artist": "Ric Ocasek", + "position": 86, + "title": "Emotion In Motion" + }, + { + "artist": "The Communards", + "position": 87, + "title": "Don't Leave Me This Way" + }, + { + "artist": "Bob Seger", + "position": 88, + "title": "Miami" + }, + { + "artist": "John Parr", + "position": 89, + "title": "Blame It On The Radio" + }, + { + "artist": "El DeBarge", + "position": 90, + "title": "Someone" + }, + { + "artist": "Secret Ties", + "position": 91, + "title": "Dancin In My Sleep" + }, + { + "artist": "Uptown", + "position": 92, + "title": "(I Know) I m Losing You" + }, + { + "artist": "Bananarama", + "position": 93, + "title": "A Trick Of The Night" + }, + { + "artist": "Stacy Lattisaw", + "position": 94, + "title": "Nail It To The Wall" + }, + { + "artist": "Eurythmics", + "position": 95, + "title": "Thorn In My Side" + }, + { + "artist": "Five Star", + "position": 96, + "title": "If I Say Yes" + }, + { + "artist": "Cyndi Lauper", + "position": 97, + "title": "True Colors" + }, + { + "artist": "Anita Baker", + "position": 98, + "title": "Sweet Love" + }, + { + "artist": "Steve Winwood", + "position": 99, + "title": "Freedom Overspill" + }, + { + "artist": "Rod Stewart", + "position": 100, + "title": "Every Beat Of My Heart" + } + ], + "title": "1986 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Judds", + "position": 1, + "title": "Have Mercy" + }, + { + "artist": "Kenny Rogers", + "position": 2, + "title": "Morning Desire" + }, + { + "artist": "Dan Seals", + "position": 3, + "title": "Bop" + }, + { + "artist": "Rosanne Cash", + "position": 4, + "title": "Never Be You" + }, + { + "artist": "Reba McEntire", + "position": 5, + "title": "Only In My Mind" + }, + { + "artist": "The Nitty Gritty Dirt Band", + "position": 6, + "title": "Home Again In My Heart" + }, + { + "artist": "Janie Frickie", + "position": 7, + "title": "Somebody Else s Fire" + }, + { + "artist": "Gene Watson", + "position": 8, + "title": "Memories To Burn" + }, + { + "artist": "The Forester Sisters", + "position": 9, + "title": "Just In Case" + }, + { + "artist": "Eddie Rabbitt", + "position": 10, + "title": "A World Without Love" + }, + { + "artist": "Restless Heart", + "position": 11, + "title": "(Back To The) Heartbreak Kid" + }, + { + "artist": "Juice Newton", + "position": 12, + "title": "Hurt" + }, + { + "artist": "John Conlee", + "position": 13, + "title": "Old School" + }, + { + "artist": "George Strait", + "position": 14, + "title": "The Chair" + }, + { + "artist": "Crystal Gayle And Gary Morris", + "position": 15, + "title": "Makin Up For Lost Time" + }, + { + "artist": "T. Graham Brown", + "position": 16, + "title": "I Tell It Like It Used To Be" + }, + { + "artist": "Sawyer Brown", + "position": 17, + "title": "Betty s Bein Bad" + }, + { + "artist": "Marie Osmond", + "position": 18, + "title": "There s No Stopping Your Heart" + }, + { + "artist": "Conway Twitty", + "position": 19, + "title": "The Legend And The Man" + }, + { + "artist": "Billy Joe Royal", + "position": 20, + "title": "Burned Like A Rocket" + }, + { + "artist": "Steve Wariner", + "position": 21, + "title": "You Can Dream Of Me" + }, + { + "artist": "The Oak Ridge Boys", + "position": 22, + "title": "Come On In (You Did The Best You Could)" + }, + { + "artist": "George Jones", + "position": 23, + "title": "The One I Loved Back Then (The Corvette Song)" + }, + { + "artist": "Waylon Jennings", + "position": 24, + "title": "The Devil s On The Loose" + }, + { + "artist": "Glen Campbell", + "position": 25, + "title": "It s Just A Matter Of Time" + } + ], + "title": "1985 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Lionel Richie", + "position": 1, + "title": "Say You, Say Me (Title Song From White Nights)" + }, + { + "artist": "Eddie Murphy", + "position": 2, + "title": "Party All The Time" + }, + { + "artist": "Simple Minds", + "position": 3, + "title": "Alive And Kicking" + }, + { + "artist": "Dionne", + "position": 4, + "title": "That s What Friends Are For" + }, + { + "artist": "Klymaxx", + "position": 5, + "title": "I Miss You" + }, + { + "artist": "John Mellencamp", + "position": 6, + "title": "Small Town" + }, + { + "artist": "Mr. Mister", + "position": 7, + "title": "Broken Wings" + }, + { + "artist": "Phil Collins/Marilyn Martin", + "position": 8, + "title": "Separate Lives (Theme From White Nights)" + }, + { + "artist": "The Cars", + "position": 9, + "title": "Tonight She Comes" + }, + { + "artist": "Arcadia", + "position": 10, + "title": "Election Day" + }, + { + "artist": "Stevie Nicks", + "position": 11, + "title": "Talk To Me" + }, + { + "artist": "ZZ Top", + "position": 12, + "title": "Sleeping Bag" + }, + { + "artist": "Dire Straits", + "position": 13, + "title": "Walk Of Life" + }, + { + "artist": "Scritti Politti", + "position": 14, + "title": "Perfect Way" + }, + { + "artist": "Survivor", + "position": 15, + "title": "Burning Heart" + }, + { + "artist": "Bruce Springsteen", + "position": 16, + "title": "My Hometown" + }, + { + "artist": "Sting", + "position": 17, + "title": "Love Is The Seventh Wave" + }, + { + "artist": "Kool", + "position": 18, + "title": "Emergency" + }, + { + "artist": "Bryan Adams/Tina Turner", + "position": 19, + "title": "It s Only Love" + }, + { + "artist": "Wham!", + "position": 20, + "title": "I m Your Man" + }, + { + "artist": "Miami Sound Machine", + "position": 21, + "title": "Conga" + }, + { + "artist": "Stevie Wonder", + "position": 22, + "title": "Go Home" + }, + { + "artist": "Clarence Clemons", + "position": 23, + "title": "You re A Friend Of Mine" + }, + { + "artist": "Paul McCartney", + "position": 24, + "title": "Spies Like Us" + }, + { + "artist": "Heart", + "position": 25, + "title": "Never" + }, + { + "artist": "Starship", + "position": 26, + "title": "We Built This City" + }, + { + "artist": "Night Ranger", + "position": 27, + "title": "Goodbye" + }, + { + "artist": "Ta Mara", + "position": 28, + "title": "Everybody Dance" + }, + { + "artist": "Starpoint", + "position": 29, + "title": "Object Of My Desire" + }, + { + "artist": "Jellybean", + "position": 30, + "title": "Sidewalk Talk" + }, + { + "artist": "Billy Ocean", + "position": 31, + "title": "When The Going Gets Tough (Jewel Of The Nile Theme)" + }, + { + "artist": "Pat Benatar", + "position": 32, + "title": "Sex As A Weapon" + }, + { + "artist": "Pete Townsend", + "position": 33, + "title": "Face The Face" + }, + { + "artist": "Aretha Franklin", + "position": 34, + "title": "Who s Zoomin Who" + }, + { + "artist": "Elton John", + "position": 35, + "title": "Wrap Her Up" + }, + { + "artist": "Whitney Houston", + "position": 36, + "title": "How Will I Know" + }, + { + "artist": "Sheila E", + "position": 37, + "title": "A Love Bizarre" + }, + { + "artist": "Sade", + "position": 38, + "title": "The Sweetest Taboo" + }, + { + "artist": "Corey Hart", + "position": 39, + "title": "Everything In My Heart" + }, + { + "artist": "Thompson Twins", + "position": 40, + "title": "Lay Your Hands On Me" + }, + { + "artist": "Artists United Against Apartheid", + "position": 41, + "title": "Sun City" + }, + { + "artist": "Eurythmics And Aretha Franklin", + "position": 42, + "title": "Sisters Are Doing It For Themselves" + }, + { + "artist": "A-Ha", + "position": 43, + "title": "The Sun Always Shines on T.V." + }, + { + "artist": "James Brown", + "position": 44, + "title": "Living In America" + }, + { + "artist": "Baltimora", + "position": 45, + "title": "Tarzan Boy (From \"Teenage Mutant Ninja Turtles III\")" + }, + { + "artist": "The Dream Academy", + "position": 46, + "title": "Life In A Northern Town" + }, + { + "artist": "Glenn Frey", + "position": 47, + "title": "You Belong To The City" + }, + { + "artist": "Rush", + "position": 48, + "title": "The Big Money" + }, + { + "artist": "Sheena Easton", + "position": 49, + "title": "Do It For Love" + }, + { + "artist": "Mr. Mister", + "position": 50, + "title": "Kyrie" + }, + { + "artist": "Wang Chung", + "position": 51, + "title": "To Live And Die In L.A." + }, + { + "artist": "Mike", + "position": 52, + "title": "Silent Running" + }, + { + "artist": "Asia", + "position": 53, + "title": "Go" + }, + { + "artist": "Ready For The World", + "position": 54, + "title": "Digital Display" + }, + { + "artist": "New Edition", + "position": 55, + "title": "Count Me Out" + }, + { + "artist": "Twisted Sister", + "position": 56, + "title": "Leader Of The Pack" + }, + { + "artist": "Paul Young", + "position": 57, + "title": "Everything Must Change" + }, + { + "artist": "Stevie Wonder", + "position": 58, + "title": "Part-Time Lover" + }, + { + "artist": "Jack Wagner", + "position": 59, + "title": "Too Young" + }, + { + "artist": "Freddie Jackson", + "position": 60, + "title": "You Are My Lady" + }, + { + "artist": "Jan Hammer", + "position": 61, + "title": "Miami Vice Theme" + }, + { + "artist": "Freddie Jackson", + "position": 62, + "title": "He ll Never Love You (Like I Do)" + }, + { + "artist": "Barbra Streisand", + "position": 63, + "title": "Somewhere (From West Side Story)" + }, + { + "artist": "Queen", + "position": 64, + "title": "One Vision" + }, + { + "artist": "Starship", + "position": 65, + "title": "Sara" + }, + { + "artist": "Hooters", + "position": 66, + "title": "Day By Day" + }, + { + "artist": "Isley/Jasper/Isley", + "position": 67, + "title": "Caravan Of Love" + }, + { + "artist": "David Foster", + "position": 68, + "title": "Love Theme From St. Elmo s Fire (Instrumental)" + }, + { + "artist": "Tears For Fears", + "position": 69, + "title": "Head Over Heels" + }, + { + "artist": "Lisa Lisa", + "position": 70, + "title": "Can You Feel The Beat" + }, + { + "artist": "James Taylor", + "position": 71, + "title": "Everyday" + }, + { + "artist": "Kenny Rogers", + "position": 72, + "title": "Morning Desire" + }, + { + "artist": "Tina Turner", + "position": 73, + "title": "One Of The Living" + }, + { + "artist": "Charlie Sexton", + "position": 74, + "title": "Beat s So Lonely" + }, + { + "artist": "Kate Bush", + "position": 75, + "title": "Running Up That Hill" + }, + { + "artist": "El DeBarge With DeBarge", + "position": 76, + "title": "The Heart Is Not So Smart" + }, + { + "artist": "O.M.D.", + "position": 77, + "title": "Secret" + }, + { + "artist": "Chaka Khan", + "position": 78, + "title": "Own The Night" + }, + { + "artist": "ABC", + "position": 79, + "title": "Be Near Me" + }, + { + "artist": "Atlantic Starr", + "position": 80, + "title": "Secret Lovers" + }, + { + "artist": "Nick Lowe", + "position": 81, + "title": "I Knew The Bride (When She Use To Rock N Roll)" + }, + { + "artist": "Eugene Wilde", + "position": 82, + "title": "Don t Say No Tonight" + }, + { + "artist": "John Cafferty", + "position": 83, + "title": "Small Town Girl" + }, + { + "artist": "Loverboy", + "position": 84, + "title": "Dangerous" + }, + { + "artist": "Sly Fox", + "position": 85, + "title": "Let s Go All The Way" + }, + { + "artist": "Fortune", + "position": 86, + "title": "Stacy" + }, + { + "artist": "Alisha", + "position": 87, + "title": "Baby Talk" + }, + { + "artist": "Joni Mitchell", + "position": 88, + "title": "Good Friends" + }, + { + "artist": "Roger Daltrey", + "position": 89, + "title": "Let Me Down Easy" + }, + { + "artist": "Kiss", + "position": 90, + "title": "Tears Are Falling" + }, + { + "artist": "The Alarm", + "position": 91, + "title": "Strength" + }, + { + "artist": "Whitney Houston", + "position": 92, + "title": "Saving All My Love For You" + }, + { + "artist": "Loverboy", + "position": 93, + "title": "Lovin Every Minute Of It" + }, + { + "artist": "Talking Heads", + "position": 94, + "title": "And She Was" + }, + { + "artist": "The Pointer Sisters", + "position": 95, + "title": "Freedom" + }, + { + "artist": "Olivia Newton-John", + "position": 96, + "title": "Soul Kiss" + }, + { + "artist": "A-Ha", + "position": 97, + "title": "Take On Me" + }, + { + "artist": "Sting", + "position": 98, + "title": "Fortress Around Your Heart" + }, + { + "artist": "Ray Parker Jr.", + "position": 99, + "title": "Girls Are More Fun" + }, + { + "artist": "John Mellencamp", + "position": 100, + "title": "Lonely Ol Night" + } + ], + "title": "1985 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Judds", + "position": 1, + "title": "Why Not Me" + }, + { + "artist": "George Jones", + "position": 2, + "title": "She's My Rock" + }, + { + "artist": "Nitty Gritty Dirt Band", + "position": 3, + "title": "I Love Only You" + }, + { + "artist": "George Strait", + "position": 4, + "title": "Does Fort Worth Ever Cross Your Mind" + }, + { + "artist": "Eddie Rabbitt", + "position": 5, + "title": "The Best Year Of My Life" + }, + { + "artist": "Waylon Jennings", + "position": 6, + "title": "America" + }, + { + "artist": "Reba McEntire", + "position": 7, + "title": "How Blue" + }, + { + "artist": "Anne Murray & Dave Loggins", + "position": 8, + "title": "Nobody Loves Me Like You Do" + }, + { + "artist": "Mark Gray", + "position": 9, + "title": "Diamond In The Dust" + }, + { + "artist": "Hank Williams Jr.", + "position": 10, + "title": "All My Rowdy Friends Are Coming Over Tonight" + }, + { + "artist": "Barbara Mandrell", + "position": 11, + "title": "Crossword Puzzle" + }, + { + "artist": "John Conlee", + "position": 12, + "title": "Years After You" + }, + { + "artist": "Crystal Gayle", + "position": 13, + "title": "Me Against The Night" + }, + { + "artist": "Merle Haggard", + "position": 14, + "title": "A Place To Fall Apart" + }, + { + "artist": "Gene Watson", + "position": 15, + "title": "Got No Reason Now For Goin' Home" + }, + { + "artist": "Alabama", + "position": 16, + "title": "(There's A) Fire In The Night" + }, + { + "artist": "The Bellamy Brothers", + "position": 17, + "title": "World's Greatest Lover" + }, + { + "artist": "Ricky Skaggs", + "position": 18, + "title": "Something In My Heart" + }, + { + "artist": "Conway Twitty", + "position": 19, + "title": "Ain't She Something Else" + }, + { + "artist": "The Oak Ridge Boys", + "position": 20, + "title": "Make My Life With You" + }, + { + "artist": "Keith Stegall", + "position": 21, + "title": "Whatever Turns You On" + }, + { + "artist": "T.G. Sheppard", + "position": 22, + "title": "One Owner Heart" + }, + { + "artist": "Sawyer Brown", + "position": 23, + "title": "Leona" + }, + { + "artist": "Ed Bruce", + "position": 24, + "title": "You Turn Me On (Like A Radio)" + }, + { + "artist": "B.J. Thomas", + "position": 25, + "title": "The Girl Most Likely to" + } + ], + "title": "1984 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Madonna", + "position": 1, + "title": "Like A Virgin" + }, + { + "artist": "Duran Duran", + "position": 2, + "title": "The Wild Boys" + }, + { + "artist": "Daryl Hall John Oates", + "position": 3, + "title": "Out Of Touch" + }, + { + "artist": "The Honeydrippers", + "position": 4, + "title": "Sea Of Love" + }, + { + "artist": "New Edition", + "position": 5, + "title": "Cool It Now" + }, + { + "artist": "Pat Benatar", + "position": 6, + "title": "We Belong" + }, + { + "artist": "Chaka Khan", + "position": 7, + "title": "I Feel For You" + }, + { + "artist": "Paul McCartney", + "position": 8, + "title": "No More Lonely Nights" + }, + { + "artist": "Jack Wagner", + "position": 9, + "title": "All I Need" + }, + { + "artist": "Julian Lennon", + "position": 10, + "title": "Valotte" + }, + { + "artist": "Wham!", + "position": 11, + "title": "Wake Me Up Before You Go-Go" + }, + { + "artist": "Bryan Adams", + "position": 12, + "title": "Run To You" + }, + { + "artist": "Cyndi Lauper", + "position": 13, + "title": "All Through The Night" + }, + { + "artist": "Bruce Springsteen", + "position": 14, + "title": "Born In The USA" + }, + { + "artist": "Chicago", + "position": 15, + "title": "You're The Inspiration" + }, + { + "artist": "Survivor", + "position": 16, + "title": "I Can't Hold Back" + }, + { + "artist": "Jermaine Jackson", + "position": 17, + "title": "Do What You Do" + }, + { + "artist": "Lionel Richie", + "position": 18, + "title": "Penny Lover" + }, + { + "artist": "Bob Seger", + "position": 19, + "title": "Understanding" + }, + { + "artist": "The Cars", + "position": 20, + "title": "Hello Again" + }, + { + "artist": "Foreigner", + "position": 21, + "title": "I Want To Know What Love Is" + }, + { + "artist": "Philip Bailey With Phil Collins", + "position": 22, + "title": "Easy Lover" + }, + { + "artist": "Sheena Easton", + "position": 23, + "title": "Strut" + }, + { + "artist": "Rebbie Jackson", + "position": 24, + "title": "Centipede" + }, + { + "artist": "Ray Parker Jr.", + "position": 25, + "title": "Jamie" + }, + { + "artist": "Huey Lewis & The News", + "position": 26, + "title": "Walking On A Thin Line" + }, + { + "artist": "Don Henley", + "position": 27, + "title": "The Boys Of Summer" + }, + { + "artist": "Dan Hartman", + "position": 28, + "title": "We Are The Young" + }, + { + "artist": "Tina Turner", + "position": 29, + "title": "Better Be Good To Me" + }, + { + "artist": "Toto", + "position": 30, + "title": "Stranger In Town" + }, + { + "artist": "Billy Ocean", + "position": 31, + "title": "Lover Boy" + }, + { + "artist": "Prince And The Revolution", + "position": 32, + "title": "I Would Die 4 U" + }, + { + "artist": "Rick Springfield", + "position": 33, + "title": "Bruce" + }, + { + "artist": "Sheila E", + "position": 34, + "title": "The Belle Of St. Mark" + }, + { + "artist": "John Cafferty & The Beaver Brown Band", + "position": 35, + "title": "Tender Years" + }, + { + "artist": "Stevie Wonder", + "position": 36, + "title": "Love Light In Flight" + }, + { + "artist": "Wham! Featuring George Michael", + "position": 37, + "title": "Careless Whisper" + }, + { + "artist": "U2", + "position": 38, + "title": "(Pride) In The Name Of Love" + }, + { + "artist": "Steve Perry", + "position": 39, + "title": "Foolish Heart" + }, + { + "artist": "The Pointer Sisters", + "position": 40, + "title": "Neutron Dance" + }, + { + "artist": "Giuffria", + "position": 41, + "title": "Call To The Heart" + }, + { + "artist": "Daryl Hall John Oates", + "position": 42, + "title": "Method Of Modern Love" + }, + { + "artist": "Elton John", + "position": 43, + "title": "In Neon" + }, + { + "artist": "Corey Hart", + "position": 44, + "title": "It Ain't Enough" + }, + { + "artist": "Ashford & Simpson", + "position": 45, + "title": "Solid" + }, + { + "artist": "Kool & The Gang", + "position": 46, + "title": "Misled" + }, + { + "artist": "Midnight Star", + "position": 47, + "title": "Operator" + }, + { + "artist": "Frankie Goes To Hollywood", + "position": 48, + "title": "Two Tribes" + }, + { + "artist": "The Time", + "position": 49, + "title": "Jungle Love" + }, + { + "artist": "Culture Club", + "position": 50, + "title": "Mistake No. 3" + }, + { + "artist": "General Public", + "position": 51, + "title": "Tenderness" + }, + { + "artist": "Glenn Frey", + "position": 52, + "title": "The Heat Is On" + }, + { + "artist": "David Bowie", + "position": 53, + "title": "Tonight" + }, + { + "artist": "Prince And The Revolution", + "position": 54, + "title": "Purple Rain" + }, + { + "artist": "Laura Branigan", + "position": 55, + "title": "Ti Amo" + }, + { + "artist": "Diana Ross", + "position": 56, + "title": "Missing You" + }, + { + "artist": "Cyndi Lauper", + "position": 57, + "title": "Money Changes Everything" + }, + { + "artist": "Barbra Streisand With Kim Carnes", + "position": 58, + "title": "Make No Mistake, He's Mine" + }, + { + "artist": "REO Speedwagon", + "position": 59, + "title": "I Do'wanna Know" + }, + { + "artist": "Sheena Easton", + "position": 60, + "title": "Sugar Walls" + }, + { + "artist": "John Fogerty", + "position": 61, + "title": "The Old Man Down The Road" + }, + { + "artist": "Billy Ocean", + "position": 62, + "title": "Caribbean Queen (No More Love On The Run)" + }, + { + "artist": "Stevie Wonder", + "position": 63, + "title": "I Just Called To Say I Love You" + }, + { + "artist": "Jeffrey Osborne", + "position": 64, + "title": "Don't Stop" + }, + { + "artist": "Band-Aid", + "position": 65, + "title": "Do They Know It's Christmas?" + }, + { + "artist": "Roger Hodgson", + "position": 66, + "title": "Had A Dream (Sleeping With The Enemy)" + }, + { + "artist": "Dennis DeYoung", + "position": 67, + "title": "Desert Moon" + }, + { + "artist": "Teena Marie", + "position": 68, + "title": "Lover Girl" + }, + { + "artist": "Billy Idol", + "position": 69, + "title": "Catch My Fall" + }, + { + "artist": "George Benson", + "position": 70, + "title": "20/20" + }, + { + "artist": "Alphaville", + "position": 71, + "title": "Big In Japan" + }, + { + "artist": "John Hunter", + "position": 72, + "title": "Tragedy" + }, + { + "artist": "Shalamar", + "position": 73, + "title": "Amnesia" + }, + { + "artist": "The Temptations", + "position": 74, + "title": "Treat Her Like A Lady" + }, + { + "artist": "Rick Dees", + "position": 75, + "title": "Eat My Shorts" + }, + { + "artist": "John Parr", + "position": 76, + "title": "Naughty Naughty" + }, + { + "artist": "Tommy Shaw", + "position": 77, + "title": "Lonely School" + }, + { + "artist": "Billy Squier", + "position": 78, + "title": "Eye On You" + }, + { + "artist": "New Edition", + "position": 79, + "title": "Mr. Telephone Man" + }, + { + "artist": "Rod Stewart", + "position": 80, + "title": "All Right Now" + }, + { + "artist": "John Waite", + "position": 81, + "title": "Tears" + }, + { + "artist": "Kenny Rogers", + "position": 83, + "title": "The Greatest Gift Of All" + }, + { + "artist": "Rick Springfield With Randy Crawford", + "position": 85, + "title": "Taxi Dancing" + }, + { + "artist": "Bronski Beat", + "position": 86, + "title": "Small Town Boy" + }, + { + "artist": "The Kinks", + "position": 87, + "title": "Do It Again" + }, + { + "artist": "Kenny Rogers With Kim Carnes & James Ingram", + "position": 88, + "title": "What About Me?" + }, + { + "artist": "Autograph", + "position": 89, + "title": "Turn Up The Radio" + }, + { + "artist": "Sammy Hagar", + "position": 91, + "title": "I Can't Drive 55" + }, + { + "artist": "Bananarama", + "position": 92, + "title": "The Wild Life" + }, + { + "artist": "Dazz Band", + "position": 93, + "title": "Let It All Blow" + }, + { + "artist": "David Bowie", + "position": 94, + "title": "Blue Jean" + }, + { + "artist": "The Pointer Sisters", + "position": 95, + "title": "I'm So Excited" + }, + { + "artist": "Culture Club", + "position": 96, + "title": "The War Song" + }, + { + "artist": "Peter Wolf", + "position": 97, + "title": "I Need You Tonight" + }, + { + "artist": "Scandal Featuring Patty Smyth", + "position": 98, + "title": "Hands Tied" + }, + { + "artist": "Dennis DeYoung", + "position": 99, + "title": "Don't Wait For Heroes" + }, + { + "artist": "Melissa Manchester", + "position": 100, + "title": "Thief Of Hearts" + } + ], + "title": "1984 - Hot 100" + }, + { + "songs": [ + { + "artist": "Larry Gatlin & The Gatlin Brothers", + "position": 1, + "title": "Houston (Means I'm One Day Closer To You)" + }, + { + "artist": "George Strait", + "position": 2, + "title": "You Look So Good In Love" + }, + { + "artist": "T.G. Sheppard", + "position": 3, + "title": "Slow Burn" + }, + { + "artist": "John Anderson", + "position": 4, + "title": "Black Sheep" + }, + { + "artist": "Charley Pride", + "position": 5, + "title": "Ev'ry Heart Should Have One" + }, + { + "artist": "The Oak Ridge Boys", + "position": 6, + "title": "Ozark Mountain Jubilee" + }, + { + "artist": "John Conlee", + "position": 7, + "title": "In My Eyes" + }, + { + "artist": "Ronnie McDowell", + "position": 8, + "title": "You Made A Wanted Man Of Me" + }, + { + "artist": "Nitty Gritty Dirt Band", + "position": 9, + "title": "Dance Little Jean" + }, + { + "artist": "Vern Gosdin", + "position": 10, + "title": "I Wonder Where We'd Be Tonight" + }, + { + "artist": "Crystal Gayle", + "position": 11, + "title": "The Sound Of Goodbye" + }, + { + "artist": "Hank Williams Jr.", + "position": 12, + "title": "Queen Of My Heart" + }, + { + "artist": "Ronnie Milsap", + "position": 13, + "title": "Show Her" + }, + { + "artist": "Willie Nelson With Waylon Jennings", + "position": 14, + "title": "Take It To The Limit" + }, + { + "artist": "Waylon Jennings With Hank Williams, Jr.", + "position": 15, + "title": "The Conversation" + }, + { + "artist": "Joe Stampley", + "position": 16, + "title": "Double Shot (Of My Baby's Love)" + }, + { + "artist": "Charly McClain", + "position": 17, + "title": "Sentimental Ol' You" + }, + { + "artist": "Gail Davies", + "position": 18, + "title": "You're A Hard Dog (To Keep Under The Porch)" + }, + { + "artist": "Mark Gray", + "position": 19, + "title": "Wounded Hearts" + }, + { + "artist": "Merle Haggard", + "position": 20, + "title": "That's The Way Love Goes" + }, + { + "artist": "Shelly West", + "position": 21, + "title": "Another Motel Memory" + }, + { + "artist": "Ed Bruce", + "position": 22, + "title": "After All" + }, + { + "artist": "Louise Mandrell", + "position": 23, + "title": "Runaway Heart" + }, + { + "artist": "Mel McDaniel", + "position": 24, + "title": "I Call It Love" + }, + { + "artist": "Kathy Mattea", + "position": 25, + "title": "Street Talk" + } + ], + "title": "1983 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Paul McCartney And Michael Jackson", + "position": 1, + "title": "Say Say Say" + }, + { + "artist": "Daryl Hall John Oates", + "position": 2, + "title": "Say It Isn't So" + }, + { + "artist": "Duran Duran", + "position": 3, + "title": "Union Of The Snake" + }, + { + "artist": "Yes", + "position": 4, + "title": "Owner Of A Lonely Heart" + }, + { + "artist": "Lionel Richie", + "position": 5, + "title": "All Night Long (All Night)" + }, + { + "artist": "Billy Joel", + "position": 6, + "title": "Uptown Girl" + }, + { + "artist": "The Rolling Stones", + "position": 9, + "title": "Undercover Of The Night" + }, + { + "artist": "Matthew Wilder", + "position": 10, + "title": "Break My Stride" + }, + { + "artist": "Elton John", + "position": 11, + "title": "I Guess That's Why They Call It The Blues" + }, + { + "artist": "The Romantics", + "position": 12, + "title": "Talking In Your Sleep" + }, + { + "artist": "Culture Club", + "position": 13, + "title": "Church Of The Poison Mind" + }, + { + "artist": "Peter Schilling", + "position": 14, + "title": "Major Tom (Coming Home)" + }, + { + "artist": "Quiet Riot", + "position": 15, + "title": "Cum On Feel The Noize" + }, + { + "artist": "The Police", + "position": 16, + "title": "Synchronicity II" + }, + { + "artist": "Culture Club", + "position": 17, + "title": "Karma Chameleon" + }, + { + "artist": "Kenny Rogers with Dolly Parton", + "position": 18, + "title": "Islands In The Stream" + }, + { + "artist": "Irene Cara", + "position": 19, + "title": "Why Me?" + }, + { + "artist": "Big Country", + "position": 20, + "title": "In A Big Country" + }, + { + "artist": "Lionel Richie", + "position": 21, + "title": "Running With The Night" + }, + { + "artist": "Kool & The Gang", + "position": 22, + "title": "Joanna" + }, + { + "artist": "Barry Manilow", + "position": 23, + "title": "Read 'Em And Weep" + }, + { + "artist": "John Cougar Mellencamp", + "position": 24, + "title": "Crumblin' Down" + }, + { + "artist": "Thirty Eight Special", + "position": 25, + "title": "If I'd Been The One" + }, + { + "artist": "Debarge", + "position": 26, + "title": "Time Will Reveal" + }, + { + "artist": "Genesis", + "position": 27, + "title": "That's All" + }, + { + "artist": "Ray Parker Jr.", + "position": 28, + "title": "I Still Can't Get Over Loving You" + }, + { + "artist": "John Mellencamp", + "position": 29, + "title": "Pink Houses" + }, + { + "artist": "Rufus & Chaka Khan", + "position": 30, + "title": "Ain't Nobody" + }, + { + "artist": "Madonna", + "position": 31, + "title": "Holiday" + }, + { + "artist": "Jump 'n The Saddle", + "position": 32, + "title": "The Curly Shuffle" + }, + { + "artist": "Jeffrey Osborne", + "position": 33, + "title": "Stay With Me Tonight" + }, + { + "artist": "Spandau Ballet", + "position": 34, + "title": "Gold" + }, + { + "artist": "The Fixx", + "position": 35, + "title": "The Sign Of Fire" + }, + { + "artist": "Huey Lewis & The News", + "position": 36, + "title": "Heart And Soul" + }, + { + "artist": "Naked Eyes", + "position": 37, + "title": "When The Lights Go Out" + }, + { + "artist": "Christopher Cross", + "position": 38, + "title": "Think Of Laura" + }, + { + "artist": "Deborah Allen", + "position": 39, + "title": "Baby I Lied" + }, + { + "artist": "Robert Plant", + "position": 40, + "title": "In The Mood" + }, + { + "artist": "Rick Springfield", + "position": 41, + "title": "Souls" + }, + { + "artist": "Shannon", + "position": 42, + "title": "Let The Music Play" + }, + { + "artist": "Pretenders", + "position": 43, + "title": "Middle Of The Road" + }, + { + "artist": "Billy Joel", + "position": 44, + "title": "An Innocent Man" + }, + { + "artist": "The Motels", + "position": 45, + "title": "Remember The Night" + }, + { + "artist": "Real Life", + "position": 46, + "title": "Send Me An Angel" + }, + { + "artist": "Michael Jackson", + "position": 47, + "title": "P.Y.T. (Pretty Young Thing)" + }, + { + "artist": "Stevie Nicks", + "position": 48, + "title": "Nightbird" + }, + { + "artist": "Paul McCartney", + "position": 49, + "title": "So Bad" + }, + { + "artist": "James Ingram With Michael McDonald", + "position": 50, + "title": "Yah Mo B There" + }, + { + "artist": "Bonnie Tyler", + "position": 51, + "title": "Take Me Back" + }, + { + "artist": "Rick James And Smokey Robinson", + "position": 52, + "title": "Ebony Eyes" + }, + { + "artist": "Linda Ronstadt & The Nelson Riddle Orchestra", + "position": 53, + "title": "What's New" + }, + { + "artist": "The Alan Parsons Project", + "position": 54, + "title": "You Don't Believe" + }, + { + "artist": "Eddie Money", + "position": 55, + "title": "Big Crash" + }, + { + "artist": "Stray Cats", + "position": 56, + "title": "I Won't Stand In Your Way" + }, + { + "artist": "Barbra Streisand", + "position": 57, + "title": "The Way He Makes Me Feel" + }, + { + "artist": "Irene Cara", + "position": 58, + "title": "The Dream" + }, + { + "artist": "Re-flex", + "position": 59, + "title": "The Politics Of Dancing" + }, + { + "artist": "Dolly Parton", + "position": 60, + "title": "Save The Last Dance For Me" + }, + { + "artist": "Night Ranger", + "position": 61, + "title": "(You Can Still) Rock In America" + }, + { + "artist": "Nena", + "position": 62, + "title": "99 Luftballons" + }, + { + "artist": "Sheena Easton", + "position": 63, + "title": "Almost Over You" + }, + { + "artist": "Midnight Star", + "position": 64, + "title": "Wet My Whistle" + }, + { + "artist": "Talking Heads", + "position": 65, + "title": "This Must Be The Place" + }, + { + "artist": "Kiss", + "position": 66, + "title": "Lick It Up" + }, + { + "artist": "KC", + "position": 67, + "title": "Give It Up" + }, + { + "artist": "Bonnie Tyler", + "position": 68, + "title": "Total Eclipse Of The Heart" + }, + { + "artist": "Cyndi Lauper", + "position": 69, + "title": "Girls Just Want To Have Fun" + }, + { + "artist": "Peabo Bryson/Roberta Flack", + "position": 70, + "title": "Tonight, I Celebrate My Love" + }, + { + "artist": "Sheena Easton", + "position": 71, + "title": "Telefone (long Distance Love Affair)" + }, + { + "artist": "The Motels", + "position": 72, + "title": "Suddenly Last Summer" + }, + { + "artist": "The Doors", + "position": 73, + "title": "Gloria" + }, + { + "artist": "Peabo Bryson & Roberta Flack", + "position": 74, + "title": "You're Looking Like Love To Me" + }, + { + "artist": "Rainbow", + "position": 75, + "title": "Street Of Dreams" + }, + { + "artist": "Jackson Browne", + "position": 76, + "title": "Tender Is The Night" + }, + { + "artist": "Herb Alpert", + "position": 77, + "title": "Red Hot" + }, + { + "artist": "Asia", + "position": 78, + "title": "The Smile Has Left Your Eyes" + }, + { + "artist": "Air Supply", + "position": 80, + "title": "Making Love Out Of Nothing At All" + }, + { + "artist": "Michael Stanley Band", + "position": 81, + "title": "Someone Like You" + }, + { + "artist": "Prince And The Revolution", + "position": 82, + "title": "Let's Pretend We're Married/Irresistible Bitch" + }, + { + "artist": "Diana Ross", + "position": 83, + "title": "Let's Go Up" + }, + { + "artist": "Crystal Gayle", + "position": 84, + "title": "The Sound Of Goodbye" + }, + { + "artist": "Bob Dylan", + "position": 85, + "title": "Sweetheart Like You" + }, + { + "artist": "Rodney Dangerfield", + "position": 86, + "title": "Rappin' Rodney" + }, + { + "artist": "Atlantic Starr", + "position": 87, + "title": "Touch A Four Leaf Clover" + }, + { + "artist": "The Pointer Sisters", + "position": 88, + "title": "I Need You" + }, + { + "artist": "The Headpins", + "position": 89, + "title": "Just One More Time" + }, + { + "artist": "Twilight 22", + "position": 90, + "title": "Electric Kingdom" + }, + { + "artist": "Jennifer Holliday", + "position": 91, + "title": "I Am Love" + }, + { + "artist": "Journey", + "position": 92, + "title": "Send Her My Love" + }, + { + "artist": "Earth, Wind & Fire", + "position": 93, + "title": "Magnetic" + }, + { + "artist": "The Fixx", + "position": 94, + "title": "One Thing Leads To Another" + }, + { + "artist": "Kim Carnes", + "position": 95, + "title": "Invisible Hands" + }, + { + "artist": "Paul Simon", + "position": 96, + "title": "Allergies" + }, + { + "artist": "Industry", + "position": 97, + "title": "State Of The Union" + }, + { + "artist": "Streets", + "position": 98, + "title": "If Love Should Go" + }, + { + "artist": "Prince", + "position": 99, + "title": "Delirious" + }, + { + "artist": "Dionne Warwick & Luther Vandross", + "position": 100, + "title": "How Many Times Can We Say Goodbye" + } + ], + "title": "1983 - Hot 100" + }, + { + "songs": [ + { + "artist": "John Anderson", + "position": 1, + "title": "Wild And Blue" + }, + { + "artist": "Jerry Reed", + "position": 2, + "title": "The Bird" + }, + { + "artist": "Kenny Rogers", + "position": 3, + "title": "A Love Song" + }, + { + "artist": "Reba McEntire", + "position": 4, + "title": "Can't Even Get The Blues" + }, + { + "artist": "Merle Haggard", + "position": 5, + "title": "Going Where The Lonely Go" + }, + { + "artist": "David Frizzell", + "position": 6, + "title": "Lost My Baby Blues" + }, + { + "artist": "George Strait", + "position": 7, + "title": "Marina Del Rey" + }, + { + "artist": "Emmylou Harris", + "position": 8, + "title": "(lost His Love) On Our Last Date" + }, + { + "artist": "Rosanne Cash", + "position": 9, + "title": "I Wonder" + }, + { + "artist": "Johnny Lee And Friends", + "position": 10, + "title": "Cherokee Fiddle" + }, + { + "artist": "John Conlee", + "position": 11, + "title": "I Don't Remember Loving You" + }, + { + "artist": "Sylvia 1", + "position": 12, + "title": "Like Nothing Ever Happened" + }, + { + "artist": "Waylon & Willie", + "position": 13, + "title": "(Sittin' On) The Dock Of The Bay" + }, + { + "artist": "Earl Thomas Conley", + "position": 14, + "title": "Somewhere Between Right And Wrong" + }, + { + "artist": "Mickey Gilley", + "position": 15, + "title": "Talk To Me" + }, + { + "artist": "Charly McClain", + "position": 16, + "title": "With You" + }, + { + "artist": "Dolly Parton", + "position": 17, + "title": "Hard Candy Christmas" + }, + { + "artist": "The Statler Brothers", + "position": 18, + "title": "A Child Of The Fifties" + }, + { + "artist": "Ronnie Milsap", + "position": 19, + "title": "Inside/carolina Dreams" + }, + { + "artist": "The Oak Ridge Boys", + "position": 20, + "title": "Thank God For Kids" + }, + { + "artist": "Moe Bandy", + "position": 21, + "title": "Only If There Is Another You" + }, + { + "artist": "Vern Gosdin", + "position": 22, + "title": "Today My World Slipped Away" + }, + { + "artist": "Gene Watson", + "position": 23, + "title": "What She Don't Know Won't Hurt Her" + }, + { + "artist": "Crystal Gayle", + "position": 24, + "title": "'til I Gain Control Again" + }, + { + "artist": "Gail Davies", + "position": 25, + "title": "Hold On" + } + ], + "title": "1982 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Daryl Hall John Oates", + "position": 1, + "title": "Maneater" + }, + { + "artist": "Toni Basil", + "position": 2, + "title": "Mickey" + }, + { + "artist": "Michael Jackson And Paul McCartney", + "position": 3, + "title": "The Girl Is Mine" + }, + { + "artist": "Don Henley", + "position": 4, + "title": "Dirty Laundry" + }, + { + "artist": "Laura Branigan", + "position": 5, + "title": "Gloria" + }, + { + "artist": "Joe Jackson", + "position": 6, + "title": "Steppin' Out" + }, + { + "artist": "Marvin Gaye", + "position": 7, + "title": "Sexual Healing" + }, + { + "artist": "Men At Work", + "position": 8, + "title": "Down Under" + }, + { + "artist": "Stray Cats", + "position": 9, + "title": "Rock This Town" + }, + { + "artist": "Lionel Richie", + "position": 10, + "title": "Truly" + }, + { + "artist": "Supertramp Featuring Roger Hodgson", + "position": 11, + "title": "It's Raining Again" + }, + { + "artist": "Dionne Warwick", + "position": 12, + "title": "Heartbreaker" + }, + { + "artist": "Pat Benatar", + "position": 13, + "title": "Shadows Of The Night" + }, + { + "artist": "Toto", + "position": 14, + "title": "Africa" + }, + { + "artist": "The Clash", + "position": 15, + "title": "Rock The Casbah" + }, + { + "artist": "Eddie Rabbitt With Crystal Gayle", + "position": 16, + "title": "You And I" + }, + { + "artist": "Patti Austin With James Ingram", + "position": 17, + "title": "Baby, Come To Me" + }, + { + "artist": "Little River Band", + "position": 18, + "title": "The Other Guy" + }, + { + "artist": "ABC", + "position": 19, + "title": "The Look Of Love (Part One)" + }, + { + "artist": "Phil Collins", + "position": 20, + "title": "You Can't Hurry Love" + }, + { + "artist": "Joe Cocker And Jennifer Warnes", + "position": 21, + "title": "Up Where We Belong" + }, + { + "artist": "Kenny Loggins", + "position": 22, + "title": "Heart To Heart" + }, + { + "artist": "Dan Fogelberg", + "position": 23, + "title": "Missing You" + }, + { + "artist": "John Cougar", + "position": 24, + "title": "Hand To Hold On To" + }, + { + "artist": "Adam Ant", + "position": 25, + "title": "Goody Two Shoes" + }, + { + "artist": "The J. Geils Band", + "position": 26, + "title": "I Do" + }, + { + "artist": "Fleetwood Mac", + "position": 27, + "title": "Love In Store" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 28, + "title": "You Got Lucky" + }, + { + "artist": "Jeffrey Osborne", + "position": 29, + "title": "On The Wings Of Love" + }, + { + "artist": "Bob Seger & The Silver Bullet Band", + "position": 30, + "title": "Shame On The Moon" + }, + { + "artist": "Kool & The Gang", + "position": 31, + "title": "Let's Go Dancin' (ooh La, La, La)" + }, + { + "artist": "Billy Squier", + "position": 32, + "title": "Everybody Wants You" + }, + { + "artist": "Tavares", + "position": 33, + "title": "A Penny For Your Thoughts" + }, + { + "artist": "Moving Pictures", + "position": 34, + "title": "What About Me" + }, + { + "artist": "Peter Gabriel", + "position": 35, + "title": "Shock The Monkey" + }, + { + "artist": "Juice Newton", + "position": 36, + "title": "Heart Of The Night" + }, + { + "artist": "Billy Joel", + "position": 37, + "title": "Allentown" + }, + { + "artist": "Kim Carnes", + "position": 38, + "title": "Does It Make You Remember" + }, + { + "artist": "Sammy Hagar", + "position": 39, + "title": "Your Love Is Driving Me Crazy" + }, + { + "artist": "Air Supply", + "position": 40, + "title": "Two Less Lonely People In The World" + }, + { + "artist": "Diana Ross", + "position": 41, + "title": "Muscles" + }, + { + "artist": "A Flock Of Seagulls", + "position": 42, + "title": "Space Age Love Song" + }, + { + "artist": "Stray Cats", + "position": 43, + "title": "Stray Cat Strut" + }, + { + "artist": "Michael McDonald", + "position": 44, + "title": "I Gotta Try" + }, + { + "artist": "Barry Manilow", + "position": 45, + "title": "Memory" + }, + { + "artist": "Olivia Newton-John", + "position": 46, + "title": "Heart Attack" + }, + { + "artist": "Ray Parker Jr.", + "position": 47, + "title": "Bad Boy" + }, + { + "artist": "America", + "position": 48, + "title": "Right Before Your Eyes" + }, + { + "artist": "Glenn Frey", + "position": 49, + "title": "All Those Lies" + }, + { + "artist": "Sonny Charles", + "position": 50, + "title": "Put It In A Magazine" + }, + { + "artist": "Culture Club", + "position": 51, + "title": "Do You Really Want To Hurt Me" + }, + { + "artist": "Golden Earring", + "position": 52, + "title": "Twilight Zone" + }, + { + "artist": "Linda Ronstadt", + "position": 53, + "title": "I Knew You When" + }, + { + "artist": "Frida", + "position": 54, + "title": "I Know There's Something Going On" + }, + { + "artist": "Luther Vandross", + "position": 55, + "title": "Bad Boy/Having A Party" + }, + { + "artist": "Saga", + "position": 56, + "title": "On The Loose" + }, + { + "artist": "The Alan Parsons Project", + "position": 57, + "title": "Psychobabble" + }, + { + "artist": "Jefferson Starship", + "position": 58, + "title": "Be My Lady" + }, + { + "artist": "Musical Youth", + "position": 59, + "title": "Pass The Dutchie" + }, + { + "artist": "Donna Summer", + "position": 60, + "title": "The Woman In Me" + }, + { + "artist": "Joni Mitchell", + "position": 61, + "title": "(you're So Square) Baby, I Don't Care" + }, + { + "artist": "Chilliwack", + "position": 62, + "title": "Whatcha Gonna Do" + }, + { + "artist": "Pretenders", + "position": 63, + "title": "Back On The Chain Gang" + }, + { + "artist": "Lanier & Co.", + "position": 64, + "title": "After I Cry Tonight" + }, + { + "artist": "Prince", + "position": 65, + "title": "1999" + }, + { + "artist": "Santana", + "position": 66, + "title": "Nowhere To Run" + }, + { + "artist": "Wolf", + "position": 67, + "title": "Papa Was A Rollin' Stone" + }, + { + "artist": "The Steve Miller Band", + "position": 68, + "title": "Give It Up" + }, + { + "artist": "Lee Ritenour", + "position": 69, + "title": "Cross My Heart" + }, + { + "artist": "Charlene & Stevie Wonder", + "position": 70, + "title": "Used To Be" + }, + { + "artist": "Elvis Presley", + "position": 71, + "title": "The Elvis Medley" + }, + { + "artist": "Commodores", + "position": 72, + "title": "Painted Picture" + }, + { + "artist": "Janet Jackson", + "position": 73, + "title": "Young Love" + }, + { + "artist": "Pia Zadora", + "position": 74, + "title": "The Clapping Song" + }, + { + "artist": "The Spinners", + "position": 75, + "title": "Funny How Time Slips Away" + }, + { + "artist": "Rough Trade", + "position": 76, + "title": "All Touch" + }, + { + "artist": "Duran Duran", + "position": 77, + "title": "Hungry Like The Wolf" + }, + { + "artist": "Hot Chocolate", + "position": 78, + "title": "Are You Getting Enough Happiness" + }, + { + "artist": "Poco", + "position": 79, + "title": "Shoot For The Moon" + }, + { + "artist": "The Who", + "position": 80, + "title": "Eminence Front" + }, + { + "artist": "Little Steven", + "position": 81, + "title": "Forever" + }, + { + "artist": "Hughes/Thrall", + "position": 82, + "title": "Beg, Borrow Or Steal" + }, + { + "artist": "Donald Fagen", + "position": 83, + "title": "I.g.y. (what A Beautiful World)" + }, + { + "artist": "Crosby, Stills & Nash", + "position": 84, + "title": "Southern Cross" + }, + { + "artist": "Scandal Featuring Patty Smyth", + "position": 85, + "title": "Goodbye To You" + }, + { + "artist": "Bill Conti", + "position": 86, + "title": "Theme From Dynasty" + }, + { + "artist": "Neil Diamond", + "position": 87, + "title": "Heartlight" + }, + { + "artist": "Tyrone Davis", + "position": 88, + "title": "Are You Serious" + }, + { + "artist": "Michael Stanley Band", + "position": 89, + "title": "Take The Time" + }, + { + "artist": "Unipop", + "position": 90, + "title": "What If (I Said I Love You)" + }, + { + "artist": "Chicago", + "position": 91, + "title": "Love Me Tomorrow" + }, + { + "artist": "Missing Persons", + "position": 92, + "title": "Destination Unknown" + }, + { + "artist": "Billy Joel", + "position": 93, + "title": "Pressure" + }, + { + "artist": "Sylvia", + "position": 94, + "title": "Nobody" + }, + { + "artist": "Men At Work", + "position": 95, + "title": "Who Can It Be Now?" + }, + { + "artist": "The Motels", + "position": 96, + "title": "Forever Mine" + }, + { + "artist": "Rodway", + "position": 97, + "title": "Don't Stop Trying" + }, + { + "artist": "The Pointer Sisters", + "position": 98, + "title": "I'm So Excited" + }, + { + "artist": "Steel Breeze", + "position": 99, + "title": "You Don't Want Me Anymore" + }, + { + "artist": "Survivor", + "position": 100, + "title": "American Heartbeat" + } + ], + "title": "1982 - Hot 100" + }, + { + "songs": [ + { + "artist": "Alabama", + "position": 1, + "title": "Love In The First Degree/Ride The Train" + }, + { + "artist": "Gene Watson", + "position": 2, + "title": "Fourteen Karat Mind" + }, + { + "artist": "Crystal Gayle", + "position": 3, + "title": "The Woman In Me" + }, + { + "artist": "Ronnie Milsap", + "position": 4, + "title": "I Wouldn't Have Missed It For The World" + }, + { + "artist": "Conway Twitty", + "position": 5, + "title": "Red Neckin Love Makin Night" + }, + { + "artist": "Juice Newton", + "position": 6, + "title": "The Sweetest Thing (I've Ever Known)" + }, + { + "artist": "The Bellamy Brothers", + "position": 7, + "title": "You're My Favorite Star" + }, + { + "artist": "Gary Morris", + "position": 8, + "title": "Headed For A Heartache" + }, + { + "artist": "Mac Davis", + "position": 9, + "title": "You're My Bestest Friend" + }, + { + "artist": "Mickey Gilley", + "position": 10, + "title": "Lonely Nights" + }, + { + "artist": "Moe Bandy", + "position": 11, + "title": "Rodeo Romeo" + }, + { + "artist": "Earl Thomas Conley", + "position": 12, + "title": "Tell Me Why" + }, + { + "artist": "The Statler Brothers", + "position": 13, + "title": "Years Ago" + }, + { + "artist": "Eddy Raven", + "position": 14, + "title": "Who Do You Know In California" + }, + { + "artist": "Eddie Rabbitt", + "position": 15, + "title": "Someone Could Lose A Heart Tonight" + }, + { + "artist": "Kenny Rogers", + "position": 16, + "title": "Blaze Of Glory" + }, + { + "artist": "Dottie West", + "position": 17, + "title": "It's High Time" + }, + { + "artist": "Jim Reeves And Patsy Cline", + "position": 18, + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)" + }, + { + "artist": "Ronnie McDowell", + "position": 19, + "title": "Watchin' Girls Go By" + }, + { + "artist": "Lee Greenwood", + "position": 20, + "title": "It Turns Me Inside Out" + }, + { + "artist": "Don Williams", + "position": 21, + "title": "Lord, I Hope This Day Is Good" + }, + { + "artist": "Leon Everette", + "position": 22, + "title": "Midnight Rodeo" + }, + { + "artist": "Kieran Kane", + "position": 23, + "title": "It's Who You Love" + }, + { + "artist": "Mel McDaniel", + "position": 24, + "title": "Preaching Up A Storm" + }, + { + "artist": "Ray Price", + "position": 25, + "title": "Diamonds In The Stars" + } + ], + "title": "1981 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "Olivia Newton-John", + "position": 1, + "title": "Physical" + }, + { + "artist": "Foreigner", + "position": 2, + "title": "Waiting For A Girl Like You" + }, + { + "artist": "Earth, Wind & Fire", + "position": 3, + "title": "Let's Groove" + }, + { + "artist": "Daryl Hall John Oates", + "position": 4, + "title": "I Can't Go For That (No Can Do)" + }, + { + "artist": "Rod Stewart", + "position": 5, + "title": "Young Turks" + }, + { + "artist": "Quarterflash", + "position": 6, + "title": "Harden My Heart" + }, + { + "artist": "Diana Ross", + "position": 7, + "title": "Why Do Fools Fall In Love" + }, + { + "artist": "Stevie Nicks With Don Henley", + "position": 8, + "title": "Leather And Lace" + }, + { + "artist": "Journey", + "position": 9, + "title": "Don't Stop Believin'" + }, + { + "artist": "Lindsey Buckingham", + "position": 10, + "title": "Trouble" + }, + { + "artist": "The J. Geils Band", + "position": 11, + "title": "Centerfold" + }, + { + "artist": "Neil Diamond", + "position": 12, + "title": "Yesterday's Songs" + }, + { + "artist": "Barbra Streisand", + "position": 13, + "title": "Comin' In And Out Of Your Life" + }, + { + "artist": "George Benson", + "position": 14, + "title": "Turn Your Love Around" + }, + { + "artist": "Juice Newton", + "position": 15, + "title": "The Sweetest Thing (I've Ever Known)" + }, + { + "artist": "Royal Philharmonic Orchestra", + "position": 16, + "title": "Hooked On Classics" + }, + { + "artist": "Kool & The Gang", + "position": 17, + "title": "Take My Heart (You Can Have It If You Want It)" + }, + { + "artist": "Paul Davis", + "position": 18, + "title": "Cool Night" + }, + { + "artist": "Commodores", + "position": 19, + "title": "Oh No" + }, + { + "artist": "The Police", + "position": 20, + "title": "Every Little Thing She Does Is Magic" + }, + { + "artist": "Eddie Rabbitt", + "position": 21, + "title": "Someone Could Lose A Heart Tonight" + }, + { + "artist": "Air Supply", + "position": 22, + "title": "Here I Am (Just When I Thought I Was Over You)" + }, + { + "artist": "Ronnie Milsap", + "position": 23, + "title": "I Wouldn't Have Missed It For The World" + }, + { + "artist": "The Cars", + "position": 24, + "title": "Shake It Up" + }, + { + "artist": "Stevie Woods", + "position": 25, + "title": "Steal The Night" + }, + { + "artist": "The Rolling Stones", + "position": 26, + "title": "Waiting On A Friend" + }, + { + "artist": "Go-Go's", + "position": 27, + "title": "Our Lips Are Sealed" + }, + { + "artist": "Billy Joel", + "position": 28, + "title": "She's Got A Way" + }, + { + "artist": "Chilliwack", + "position": 29, + "title": "My Girl (Gone, Gone, Gone)" + }, + { + "artist": "The Beach Boys", + "position": 30, + "title": "Come Go With Me" + }, + { + "artist": "Queen & David Bowie", + "position": 31, + "title": "Under Pressure" + }, + { + "artist": "Sheena Easton", + "position": 32, + "title": "You Could Have Been With Me" + }, + { + "artist": "Dan Fogelberg", + "position": 33, + "title": "Leader Of The Band" + }, + { + "artist": "The Steve Miller Band", + "position": 34, + "title": "Heart Like A Wheel" + }, + { + "artist": "Little River Band", + "position": 35, + "title": "Take It Easy On Me" + }, + { + "artist": "Don McLean", + "position": 36, + "title": "Castles In The Air" + }, + { + "artist": "Sneaker", + "position": 37, + "title": "More Than Just The Two Of Us" + }, + { + "artist": "Daryl Hall John Oates", + "position": 38, + "title": "Private Eyes" + }, + { + "artist": "The Rolling Stones", + "position": 39, + "title": "Start Me Up" + }, + { + "artist": "Rick Springfield", + "position": 40, + "title": "Love Is Alright Tonite" + }, + { + "artist": "Loverboy", + "position": 41, + "title": "Working For The Weekend" + }, + { + "artist": "Air Supply", + "position": 42, + "title": "Sweet Dreams" + }, + { + "artist": "Barry Manilow", + "position": 43, + "title": "The Old Songs" + }, + { + "artist": "Alabama", + "position": 44, + "title": "Love In The First Degree" + }, + { + "artist": "Christopher Cross", + "position": 45, + "title": "Arthur's Theme (Best That You Can Do)" + }, + { + "artist": "Lulu", + "position": 46, + "title": "If I Were You" + }, + { + "artist": "Bertie Higgins", + "position": 47, + "title": "Key Largo" + }, + { + "artist": "Greg Lake", + "position": 48, + "title": "Let Me Love You Once" + }, + { + "artist": "Genesis", + "position": 49, + "title": "No Reply At All" + }, + { + "artist": "Luther Vandross", + "position": 50, + "title": "Never Too Much" + }, + { + "artist": "Billy Squier", + "position": 51, + "title": "My Kinda Lover" + }, + { + "artist": "Ringo Starr", + "position": 52, + "title": "Wrack My Brain" + }, + { + "artist": "Bob Seger", + "position": 53, + "title": "Tryin' To Live My Life Without You" + }, + { + "artist": "Eddie Schwartz", + "position": 54, + "title": "All Our Tomorrows" + }, + { + "artist": "Survivor", + "position": 55, + "title": "Poor Man's Son" + }, + { + "artist": "Al Jarreau", + "position": 56, + "title": "Breakin' Away" + }, + { + "artist": "Mike Post featuring Larry Carlton", + "position": 57, + "title": "The Theme From Hill Street Blues" + }, + { + "artist": "Sheila", + "position": 58, + "title": "Little Darlin'" + }, + { + "artist": "Balance", + "position": 59, + "title": "Falling In Love" + }, + { + "artist": "Jennifer Warnes", + "position": 60, + "title": "Could It Be Love" + }, + { + "artist": "Del Shannon", + "position": 61, + "title": "Sea Of Love" + }, + { + "artist": "Bee Gees", + "position": 62, + "title": "Living Eyes" + }, + { + "artist": "Barry Manilow", + "position": 63, + "title": "Somewhere Down The Road" + }, + { + "artist": "Irene Cara", + "position": 64, + "title": "Anyone Can See" + }, + { + "artist": "Steve Carlisle", + "position": 65, + "title": "Wkrp In Cincinnati" + }, + { + "artist": "Quincy Jones Featuring James Ingram", + "position": 66, + "title": "Just Once" + }, + { + "artist": "Bob Seger & The Silver Bullet Band", + "position": 67, + "title": "Feel Like A Number" + }, + { + "artist": "Henry Paul Band", + "position": 68, + "title": "Keeping Our Love Alive" + }, + { + "artist": "Rick Springfield", + "position": 69, + "title": "I've Done Everything For You" + }, + { + "artist": "Rush", + "position": 70, + "title": "Closer To The Heart" + }, + { + "artist": "Genesis", + "position": 71, + "title": "Abacab" + }, + { + "artist": "Carpenters", + "position": 72, + "title": "Those Good Old Dreams" + }, + { + "artist": "Quincy Jones Featuring James Ingram", + "position": 73, + "title": "One Hundred Ways" + }, + { + "artist": "Little River Band", + "position": 74, + "title": "The Night Owls" + }, + { + "artist": "Patti Austin", + "position": 75, + "title": "Every Home Should Have One" + }, + { + "artist": "Crystal Gayle", + "position": 76, + "title": "The Woman In Me" + }, + { + "artist": "Donnie Iris", + "position": 77, + "title": "Love Is Like A Rock" + }, + { + "artist": "Kiss", + "position": 78, + "title": "A World Without Heroes" + }, + { + "artist": "Four Tops", + "position": 79, + "title": "When She Was My Girl" + }, + { + "artist": "Neil Young/Crazy Horse", + "position": 80, + "title": "Southern Pacific" + }, + { + "artist": "Diesel", + "position": 81, + "title": "Sausalito Summernight" + }, + { + "artist": "Kenny Rogers", + "position": 82, + "title": "Through The Years" + }, + { + "artist": "The John Hall Band", + "position": 83, + "title": "Crazy (Keep On Falling)" + }, + { + "artist": "Leif Garrett", + "position": 84, + "title": "Runaway Rita" + }, + { + "artist": "Bill Champlin", + "position": 85, + "title": "Tonight Tonight" + }, + { + "artist": "Al Jarreau", + "position": 86, + "title": "We're In This Love Together" + }, + { + "artist": "Carl Carlton", + "position": 87, + "title": "She's A Bad Mama Jama (She's Built, She's Stacked)" + }, + { + "artist": "Vangelis", + "position": 88, + "title": "Chariots Of Fire - Titles" + }, + { + "artist": "Kenny Rogers", + "position": 89, + "title": "Blaze Of Glory" + }, + { + "artist": "Sheena Easton", + "position": 90, + "title": "For Your Eyes Only" + }, + { + "artist": "Kano", + "position": 91, + "title": "Can't Hold Back (Your Loving)" + }, + { + "artist": "Dave Stewart and Barbara Gaskin", + "position": 92, + "title": "It's My Party" + }, + { + "artist": "The Kinks", + "position": 93, + "title": "Better Things" + }, + { + "artist": "Rick James", + "position": 94, + "title": "Super Freak (Part I)" + }, + { + "artist": "Diana Ross & Lionel Richie", + "position": 95, + "title": "Endless Love" + }, + { + "artist": "Dan Fogelberg", + "position": 96, + "title": "Hard To Say" + }, + { + "artist": "Prince", + "position": 97, + "title": "Controversy" + }, + { + "artist": "Chris Christian", + "position": 98, + "title": "I Want You, I Need You" + }, + { + "artist": "Electric Light Orchestra", + "position": 99, + "title": "Twilight" + }, + { + "artist": "Rufus With Chaka Khan", + "position": 100, + "title": "Sharing The Love" + } + ], + "title": "1981 - Hot 100" + }, + { + "songs": [ + { + "artist": "Johnny Lee", + "position": 1, + "title": "One In A Million" + }, + { + "artist": "Merle Haggard", + "position": 2, + "title": "I Think I'll Stay Here And Drink" + }, + { + "artist": "The Bellamy Brothers", + "position": 3, + "title": "Lovers Live Longer" + }, + { + "artist": "Conway Twitty", + "position": 4, + "title": "A Bridge That Just Won't Burn" + }, + { + "artist": "Eddie Rabbitt", + "position": 5, + "title": "I Love A Rainy Night" + }, + { + "artist": "Barbara Mandrell", + "position": 6, + "title": "The Best Of Strangers" + }, + { + "artist": "Mickey Gilley", + "position": 7, + "title": "That's All That Matters To Me" + }, + { + "artist": "Leon Everette", + "position": 8, + "title": "Giving Up Easy" + }, + { + "artist": "Mac Davis", + "position": 9, + "title": "Texas In My Rear View Mirror" + }, + { + "artist": "Janie Frickie", + "position": 10, + "title": "Down To My Last Broken Heart" + }, + { + "artist": "The Oak Ridge Boys", + "position": 11, + "title": "Beautiful You" + }, + { + "artist": "Terri Gibbs", + "position": 12, + "title": "Somebodys Knockin'" + }, + { + "artist": "Gene Watson", + "position": 13, + "title": "No One Will Ever Know" + }, + { + "artist": "Porter Wagoner", + "position": 14, + "title": "If You Go, I'll Follow You" + }, + { + "artist": "Dolly Parton", + "position": 15, + "title": "9 To 5" + }, + { + "artist": "The Statler Brothers", + "position": 16, + "title": "Don't Forget Yourself" + }, + { + "artist": "Razzy Bailey", + "position": 17, + "title": "I Keep Coming Back/True Life Country Music" + }, + { + "artist": "Bobby Goldsboro", + "position": 18, + "title": "Goodbye Marie" + }, + { + "artist": "Johnny Duncan", + "position": 19, + "title": "Acapulo" + }, + { + "artist": "T.G. Sheppard", + "position": 20, + "title": "I Feel Like Loving You Again" + }, + { + "artist": "Ed Bruce", + "position": 21, + "title": "Girls, Women Ladies" + }, + { + "artist": "Gail Davies", + "position": 22, + "title": "I'll Be There (If You Ever Want Me)" + }, + { + "artist": "Charly McClain", + "position": 23, + "title": "Who's Cheatin' Who" + }, + { + "artist": "John Anderson", + "position": 24, + "title": "1959" + }, + { + "artist": "Susie Allanson", + "position": 25, + "title": "Dance The Two Step" + } + ], + "title": "1980 - Hot Country Songs" + }, + { + "songs": [ + { + "artist": "John Lennon", + "position": 1, + "title": "(Just Like) Starting Over" + }, + { + "artist": "Leo Sayer", + "position": 2, + "title": "More Than I Can Say" + }, + { + "artist": "Neil Diamond", + "position": 3, + "title": "Love On The Rocks" + }, + { + "artist": "Kenny Rogers", + "position": 4, + "title": "Lady" + }, + { + "artist": "Bruce Springsteen", + "position": 5, + "title": "Hungry Heart" + }, + { + "artist": "Air Supply", + "position": 6, + "title": "Every Woman In The World" + }, + { + "artist": "Barbra Streisand & Barry Gibb", + "position": 7, + "title": "Guilty" + }, + { + "artist": "Blondie", + "position": 8, + "title": "The Tide Is High" + }, + { + "artist": "Pat Benatar", + "position": 9, + "title": "Hit Me With Your Best Shot" + }, + { + "artist": "Heart", + "position": 10, + "title": "Tell It Like It Is" + }, + { + "artist": "Rod Stewart", + "position": 11, + "title": "Passion" + }, + { + "artist": "The Police", + "position": 12, + "title": "De Do Do Do, De Da Da Da" + }, + { + "artist": "Stevie Wonder", + "position": 13, + "title": "Master Blaster (Jammin')" + }, + { + "artist": "Queen", + "position": 14, + "title": "Another One Bites The Dust" + }, + { + "artist": "Diana Ross", + "position": 15, + "title": "It's My Turn" + }, + { + "artist": "Barry Manilow", + "position": 16, + "title": "I Made It Through The Rain" + }, + { + "artist": "Kool & The Gang", + "position": 17, + "title": "Celebration" + }, + { + "artist": "The Korgis", + "position": 18, + "title": "Everybody's Got To Learn Sometime" + }, + { + "artist": "Eddie Rabbitt", + "position": 19, + "title": "I Love A Rainy Night" + }, + { + "artist": "Steely Dan", + "position": 20, + "title": "Hey Nineteen" + }, + { + "artist": "Andy Gibb", + "position": 21, + "title": "Time Is Time" + }, + { + "artist": "Barbra Streisand", + "position": 22, + "title": "Woman In Love" + }, + { + "artist": "Olivia Newton-John & Cliff Richard", + "position": 23, + "title": "Suddenly" + }, + { + "artist": "Don Williams", + "position": 24, + "title": "I Believe In You" + }, + { + "artist": "Daryl Hall John Oates", + "position": 25, + "title": "You've Lost That Lovin' Feeling" + }, + { + "artist": "The Doobie Brothers", + "position": 26, + "title": "One Step Closer" + }, + { + "artist": "Devo", + "position": 27, + "title": "Whip It" + }, + { + "artist": "Delbert McClinton", + "position": 28, + "title": "Giving It Up For Your Love" + }, + { + "artist": "Tierra", + "position": 29, + "title": "Together" + }, + { + "artist": "Boz Scaggs", + "position": 30, + "title": "Miss Sun" + }, + { + "artist": "Christopher Cross", + "position": 31, + "title": "Never Be The Same" + }, + { + "artist": "Waylon", + "position": 32, + "title": "Theme From The Dukes Of Hazzard (Good Ol' Boys)" + }, + { + "artist": "Dolly Parton", + "position": 33, + "title": "9 To 5" + }, + { + "artist": "Diana Ross", + "position": 34, + "title": "I'm Coming Out" + }, + { + "artist": "Dr. Hook", + "position": 35, + "title": "Girls Can Get It" + }, + { + "artist": "ABBA", + "position": 36, + "title": "The Winner Takes It All" + }, + { + "artist": "Dan Fogelberg", + "position": 37, + "title": "Same Old Lang Syne" + }, + { + "artist": "Harry Chapin", + "position": 38, + "title": "Sequel" + }, + { + "artist": "REO Speedwagon", + "position": 39, + "title": "Keep On Loving You" + }, + { + "artist": "Fred Knoblock & Susan Anton", + "position": 40, + "title": "Killin' Time" + }, + { + "artist": "Donna Summer", + "position": 41, + "title": "Cold Love" + }, + { + "artist": "The Babys", + "position": 42, + "title": "Turn And Walk Away" + }, + { + "artist": "Michael Stanley Band", + "position": 43, + "title": "He Can't Love You" + }, + { + "artist": "Queen", + "position": 44, + "title": "Need Your Loving Tonight" + }, + { + "artist": "Bette Midler", + "position": 45, + "title": "My Mother's Eyes" + }, + { + "artist": "L.T.D.", + "position": 46, + "title": "Shine On" + }, + { + "artist": "Climax Blues Band", + "position": 47, + "title": "Gotta Have More Love" + }, + { + "artist": "Earth, Wind & Fire", + "position": 48, + "title": "You" + }, + { + "artist": "Teena Marie", + "position": 49, + "title": "I Need Your Lovin'" + }, + { + "artist": "Ronnie Milsap", + "position": 50, + "title": "Smoky Mountain Rain" + }, + { + "artist": "The Jacksons", + "position": 51, + "title": "Heartbreak Hotel" + }, + { + "artist": "Teddy Pendergrass", + "position": 52, + "title": "Love T.K.O." + }, + { + "artist": "Rockpile", + "position": 53, + "title": "Teacher Teacher" + }, + { + "artist": "The Alan Parsons Project", + "position": 54, + "title": "Games People Play" + }, + { + "artist": "Eagles", + "position": 55, + "title": "Seven Bridges Road" + }, + { + "artist": "Stevie Wonder", + "position": 56, + "title": "I Ain't Gonna Stand For It" + }, + { + "artist": "John Cougar", + "position": 57, + "title": "This Time" + }, + { + "artist": "Cliff Richard", + "position": 58, + "title": "Dreaming" + }, + { + "artist": "Randy Meisner", + "position": 59, + "title": "Deep Inside My Heart" + }, + { + "artist": "Donna Summer", + "position": 60, + "title": "The Wanderer" + }, + { + "artist": "Rita Coolidge", + "position": 61, + "title": "Fool That I Am" + }, + { + "artist": "Supertramp", + "position": 62, + "title": "Breakfast In America" + }, + { + "artist": "The Pointer Sisters", + "position": 63, + "title": "He's So Shy" + }, + { + "artist": "Blues Brothers", + "position": 64, + "title": "Who's Making Love" + }, + { + "artist": "Cliff Richard", + "position": 65, + "title": "A Little In Love" + }, + { + "artist": "Stephanie Mills", + "position": 66, + "title": "Never Knew Love Like This Before" + }, + { + "artist": "Bob Seger", + "position": 67, + "title": "The Horizontal Bop" + }, + { + "artist": "The Pointer Sisters", + "position": 68, + "title": "Could I Be Dreaming" + }, + { + "artist": "The Star Wars Intergalactic Droid Choir & Chorale", + "position": 69, + "title": "What Can You Get A Wookiee For Christmas (When He Already Owns A Comb?)" + }, + { + "artist": "Donnie Iris", + "position": 70, + "title": "Ah! Leah!" + }, + { + "artist": "AC/DC", + "position": 71, + "title": "Back In Black" + }, + { + "artist": "David Bowie", + "position": 72, + "title": "Fashion" + }, + { + "artist": "Oak", + "position": 73, + "title": "Set The Night On Fire" + }, + { + "artist": "Dionne Warwick", + "position": 74, + "title": "Easy Love" + }, + { + "artist": "The Vapors", + "position": 75, + "title": "Turning Japanese" + }, + { + "artist": "Roger Daltrey", + "position": 76, + "title": "Without Your Love" + }, + { + "artist": "Diana Ross", + "position": 77, + "title": "Upside Down" + }, + { + "artist": "The Jacksons", + "position": 78, + "title": "Lovely One" + }, + { + "artist": "Shalamar", + "position": 79, + "title": "Full Of Fire" + }, + { + "artist": "Dire Straits", + "position": 80, + "title": "Skateaway" + }, + { + "artist": "Aretha Franklin", + "position": 81, + "title": "United Together" + }, + { + "artist": "Willis The Guard & Vigorish", + "position": 82, + "title": "Merry Christmas In The NFL" + }, + { + "artist": "Outlaws", + "position": 83, + "title": "(Ghost) Riders In The Sky" + }, + { + "artist": "The Kings", + "position": 84, + "title": "Switchin' To Glide/This Beat Goes On" + }, + { + "artist": "Stacy Lattisaw", + "position": 85, + "title": "Let Me Be Your Angel" + }, + { + "artist": "Cheap Trick", + "position": 86, + "title": "Stop This Game" + }, + { + "artist": "Willie Nelson", + "position": 87, + "title": "On The Road Again" + }, + { + "artist": "J.D. Drews", + "position": 88, + "title": "Don't Want No-Body" + }, + { + "artist": "Pendulum", + "position": 89, + "title": "Gypsy Spirit" + }, + { + "artist": "Kansas", + "position": 90, + "title": "Got To Rock On" + }, + { + "artist": "The 4 Seasons", + "position": 91, + "title": "Spend The Night In Love" + }, + { + "artist": "The Manhattan Transfer", + "position": 92, + "title": "Trickle Trickle" + }, + { + "artist": "Paul Simon", + "position": 93, + "title": "One-Trick Pony" + }, + { + "artist": "The Reddings", + "position": 94, + "title": "Remote Control" + }, + { + "artist": "Pure Prairie League", + "position": 95, + "title": "I Can't Stop The Feelin'" + }, + { + "artist": "Jackie English", + "position": 96, + "title": "Once A Night" + }, + { + "artist": "Marcy Levy & Robin Gibb", + "position": 97, + "title": "Help Me!" + }, + { + "artist": "Jimmy Hall", + "position": 98, + "title": "I'm Happy That Love Has Found You" + }, + { + "artist": "Irene Cara", + "position": 99, + "title": "Out Here On My Own" + }, + { + "artist": "Carly Simon", + "position": 100, + "title": "Jesse" + } + ], + "title": "1980 - Hot 100" + }, + { + "songs": [ + { + "artist": "Rupert Holmes", + "position": 1, + "title": "Escape (The Pina Colada Song)" + }, + { + "artist": "KC And The Sunshine Band", + "position": 2, + "title": "Please Don't Go" + }, + { + "artist": "Styx", + "position": 3, + "title": "Babe" + }, + { + "artist": "Stevie Wonder", + "position": 4, + "title": "Send One Your Love" + }, + { + "artist": "Commodores", + "position": 5, + "title": "Still" + }, + { + "artist": "Captain & Tennille", + "position": 6, + "title": "Do That To Me One More Time" + }, + { + "artist": "J.D.Souther", + "position": 7, + "title": "You're Only Lonely" + }, + { + "artist": "Barbra Streisand/Donna Summer", + "position": 8, + "title": "No More Tears (Enough Is Enough)" + }, + { + "artist": "Kool & The Gang", + "position": 9, + "title": "Ladies Night" + }, + { + "artist": "Supertramp", + "position": 10, + "title": "Take The Long Way Home" + }, + { + "artist": "Michael Jackson", + "position": 11, + "title": "Rock With You" + }, + { + "artist": "Little River Band", + "position": 12, + "title": "Cool Change" + }, + { + "artist": "Cliff Richard", + "position": 13, + "title": "We Don't Talk Anymore" + }, + { + "artist": "Foreigner", + "position": 14, + "title": "Head Games" + }, + { + "artist": "Smokey Robinson", + "position": 15, + "title": "Cruisin'" + }, + { + "artist": "Dr. Hook", + "position": 16, + "title": "Better Love Next Time" + }, + { + "artist": "Eagles", + "position": 17, + "title": "The Long Run" + }, + { + "artist": "Jefferson Starship", + "position": 18, + "title": "Jane" + }, + { + "artist": "Pablo Cruise", + "position": 19, + "title": "I Want You Tonight" + }, + { + "artist": "Eagles", + "position": 20, + "title": "Heartache Tonight" + }, + { + "artist": "Kenny Loggins", + "position": 21, + "title": "This Is It" + }, + { + "artist": "Kenny Rogers", + "position": 22, + "title": "Coward Of The County" + }, + { + "artist": "Prince", + "position": 23, + "title": "I Wanna Be Your Lover" + }, + { + "artist": "Crystal Gayle", + "position": 24, + "title": "Half The Way" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 25, + "title": "Don't Do Me Like That" + }, + { + "artist": "Daryl Hall John Oates", + "position": 26, + "title": "Wait For Me" + }, + { + "artist": "The Alan Parsons Project", + "position": 27, + "title": "Damned If I Do" + }, + { + "artist": "Isaac Hayes", + "position": 28, + "title": "Don't Let Go" + }, + { + "artist": "Barry Manilow", + "position": 29, + "title": "Ships" + }, + { + "artist": "Foghat", + "position": 30, + "title": "Third Time Lucky (First Time I Was A Fool)" + }, + { + "artist": "ABBA", + "position": 31, + "title": "Chiquitita" + }, + { + "artist": "M", + "position": 32, + "title": "Pop Muzik" + }, + { + "artist": "John Cougar", + "position": 33, + "title": "I Need A Lover" + }, + { + "artist": "Dionne Warwick", + "position": 34, + "title": "Deja Vu" + }, + { + "artist": "Fleetwood Mac", + "position": 35, + "title": "Sara" + }, + { + "artist": "Teri DeSario With K.C.", + "position": 36, + "title": "Yes, I'm Ready" + }, + { + "artist": "Anne Murray", + "position": 37, + "title": "Broken Hearted Me" + }, + { + "artist": "Blackfoot", + "position": 38, + "title": "Train, Train" + }, + { + "artist": "Richie Furay", + "position": 39, + "title": "I Still Have Dreams" + }, + { + "artist": "Herb Alpert", + "position": 40, + "title": "Rotation" + }, + { + "artist": "Yvonne Elliman", + "position": 41, + "title": "Love Pains" + }, + { + "artist": "The O'Jays", + "position": 42, + "title": "Forever Mine" + }, + { + "artist": "Sugarhill Gang", + "position": 43, + "title": "Rapper's Delight" + }, + { + "artist": "Rita Coolidge", + "position": 44, + "title": "I'd Rather Leave While I'm In Love" + }, + { + "artist": "Tom Johnston", + "position": 45, + "title": "Savannah Nights" + }, + { + "artist": "The Buggles", + "position": 46, + "title": "Video Killed The Radio Star" + }, + { + "artist": "Kermit (Jim Henson)", + "position": 47, + "title": "Rainbow Connection" + }, + { + "artist": "Steve Forbert", + "position": 48, + "title": "Romeo's Tune" + }, + { + "artist": "Mistress", + "position": 49, + "title": "Mistrusted Love" + }, + { + "artist": "Donna Summer", + "position": 50, + "title": "Dim All The Lights" + }, + { + "artist": "Suzi Quatro", + "position": 51, + "title": "She's In Love With You" + }, + { + "artist": "Fleetwood Mac", + "position": 52, + "title": "TUSK" + }, + { + "artist": "Santana", + "position": 53, + "title": "You Know That I Love You" + }, + { + "artist": "Rufus & Chaka", + "position": 54, + "title": "Do You Love What You Feel" + }, + { + "artist": "Robert John", + "position": 55, + "title": "Lonely Eyes" + }, + { + "artist": "Cheap Trick", + "position": 56, + "title": "Voices" + }, + { + "artist": "Rainbow", + "position": 57, + "title": "Since You Been Gone" + }, + { + "artist": "Queen", + "position": 58, + "title": "Crazy Little Thing Called Love" + }, + { + "artist": "John Stewart", + "position": 59, + "title": "Lost Her In The Sun" + }, + { + "artist": "The Flying Lizards", + "position": 60, + "title": "Money" + }, + { + "artist": "Bar-Kays", + "position": 61, + "title": "Move Your Boogie Body" + }, + { + "artist": "Joyce Cobb", + "position": 62, + "title": "Dig The Gold" + }, + { + "artist": "Electric Light Orchestra", + "position": 63, + "title": "Last Train To London" + }, + { + "artist": "Led Zeppelin", + "position": 64, + "title": "Fool In The Rain" + }, + { + "artist": "Styx", + "position": 65, + "title": "Why Me" + }, + { + "artist": "Neil Diamond", + "position": 66, + "title": "September Morn'" + }, + { + "artist": "Anne Murray", + "position": 67, + "title": "Daydream Believer" + }, + { + "artist": "Commodores", + "position": 68, + "title": "Wonderland" + }, + { + "artist": "The Inmates", + "position": 69, + "title": "Dirty Water" + }, + { + "artist": "The Dirt Band", + "position": 70, + "title": "An American Dream" + }, + { + "artist": "Dann Rogers", + "position": 71, + "title": "Looks Like Love Again" + }, + { + "artist": "The Spinners", + "position": 72, + "title": "Working My Way Back To You/Forgive Me, Girl" + }, + { + "artist": "Pleasure", + "position": 73, + "title": "Glide" + }, + { + "artist": "The Police", + "position": 74, + "title": "Message In A Bottle" + }, + { + "artist": "Bonnie Raitt", + "position": 75, + "title": "You're Gonna Get What's Coming" + }, + { + "artist": "Pat Benatar", + "position": 76, + "title": "Heartbreaker" + }, + { + "artist": "Dan Fogelberg", + "position": 77, + "title": "Longer" + }, + { + "artist": "Barry Manilow", + "position": 78, + "title": "When I Wanted You" + }, + { + "artist": "Peter Brown", + "position": 79, + "title": "Stargazer" + }, + { + "artist": "Leif Garrett", + "position": 80, + "title": "Memorize Your Number" + }, + { + "artist": "Earth, Wind & Fire", + "position": 81, + "title": "Star" + }, + { + "artist": "Robert Palmer", + "position": 82, + "title": "Can We Still Be Friends" + }, + { + "artist": "Shalamar", + "position": 83, + "title": "The Second Time Around" + }, + { + "artist": "Rod Stewart", + "position": 84, + "title": "I Don't Want To Talk About It" + }, + { + "artist": "Toto", + "position": 85, + "title": "99" + }, + { + "artist": "Bonnie Pointer", + "position": 86, + "title": "I Can't Help Myself (Sugar Pie, Honey Bunch)" + }, + { + "artist": "Jennifer Warnes", + "position": 87, + "title": "Don't Make Me Over" + }, + { + "artist": "Dollar", + "position": 88, + "title": "Shooting Star" + }, + { + "artist": "Jimmy Buffett", + "position": 89, + "title": "Volcano" + }, + { + "artist": "Cugini", + "position": 90, + "title": "Let Me Sleep Alone" + }, + { + "artist": "Switch", + "position": 91, + "title": "I Call Your Name" + }, + { + "artist": "Billy Preston & Syreeta", + "position": 92, + "title": "With You I'm Born Again" + }, + { + "artist": "Lobo", + "position": 93, + "title": "Holdin' On For Dear Love" + }, + { + "artist": "Kenny Rogers", + "position": 94, + "title": "You Decorated My Life" + }, + { + "artist": "Chris Thompson & Night", + "position": 95, + "title": "If You Remember Me" + }, + { + "artist": "Herb Alpert", + "position": 96, + "title": "Rise" + }, + { + "artist": "Blondie", + "position": 97, + "title": "Dreaming" + }, + { + "artist": "Village People", + "position": 98, + "title": "Ready For The 80's" + }, + { + "artist": "Frank Mills", + "position": 99, + "title": "Peter Piper" + }, + { + "artist": "Lauren Wood", + "position": 100, + "title": "Please Don't Leave" + } + ], + "title": "1979 - Hot 100" + }, + { + "songs": [ + { + "artist": "Chic", + "position": 1, + "title": "Le Freak" + }, + { + "artist": "Bee Gees", + "position": 2, + "title": "Too Much Heaven" + }, + { + "artist": "Barbra Streisand & Neil Diamond", + "position": 3, + "title": "You Don't Bring Me Flowers" + }, + { + "artist": "Billy Joel", + "position": 4, + "title": "My Life" + }, + { + "artist": "Alicia Bridges", + "position": 5, + "title": "I Love The Nightlife (Disco 'Round)" + }, + { + "artist": "Gino Vannelli", + "position": 6, + "title": "I Just Wanna Stop" + }, + { + "artist": "Dr. Hook", + "position": 7, + "title": "Sharing The Night Together" + }, + { + "artist": "Village People", + "position": 8, + "title": "Y.M.C.A." + }, + { + "artist": "Andy Gibb", + "position": 9, + "title": "(Our Love) Don't Throw It All Away" + }, + { + "artist": "Toto", + "position": 10, + "title": "Hold The Line" + }, + { + "artist": "Linda Ronstadt", + "position": 11, + "title": "Ooh Baby Baby" + }, + { + "artist": "Alice Cooper", + "position": 12, + "title": "How You Gonna See Me Now" + }, + { + "artist": "Eric Clapton And His Band", + "position": 13, + "title": "Promises" + }, + { + "artist": "Al Stewart", + "position": 14, + "title": "Time Passages" + }, + { + "artist": "Donna Summer", + "position": 15, + "title": "MacArthur Park" + }, + { + "artist": "Firefall", + "position": 16, + "title": "Strange Way" + }, + { + "artist": "Bob Seger & The Silver Bullet Band", + "position": 17, + "title": "We've Got Tonight" + }, + { + "artist": "Earth, Wind & Fire", + "position": 18, + "title": "September" + }, + { + "artist": "Olivia Newton-John", + "position": 19, + "title": "A Little More Love" + }, + { + "artist": "Eagles", + "position": 20, + "title": "Please Come Home For Christmas" + }, + { + "artist": "Chaka Khan", + "position": 21, + "title": "I'm Every Woman" + }, + { + "artist": "Hot Chocolate", + "position": 22, + "title": "Every 1's A Winner" + }, + { + "artist": "Ace Frehley", + "position": 23, + "title": "New York Groove" + }, + { + "artist": "Paul Davis", + "position": 24, + "title": "Sweet Life" + }, + { + "artist": "Queen", + "position": 25, + "title": "Bicycle Race/Fat Bottomed Girls" + }, + { + "artist": "Ian Matthews", + "position": 26, + "title": "Shake It" + }, + { + "artist": "Nicolette Larson", + "position": 27, + "title": "Lotta Love" + }, + { + "artist": "The Pointer Sisters", + "position": 28, + "title": "Fire" + }, + { + "artist": "Ambrosia", + "position": 29, + "title": "How Much I Feel" + }, + { + "artist": "Leif Garrett", + "position": 30, + "title": "I Was Made For Dancin'" + }, + { + "artist": "Heart", + "position": 31, + "title": "Straight On" + }, + { + "artist": "Chanson", + "position": 32, + "title": "Don't Hold Back" + }, + { + "artist": "Dan Hartman", + "position": 33, + "title": "Instant Replay" + }, + { + "artist": "Livingston Taylor", + "position": 34, + "title": "I Will Be In Love With You" + }, + { + "artist": "The Cars", + "position": 35, + "title": "My Best Friend's Girl" + }, + { + "artist": "Elton John", + "position": 36, + "title": "Part-Time Love" + }, + { + "artist": "Boston", + "position": 37, + "title": "A Man I'll Never Be" + }, + { + "artist": "Kenny Rogers", + "position": 38, + "title": "The Gambler" + }, + { + "artist": "Talking Heads", + "position": 39, + "title": "Take Me To The River" + }, + { + "artist": "Rod Stewart", + "position": 40, + "title": "Da Ya Think I'm Sexy?" + }, + { + "artist": "Melissa Manchester", + "position": 41, + "title": "Don't Cry Out Loud" + }, + { + "artist": "Rick James", + "position": 42, + "title": "Mary Jane" + }, + { + "artist": "Gerry Rafferty", + "position": 43, + "title": "Home And Dry" + }, + { + "artist": "Cheryl Lynn", + "position": 44, + "title": "Got To Be Real" + }, + { + "artist": "The J. Geils Band", + "position": 45, + "title": "One Last Kiss" + }, + { + "artist": "Paul Stanley", + "position": 46, + "title": "Hold Me, Touch Me" + }, + { + "artist": "Exile", + "position": 47, + "title": "You Thrill Me" + }, + { + "artist": "Cooper Brothers", + "position": 48, + "title": "The Dream Never Dies" + }, + { + "artist": "Meat Loaf", + "position": 49, + "title": "You Took The Words Right Out Of My Mouth" + }, + { + "artist": "Gene Simmons", + "position": 50, + "title": "Radioactive" + }, + { + "artist": "Foreigner", + "position": 51, + "title": "Double Vision" + }, + { + "artist": "Dan Fogelberg/Tim Weisberg", + "position": 52, + "title": "The Power Of Gold" + }, + { + "artist": "Rose Royce", + "position": 53, + "title": "Love Don't Live Here Anymore" + }, + { + "artist": "Blues Brothers", + "position": 54, + "title": "Soul Man" + }, + { + "artist": "The Rolling Stones", + "position": 55, + "title": "Shattered" + }, + { + "artist": "Dolly Parton", + "position": 56, + "title": "Baby I'm Burnin'" + }, + { + "artist": "Barry Manilow", + "position": 57, + "title": "Somewhere In The Night" + }, + { + "artist": "Musique", + "position": 58, + "title": "In The Bush" + }, + { + "artist": "Captain & Tennille", + "position": 59, + "title": "You Need A Woman Tonight" + }, + { + "artist": "Barry White", + "position": 60, + "title": "Your Sweetness Is My Weakness" + }, + { + "artist": "Chicago", + "position": 61, + "title": "Alive Again" + }, + { + "artist": "Kenny Loggins", + "position": 62, + "title": "Easy Driver" + }, + { + "artist": "Fotomaker", + "position": 63, + "title": "Miles Away" + }, + { + "artist": "Nigel Olsson", + "position": 64, + "title": "Dancin' Shoes" + }, + { + "artist": "Daryl Hall John Oates", + "position": 65, + "title": "I Don't Wanna Lose You" + }, + { + "artist": "Jefferson Starship", + "position": 66, + "title": "Light The Sky On Fire" + }, + { + "artist": "Don Ray", + "position": 67, + "title": "Got To Have Loving" + }, + { + "artist": "Carpenters", + "position": 68, + "title": "I Believe You" + }, + { + "artist": "Santana", + "position": 69, + "title": "Well All Right" + }, + { + "artist": "John Paul Young", + "position": 70, + "title": "Lost In Your Love" + }, + { + "artist": "Peaches & Herb", + "position": 71, + "title": "Shake Your Groove Thing" + }, + { + "artist": "Player", + "position": 72, + "title": "Silver Lining" + }, + { + "artist": "Eddie Money", + "position": 73, + "title": "You've Really Got A Hold On Me" + }, + { + "artist": "Lindisfarne", + "position": 74, + "title": "Run For Home" + }, + { + "artist": "Foreigner", + "position": 75, + "title": "Blue Morning, Blue Day" + }, + { + "artist": "Gloria Gaynor", + "position": 76, + "title": "I Will Survive" + }, + { + "artist": "Chicago", + "position": 77, + "title": "No Tell Lover" + }, + { + "artist": "Marshall Hain", + "position": 78, + "title": "Dancing In The City" + }, + { + "artist": "Switch", + "position": 79, + "title": "There'll Never Be" + }, + { + "artist": "Faith Band", + "position": 80, + "title": "Dancin' Shoes" + }, + { + "artist": "Justin Hayward", + "position": 81, + "title": "Forever Autumn" + }, + { + "artist": "Bonnie Pointer", + "position": 82, + "title": "Free Me From My Freedom/Tie Me To A Tree (Handcuff Me)" + }, + { + "artist": "Bobby Caldwell", + "position": 83, + "title": "What You Won't Do For Love" + }, + { + "artist": "KC And The Sunshine Band", + "position": 84, + "title": "Who Do Ya Love" + }, + { + "artist": "Engelbert Humperdinck", + "position": 85, + "title": "This Moment In Time" + }, + { + "artist": "Dobie Gray", + "position": 86, + "title": "You Can Do It" + }, + { + "artist": "Eric Carmen", + "position": 87, + "title": "Change Of Heart" + }, + { + "artist": "Stephen Bishop", + "position": 88, + "title": "Animal House" + }, + { + "artist": "Yvonne Elliman", + "position": 89, + "title": "Moment By Moment" + }, + { + "artist": "Boney M", + "position": 90, + "title": "Mary's Boy Child/Oh My Lord" + }, + { + "artist": "The Blend", + "position": 91, + "title": "I'm Gonna Make You Love Me" + }, + { + "artist": "John Davis And The Monster Orchestra", + "position": 92, + "title": "Ain't That Enough For You" + }, + { + "artist": "The Raes", + "position": 93, + "title": "A Little Lovin' (Keeps The Doctor Away)" + }, + { + "artist": "Glen Campbell", + "position": 94, + "title": "Can You Fool" + }, + { + "artist": "Pablo Cruise", + "position": 95, + "title": "Don't Want To Live Without It" + }, + { + "artist": "Anne Murray", + "position": 96, + "title": "You Needed Me" + }, + { + "artist": "Captain & Tennille", + "position": 97, + "title": "You Never Done It Like That" + }, + { + "artist": "Barry Manilow", + "position": 98, + "title": "Ready To Take A Chance Again" + }, + { + "artist": "Nick Gilder", + "position": 99, + "title": "Hot Child In The City" + }, + { + "artist": "Jimmy Buffett", + "position": 100, + "title": "Ma??�ana" + } + ], + "title": "1978 - Hot 100" + }, + { + "songs": [ + { + "artist": "Bee Gees", + "position": 1, + "title": "How Deep Is Your Love" + }, + { + "artist": "Debby Boone", + "position": 2, + "title": "You Light Up My Life" + }, + { + "artist": "Linda Ronstadt", + "position": 3, + "title": "Blue Bayou" + }, + { + "artist": "LTD", + "position": 4, + "title": "(Every Time I Turn Around) Back In Love Again" + }, + { + "artist": "Linda Ronstadt", + "position": 5, + "title": "It's So Easy" + }, + { + "artist": "Player", + "position": 6, + "title": "Baby Come Back" + }, + { + "artist": "Crystal Gayle", + "position": 7, + "title": "Don't It Make My Brown Eyes Blue" + }, + { + "artist": "Dolly Parton", + "position": 8, + "title": "Here You Come Again" + }, + { + "artist": "Bob Welch", + "position": 9, + "title": "Sentimental Lady" + }, + { + "artist": "Paul Simon", + "position": 10, + "title": "Slip Slidin' Away" + }, + { + "artist": "Rod Stewart", + "position": 11, + "title": "You're In My Heart (The Final Acclaim)" + }, + { + "artist": "High Inergy", + "position": 12, + "title": "You Can't Turn Me Off (In The Middle Of Turning Me On)" + }, + { + "artist": "The Babys", + "position": 13, + "title": "Isn't It Time" + }, + { + "artist": "Styx", + "position": 14, + "title": "Come Sail Away" + }, + { + "artist": "Shaun Cassidy", + "position": 15, + "title": "Hey Deanie" + }, + { + "artist": "Rita Coolidge", + "position": 16, + "title": "We're All Alone" + }, + { + "artist": "The Steve Miller Band", + "position": 17, + "title": "Swingtown" + }, + { + "artist": "Queen", + "position": 18, + "title": "We Will Rock You/We Are The Champions" + }, + { + "artist": "Leif Garrett", + "position": 19, + "title": "Runaround Sue" + }, + { + "artist": "Randy Newman", + "position": 20, + "title": "Short People" + }, + { + "artist": "Fleetwood Mac", + "position": 21, + "title": "You Make Loving Fun" + }, + { + "artist": "Elvis Presley", + "position": 22, + "title": "My Way" + }, + { + "artist": "Paul Davis", + "position": 23, + "title": "I Go Crazy" + }, + { + "artist": "Earth, Wind & Fire", + "position": 24, + "title": "Serpentine Fire" + }, + { + "artist": "Chicago", + "position": 25, + "title": "Baby, What A Big Surprise" + }, + { + "artist": "Bay City Rollers", + "position": 26, + "title": "The Way I Feel Tonight" + }, + { + "artist": "Electric Light Orchestra", + "position": 27, + "title": "Turn To Stone" + }, + { + "artist": "Billy Joel", + "position": 28, + "title": "Just The Way You Are" + }, + { + "artist": "Diana Ross", + "position": 29, + "title": "Gettin' Ready For Love" + }, + { + "artist": "Chic", + "position": 30, + "title": "Dance, Dance, Dance (Yowsah, Yowsah, Yowsah)" + }, + { + "artist": "Paul Nicholas", + "position": 31, + "title": "Heaven On The 7th Floor" + }, + { + "artist": "Andy Gibb", + "position": 32, + "title": "(Love Is) Thicker Than Water" + }, + { + "artist": "Santa Esmeralda Starring Leroy Gomez", + "position": 33, + "title": "Don't Let Me Be Misunderstood" + }, + { + "artist": "Kansas", + "position": 34, + "title": "Point Of Know Return" + }, + { + "artist": "Neil Diamond", + "position": 35, + "title": "Desir??�e" + }, + { + "artist": "Odyssey", + "position": 36, + "title": "Native New Yorker" + }, + { + "artist": "Wings", + "position": 37, + "title": "Girls' School" + }, + { + "artist": "James Taylor", + "position": 38, + "title": "Your Smiling Face" + }, + { + "artist": "Bee Gees", + "position": 39, + "title": "Stayin' Alive" + }, + { + "artist": "Dan Hill", + "position": 40, + "title": "Sometimes When We Touch" + }, + { + "artist": "Samantha Sang", + "position": 41, + "title": "Emotion" + }, + { + "artist": "Cheech & Chong", + "position": 42, + "title": "Bloat On Featuring the Bloaters" + }, + { + "artist": "Donny & Marie Osmond", + "position": 43, + "title": "(You're My) Soul And Inspiration" + }, + { + "artist": "Steely Dan", + "position": 44, + "title": "Peg" + }, + { + "artist": "Heatwave", + "position": 45, + "title": "Boogie Nights" + }, + { + "artist": "Bill Withers", + "position": 46, + "title": "Lovely Day" + }, + { + "artist": "Peter Frampton", + "position": 47, + "title": "Tried To Love" + }, + { + "artist": "Millie Jackson", + "position": 48, + "title": "If You're Not Back In Love By Monday" + }, + { + "artist": "Stevie Wonder", + "position": 49, + "title": "As" + }, + { + "artist": "KC And The Sunshine Band", + "position": 50, + "title": "Wrap Your Arms Around Me" + }, + { + "artist": "The Emotions", + "position": 51, + "title": "Don't Ask My Neighbors" + }, + { + "artist": "Lynyrd Skynyrd", + "position": 52, + "title": "What's Your Name" + }, + { + "artist": "John Denver", + "position": 53, + "title": "How Can I Leave You Again" + }, + { + "artist": "Santana", + "position": 54, + "title": "She's Not There" + }, + { + "artist": "Wet Willie", + "position": 55, + "title": "Street Corner Serenade" + }, + { + "artist": "Commodores", + "position": 56, + "title": "Too Hot Ta Trot" + }, + { + "artist": "Barry White", + "position": 57, + "title": "It's Ecstasy When You Lay Down Next To Me" + }, + { + "artist": "Carpenters", + "position": 58, + "title": "Calling Occupants Of Interplanetary Craft" + }, + { + "artist": "Foreigner", + "position": 59, + "title": "Long, Long Way From Home" + }, + { + "artist": "England Dan & John Ford Coley", + "position": 60, + "title": "Gone Too Far" + }, + { + "artist": "Dave Mason", + "position": 61, + "title": "We Just Disagree" + }, + { + "artist": "Carly Simon", + "position": 62, + "title": "Nobody Does It Better" + }, + { + "artist": "Judy Collins", + "position": 63, + "title": "Send In The Clowns" + }, + { + "artist": "Al Martino", + "position": 64, + "title": "The Next Hundred Years" + }, + { + "artist": "Donna Summer", + "position": 65, + "title": "I Feel Love" + }, + { + "artist": "Leo Sayer", + "position": 66, + "title": "Easy To Love" + }, + { + "artist": "Sammy Hagar", + "position": 67, + "title": "You Make Me Crazy" + }, + { + "artist": "Tom Petty And The Heartbreakers", + "position": 68, + "title": "Breakdown" + }, + { + "artist": "Olivia Newton-John", + "position": 69, + "title": "I Honestly Love You" + }, + { + "artist": "Ramones", + "position": 70, + "title": "Rockaway Beach" + }, + { + "artist": "LeBlanc & Carr", + "position": 71, + "title": "Falling" + }, + { + "artist": "The Sylvers", + "position": 72, + "title": "Any Way You Want Me" + }, + { + "artist": "Kenny Rogers", + "position": 73, + "title": "Sweet Music Man" + }, + { + "artist": "Marilyn Scott", + "position": 74, + "title": "God Only Knows" + }, + { + "artist": "Con Funk Shun", + "position": 75, + "title": "Ffun" + }, + { + "artist": "Cat Stevens", + "position": 76, + "title": "Was Dog A Doughnut" + }, + { + "artist": "Donna Summer", + "position": 77, + "title": "I Love You" + }, + { + "artist": "Jay Ferguson", + "position": 78, + "title": "Thunder Island" + }, + { + "artist": "Stillwater", + "position": 79, + "title": "Mind Bender" + }, + { + "artist": "Addrisi Brothers", + "position": 80, + "title": "Never My Love" + }, + { + "artist": "John Williams", + "position": 81, + "title": "Theme From Close Encounters Of The Third Kind" + }, + { + "artist": "ABBA", + "position": 82, + "title": "The Name Of The Game" + }, + { + "artist": "Kellee Patterson", + "position": 83, + "title": "If It Don't Fit, Don't Force It" + }, + { + "artist": "Little River Band", + "position": 84, + "title": "Happy Anniversary" + }, + { + "artist": "Johnny Rivers", + "position": 85, + "title": "Curious Mind (Um, Um, Um, Um, Um, Um)" + }, + { + "artist": "Rose Royce", + "position": 86, + "title": "Ooh Boy" + }, + { + "artist": "Ronnie Milsap", + "position": 87, + "title": "What A Difference You've Made In My Life" + }, + { + "artist": "David Gates", + "position": 88, + "title": "Goodbye Girl" + }, + { + "artist": "Le Pamplemousse", + "position": 89, + "title": "Le Spank" + }, + { + "artist": "Eric Carmen", + "position": 90, + "title": "Boats Against The Current" + }, + { + "artist": "El Coco", + "position": 91, + "title": "Cocomotion" + }, + { + "artist": "Bobby Arvon", + "position": 92, + "title": "Until Now" + }, + { + "artist": "The Alan Parsons Project", + "position": 93, + "title": "Don't Let It Show" + }, + { + "artist": "Brick", + "position": 94, + "title": "Dusic" + }, + { + "artist": "Shaun Cassidy", + "position": 95, + "title": "That's Rock 'N' Roll" + }, + { + "artist": "Jackie DeShannon", + "position": 96, + "title": "Don't Let The Flame Burn Out" + }, + { + "artist": "Firefall", + "position": 97, + "title": "Just Remember I Love You" + }, + { + "artist": "Aerosmith", + "position": 98, + "title": "Draw The Line" + }, + { + "artist": "Tavares", + "position": 99, + "title": "More Than A Woman" + }, + { + "artist": "Little River Band", + "position": 100, + "title": "Help Is On Its Way" + } + ], + "title": "1977 - Hot 100" + }, + { + "songs": [ + { + "artist": "Rod Stewart", + "position": 1, + "title": "Tonight's The Night (Gonna Be Alright)" + }, + { + "artist": "Marilyn McCoo & Billy Davis, Jr.", + "position": 2, + "title": "You Don't Have To Be A Star (To Be In My Show)" + }, + { + "artist": "The Spinners", + "position": 3, + "title": "The Rubberband Man" + }, + { + "artist": "Leo Sayer", + "position": 4, + "title": "You Make Me Feel Like Dancing" + }, + { + "artist": "Boston", + "position": 5, + "title": "More Than A Feeling" + }, + { + "artist": "Elton John", + "position": 6, + "title": "Sorry Seems To Be The Hardest Word" + }, + { + "artist": "Stevie Wonder", + "position": 7, + "title": "I Wish" + }, + { + "artist": "Brick", + "position": 8, + "title": "Dazz" + }, + { + "artist": "Rose Royce", + "position": 9, + "title": "Car Wash" + }, + { + "artist": "Engelbert Humperdinck", + "position": 10, + "title": "After The Lovin'" + }, + { + "artist": "Burton Cummings", + "position": 11, + "title": "Stand Tall" + }, + { + "artist": "The Sylvers", + "position": 12, + "title": "Hot Line" + }, + { + "artist": "Alice Cooper", + "position": 13, + "title": "I Never Cry" + }, + { + "artist": "Yvonne Elliman", + "position": 14, + "title": "Love Me" + }, + { + "artist": "Electric Light Orchestra", + "position": 15, + "title": "Livin' Thing" + }, + { + "artist": "Captain & Tennille", + "position": 16, + "title": "Muskrat Love" + }, + { + "artist": "Barry DeVorzon and Perry Botkin, Jr.", + "position": 17, + "title": "Nadia's Theme (The Young And The Restless)" + }, + { + "artist": "England Dan & John Ford Coley", + "position": 18, + "title": "Nights Are Forever Without You" + }, + { + "artist": "Queen", + "position": 19, + "title": "Somebody To Love" + }, + { + "artist": "Eagles", + "position": 20, + "title": "New Kid In Town" + }, + { + "artist": "The Jacksons", + "position": 21, + "title": "Enjoy Yourself" + }, + { + "artist": "Bread", + "position": 22, + "title": "Lost Without Your Love" + }, + { + "artist": "Firefall", + "position": 23, + "title": "You Are The Woman" + }, + { + "artist": "David Dundas", + "position": 24, + "title": "Jeans On" + }, + { + "artist": "The Bar-Kays", + "position": 25, + "title": "Shake Your Rump To The Funk" + }, + { + "artist": "Earth, Wind & Fire", + "position": 26, + "title": "Saturday Nite" + }, + { + "artist": "George Harrison", + "position": 27, + "title": "This Song" + }, + { + "artist": "Aerosmith", + "position": 28, + "title": "Walk This Way" + }, + { + "artist": "Mary Macgregor", + "position": 29, + "title": "Torn Between Two Lovers" + }, + { + "artist": "Kenny Nolan", + "position": 30, + "title": "I Like Dreamin'" + }, + { + "artist": "Bee Gees", + "position": 31, + "title": "Love So Right" + }, + { + "artist": "Manfred Mann's Earth Band", + "position": 32, + "title": "Blinded By The Light" + }, + { + "artist": "Dr. Buzzard's Original Savannah Band", + "position": 33, + "title": "Whispering/Cherchez La Femme/Se Si Bon" + }, + { + "artist": "L.T.D.", + "position": 34, + "title": "Love Ballad" + }, + { + "artist": "Barry Manilow", + "position": 35, + "title": "Weekend In New England" + }, + { + "artist": "Styx", + "position": 36, + "title": "Mademoiselle" + }, + { + "artist": "Donny & Marie Osmond", + "position": 37, + "title": "Ain't Nothing Like The Real Thing" + }, + { + "artist": "Al Green", + "position": 38, + "title": "Keep Me Cryin'" + }, + { + "artist": "Daryl Hall John Oates", + "position": 39, + "title": "Do What You Want, Be What You Are" + }, + { + "artist": "Foghat", + "position": 40, + "title": "Drivin' Wheel" + }, + { + "artist": "Kiss", + "position": 41, + "title": "Beth/Detroit Rock City" + }, + { + "artist": "Boz Scaggs", + "position": 42, + "title": "What Can I Say" + }, + { + "artist": "Lynyrd Skynyrd", + "position": 43, + "title": "Free Bird" + }, + { + "artist": "The Walter Murphy Band", + "position": 44, + "title": "Flight '76" + }, + { + "artist": "Eric Clapton", + "position": 45, + "title": "Hello Old Friend" + }, + { + "artist": "Linda Ronstadt", + "position": 46, + "title": "Someone To Lay Down Beside Me" + }, + { + "artist": "KC And The Sunshine Band", + "position": 47, + "title": "I Like To Do It" + }, + { + "artist": "Rick Dees & His Cast Of Idiots", + "position": 48, + "title": "Disco Duck (Part I)" + }, + { + "artist": "The Doobie Brothers", + "position": 49, + "title": "It Keeps You Runnin'" + }, + { + "artist": "Johnny Bristol", + "position": 50, + "title": "Do It To My Mind" + }, + { + "artist": "Barbra Streisand", + "position": 51, + "title": "Evergreen (Love Theme From A Star Is Born)" + }, + { + "artist": "Steve Miller", + "position": 52, + "title": "Fly Like An Eagle" + }, + { + "artist": "Smokie", + "position": 53, + "title": "Living Next Door To Alice" + }, + { + "artist": "Dickey Lee", + "position": 54, + "title": "9,999,999 Tears" + }, + { + "artist": "Dr. Hook", + "position": 55, + "title": "If Not You" + }, + { + "artist": "Bay City Rollers", + "position": 56, + "title": "Yesterday's Hero" + }, + { + "artist": "Commodores", + "position": 57, + "title": "Just To Be Close To You" + }, + { + "artist": "Tavares", + "position": 58, + "title": "Don't Take Away The Music" + }, + { + "artist": "Bob Seger", + "position": 59, + "title": "Night Moves" + }, + { + "artist": "Gene Cotton", + "position": 60, + "title": "You've Got Me Runnin'" + }, + { + "artist": "Mary Kay Place As Loretta Haggers", + "position": 61, + "title": "Baby Boy" + }, + { + "artist": "Kiss", + "position": 62, + "title": "Hard Luck Woman" + }, + { + "artist": "Funky Kings", + "position": 63, + "title": "Slow Dancing" + }, + { + "artist": "Jefferson Starship", + "position": 64, + "title": "St. Charles" + }, + { + "artist": "Robert Palmer", + "position": 65, + "title": "Man Smart, Woman Smarter" + }, + { + "artist": "ABBA", + "position": 66, + "title": "Dancing Queen" + }, + { + "artist": "Stephen Bishop", + "position": 67, + "title": "Save It For A Rainy Day" + }, + { + "artist": "Gordon Lightfoot", + "position": 68, + "title": "The Wreck Of The Edmund Fitzgerald" + }, + { + "artist": "Peter Frampton", + "position": 69, + "title": "Do You Feel Like We Do" + }, + { + "artist": "Donna Summer", + "position": 70, + "title": "Spring Affair/Winter Melody" + }, + { + "artist": "The Beatles", + "position": 71, + "title": "Ob-la-di, Ob-la-da" + }, + { + "artist": "Heart", + "position": 72, + "title": "Dreamboat Annie" + }, + { + "artist": "Starbuck", + "position": 73, + "title": "Lucky Man" + }, + { + "artist": "Deniece Williams", + "position": 74, + "title": "Free" + }, + { + "artist": "Thelma Houston", + "position": 75, + "title": "Don't Leave Me This Way" + }, + { + "artist": "Paul Anka", + "position": 76, + "title": "Happier" + }, + { + "artist": "Kool & The Gang", + "position": 77, + "title": "Open Sesame - Part 1" + }, + { + "artist": "Olivia Newton-John", + "position": 78, + "title": "Every Face Tells A Story" + }, + { + "artist": "John Denver", + "position": 79, + "title": "Baby, You Look Good To Me Tonight" + }, + { + "artist": "Cliff Richard", + "position": 80, + "title": "I Can't Ask For Anymore Than You" + }, + { + "artist": "Chicago", + "position": 81, + "title": "If You Leave Me Now" + }, + { + "artist": "Elvis Presley", + "position": 82, + "title": "Moody Blue/she Thinks I Still Care" + }, + { + "artist": "Robin Trower", + "position": 83, + "title": "Caledonia" + }, + { + "artist": "Al Stewart", + "position": 84, + "title": "Year Of The Cat" + }, + { + "artist": "The Supremes", + "position": 85, + "title": "You're My Driving Wheel" + }, + { + "artist": "Bryan Ferry", + "position": 86, + "title": "Heart On My Sleeve" + }, + { + "artist": "Kansas", + "position": 87, + "title": "Carry On Wayward Son" + }, + { + "artist": "Arthur Prysock", + "position": 88, + "title": "When Love Is New" + }, + { + "artist": "Rod Hart", + "position": 89, + "title": "C.b. Savage" + }, + { + "artist": "Brass Construction", + "position": 90, + "title": "Ha Cha Cha (funktion)" + }, + { + "artist": "David Laflamme", + "position": 91, + "title": "White Bird" + }, + { + "artist": "Little River Band", + "position": 92, + "title": "It's A Long Way There" + }, + { + "artist": "L.A. Jets", + "position": 93, + "title": "Prisoner (Captured By Your Eyes)" + }, + { + "artist": "Bumble Bee Unlimited", + "position": 94, + "title": "Love Bug" + }, + { + "artist": "Walter Jackson", + "position": 95, + "title": "Feelings" + }, + { + "artist": "JJ Cale", + "position": 96, + "title": "Hey Baby" + }, + { + "artist": "Elvin Bishop Featuring Mickey Thomas", + "position": 97, + "title": "Spend Some Time" + }, + { + "artist": "Starz", + "position": 98, + "title": "(She's Just A) Fallen Angel" + }, + { + "artist": "Seals & Crofts", + "position": 99, + "title": "Baby, I'll Give It To You" + }, + { + "artist": "The Ritchie Family", + "position": 100, + "title": "The Best Disco In Town" + } + ], + "title": "1976 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Staple Singers", + "position": 1, + "title": "Let's Do It Again" + }, + { + "artist": "Bay City Rollers", + "position": 2, + "title": "Saturday Night" + }, + { + "artist": "KC And The Sunshine Band", + "position": 3, + "title": "That's The Way (I Like It)" + }, + { + "artist": "Ohio Players", + "position": 4, + "title": "Love Rollercoaster" + }, + { + "artist": "Diana Ross", + "position": 5, + "title": "Theme From Mahogany (Do You Know Where You're Going To)" + }, + { + "artist": "Barry Manilow", + "position": 6, + "title": "I Write The Songs" + }, + { + "artist": "C.W. McCall", + "position": 7, + "title": "Convoy" + }, + { + "artist": "Sweet", + "position": 8, + "title": "Fox On The Run" + }, + { + "artist": "Silver Convention", + "position": 9, + "title": "Fly, Robin, Fly" + }, + { + "artist": "The O'Jays", + "position": 10, + "title": "I Love Music (Part 1)" + }, + { + "artist": "Frankie Valli", + "position": 11, + "title": "Our Day Will Come" + }, + { + "artist": "Jigsaw", + "position": 12, + "title": "Sky High" + }, + { + "artist": "Bee Gees", + "position": 13, + "title": "Nights On Broadway" + }, + { + "artist": "Paul Anka", + "position": 14, + "title": "Times Of Your Life" + }, + { + "artist": "Donna Summer", + "position": 15, + "title": "Love To Love You Baby" + }, + { + "artist": "Glen Campbell", + "position": 16, + "title": "Country Boy (You Got Your Feet In L.A.)" + }, + { + "artist": "David Ruffin", + "position": 17, + "title": "Walk Away From Love" + }, + { + "artist": "David Geddes", + "position": 18, + "title": "The Last Game Of The Season (A Blind Man In The Bleachers)" + }, + { + "artist": "Earth, Wind & Fire", + "position": 19, + "title": "Sing A Song" + }, + { + "artist": "Hot Chocolate", + "position": 20, + "title": "You Sexy Thing" + }, + { + "artist": "Kiss", + "position": 21, + "title": "Rock And Roll All Nite (live)" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 22, + "title": "Part Time Love" + }, + { + "artist": "John Denver", + "position": 23, + "title": "Fly Away" + }, + { + "artist": "Electric Light Orchestra", + "position": 24, + "title": "Evil Woman" + }, + { + "artist": "The Isley Brothers", + "position": 25, + "title": "For The Love Of You (Part 1&2)" + }, + { + "artist": "The Miracles", + "position": 26, + "title": "Love Machine (Part 1)" + }, + { + "artist": "Fleetwood Mac", + "position": 27, + "title": "Over My Head" + }, + { + "artist": "Al Green", + "position": 28, + "title": "Full Of Fire" + }, + { + "artist": "Simon & Garfunkel", + "position": 29, + "title": "My Little Town" + }, + { + "artist": "Hamilton, Joe Frank & Reynolds", + "position": 30, + "title": "Winners And Losers" + }, + { + "artist": "Captain & Tennille", + "position": 31, + "title": "The Way I Want To Touch You" + }, + { + "artist": "Elton John", + "position": 32, + "title": "Island Girl" + }, + { + "artist": "AWB", + "position": 33, + "title": "School Boy Crush" + }, + { + "artist": "Neil Sedaka", + "position": 34, + "title": "Breaking Up Is Hard To Do" + }, + { + "artist": "The Wing And A Prayer Fife & Drum Corps.", + "position": 35, + "title": "Baby Face" + }, + { + "artist": "Harold Melvin And The Blue Notes", + "position": 36, + "title": "Wake Up Everybody (Part 1)" + }, + { + "artist": "Helen Reddy", + "position": 37, + "title": "Somewhere In The Night" + }, + { + "artist": "The Marshall Tucker Band", + "position": 38, + "title": "Fire On The Mountain" + }, + { + "artist": "Al Martino", + "position": 39, + "title": "Volare" + }, + { + "artist": "The Road Apples", + "position": 40, + "title": "Let's Live Together" + }, + { + "artist": "Nazareth", + "position": 41, + "title": "Love Hurts" + }, + { + "artist": "Bob Dylan", + "position": 42, + "title": "Hurricane (Part I)" + }, + { + "artist": "Olivia Newton-John", + "position": 43, + "title": "Let It Shine/He Ain't Heavy...He's My Brother" + }, + { + "artist": "Leon Haywood", + "position": 44, + "title": "I Want'a Do Something Freaky To You" + }, + { + "artist": "The Who", + "position": 45, + "title": "Squeeze Box" + }, + { + "artist": "America", + "position": 46, + "title": "Woman Tonight" + }, + { + "artist": "George Baker Selection", + "position": 47, + "title": "Paloma Blanca" + }, + { + "artist": "Purple Reign", + "position": 48, + "title": "This Old Man" + }, + { + "artist": "War", + "position": 49, + "title": "Low Rider" + }, + { + "artist": "Paul Simon", + "position": 50, + "title": "50 Ways To Leave Your Lover" + }, + { + "artist": "Freddy Fender", + "position": 51, + "title": "Secret Love" + }, + { + "artist": "Bachman-Turner Overdrive", + "position": 52, + "title": "Down To The Line" + }, + { + "artist": "David Bowie", + "position": 53, + "title": "Golden Years" + }, + { + "artist": "Jefferson Starship", + "position": 54, + "title": "Play On Love" + }, + { + "artist": "Tavares", + "position": 55, + "title": "Free Ride" + }, + { + "artist": "Morris Albert", + "position": 56, + "title": "Feelings" + }, + { + "artist": "Foghat", + "position": 57, + "title": "Slow Ride" + }, + { + "artist": "Kenny Starr", + "position": 58, + "title": "The Blind Man In The Bleachers" + }, + { + "artist": "The 4 Seasons", + "position": 59, + "title": "Who Loves You" + }, + { + "artist": "Rhythm Heritage", + "position": 60, + "title": "Theme From S.W.A.T." + }, + { + "artist": "The Pointer Sisters", + "position": 61, + "title": "Going Down Slowly" + }, + { + "artist": "Eagles", + "position": 62, + "title": "Take It To The Limit" + }, + { + "artist": "John Denver", + "position": 63, + "title": "Christmas For Cowboys" + }, + { + "artist": "Natalie Cole", + "position": 64, + "title": "Inseparable" + }, + { + "artist": "Eric Carmen", + "position": 65, + "title": "All By Myself" + }, + { + "artist": "Donny & Marie Osmond", + "position": 66, + "title": "Deep Purple" + }, + { + "artist": "Billy Crash Craddock", + "position": 67, + "title": "Easy As Pie" + }, + { + "artist": "Eddie Kendricks", + "position": 68, + "title": "Happy" + }, + { + "artist": "Batdorf & Rodney", + "position": 69, + "title": "Somewhere In The Night" + }, + { + "artist": "Barry White", + "position": 70, + "title": "Let The Music Play" + }, + { + "artist": "Linda Ronstadt", + "position": 71, + "title": "Tracks Of My Tears" + }, + { + "artist": "Willie Nelson", + "position": 72, + "title": "Blue Eyes Crying In The Rain" + }, + { + "artist": "Bee Gees", + "position": 73, + "title": "Fanny (be Tender With My Love)" + }, + { + "artist": "Hagood Hardy", + "position": 74, + "title": "The Homecoming" + }, + { + "artist": "Gloria Gaynor", + "position": 75, + "title": "How High The Moon" + }, + { + "artist": "Soul Train Gang", + "position": 76, + "title": "Soul Train 75" + }, + { + "artist": "The Spinners", + "position": 77, + "title": "Love Or Leave" + }, + { + "artist": "John Fogerty", + "position": 78, + "title": "Almost Saturday Night" + }, + { + "artist": "Prelude", + "position": 79, + "title": "For A Dancer" + }, + { + "artist": "John Paul Young", + "position": 80, + "title": "Yesterday's Hero" + }, + { + "artist": "Art Garfunkel", + "position": 81, + "title": "Break Away" + }, + { + "artist": "Commodores", + "position": 82, + "title": "Sweet Love" + }, + { + "artist": "10cc", + "position": 83, + "title": "Art For Art's Sake" + }, + { + "artist": "The Ritchie Family", + "position": 84, + "title": "I Want To Dance With You (Dance With Me)" + }, + { + "artist": "The 4 Seasons", + "position": 85, + "title": "December, 1963 (Oh, What a Night)" + }, + { + "artist": "The Doobie Brothers", + "position": 86, + "title": "I Cheat The Hangman" + }, + { + "artist": "Cledus Maggard And The Citizen's Band", + "position": 87, + "title": "The White Knight" + }, + { + "artist": "Conway Twitty with Joni Lee", + "position": 88, + "title": "Don't Cry Joni" + }, + { + "artist": "Roxy Music", + "position": 89, + "title": "Love Is The Drug" + }, + { + "artist": "The Eleventh Hour", + "position": 90, + "title": "Hollywood Hot" + }, + { + "artist": "Mfsb", + "position": 91, + "title": "The Zip" + }, + { + "artist": "The Stylistics", + "position": 92, + "title": "Funky Weekend" + }, + { + "artist": "Crown Heights Affair", + "position": 93, + "title": "Every Beat Of My Heart" + }, + { + "artist": "Amazing Rhythm Aces", + "position": 94, + "title": "Amazing Grace (used To Be Her Favorite Song)" + }, + { + "artist": "Bill Withers", + "position": 95, + "title": "Make Love To Your Mind" + }, + { + "artist": "Justin Hayward & John Lodge", + "position": 96, + "title": "Blue Guitar" + }, + { + "artist": "Wings", + "position": 97, + "title": "Venus And Mars Rock Show" + }, + { + "artist": "Pete Wingfield", + "position": 98, + "title": "Eighteen With A Bullet" + }, + { + "artist": "Greg Lake", + "position": 99, + "title": "I Believe In Father Christmas" + }, + { + "artist": "Country Joe McDonald", + "position": 100, + "title": "Breakfast For Two" + } + ], + "title": "1975 - Hot 100" + }, + { + "songs": [ + { + "artist": "Helen Reddy", + "position": 1, + "title": "Angie Baby" + }, + { + "artist": "Elton John", + "position": 2, + "title": "Lucy In The Sky With Diamonds" + }, + { + "artist": "Barry White", + "position": 3, + "title": "You're The First, The Last, My Everything" + }, + { + "artist": "Carl Douglas", + "position": 4, + "title": "Kung Fu Fighting" + }, + { + "artist": "Harry Chapin", + "position": 5, + "title": "Cat's In The Cradle" + }, + { + "artist": "Paul McCartney & Wings", + "position": 6, + "title": "Junior's Farm/Sally G" + }, + { + "artist": "The Three Degrees", + "position": 7, + "title": "When Will I See You Again" + }, + { + "artist": "Neil Sedaka", + "position": 8, + "title": "Laughter In The Rain" + }, + { + "artist": "Ringo Starr", + "position": 9, + "title": "Only You" + }, + { + "artist": "Stevie Wonder", + "position": 10, + "title": "Boogie On Reggae Woman" + }, + { + "artist": "Carpenters", + "position": 11, + "title": "Please Mr. Postman" + }, + { + "artist": "Barry Manilow", + "position": 12, + "title": "Mandy" + }, + { + "artist": "The J. Geils Band", + "position": 13, + "title": "Must Of Got Lost" + }, + { + "artist": "Paul Anka with Odia Coates", + "position": 14, + "title": "One Man Woman/One Woman Man" + }, + { + "artist": "Al Green", + "position": 15, + "title": "Sha-La-La (Make Me Happy)" + }, + { + "artist": "Jethro Tull", + "position": 16, + "title": "Bungle In The Jungle" + }, + { + "artist": "Rufus Featuring Chaka Khan", + "position": 17, + "title": "You Got The Love" + }, + { + "artist": "Gloria Gaynor", + "position": 18, + "title": "Never Can Say Goodbye" + }, + { + "artist": "Donny & Marie Osmond", + "position": 19, + "title": "Morning Side Of The Mountain" + }, + { + "artist": "George Harrison", + "position": 20, + "title": "Dark Horse" + }, + { + "artist": "Billy Swan", + "position": 21, + "title": "I Can Help" + }, + { + "artist": "B.T. Express", + "position": 22, + "title": "Do It ('Til You're Satisfied)" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 23, + "title": "I Feel A Song (In My Heart)/Don't Burn Down The Bridge" + }, + { + "artist": "Ohio Players", + "position": 24, + "title": "Fire" + }, + { + "artist": "Carol Douglas", + "position": 25, + "title": "Doctor's Orders" + }, + { + "artist": "Elvis Presley", + "position": 26, + "title": "Promised Land" + }, + { + "artist": "AWB", + "position": 27, + "title": "Pick Up The Pieces" + }, + { + "artist": "Paul Davis", + "position": 28, + "title": "Ride 'em Cowboy" + }, + { + "artist": "Grand Funk", + "position": 29, + "title": "Some Kind Of Wonderful" + }, + { + "artist": "The Guess Who", + "position": 30, + "title": "Dancin' Fool" + }, + { + "artist": "The Rolling Stones", + "position": 31, + "title": "Ain't Too Proud To Beg" + }, + { + "artist": "Mac Davis", + "position": 32, + "title": "Rock N' Roll (I Gave You The Best Years Of My Life)" + }, + { + "artist": "Shirley Brown", + "position": 33, + "title": "Woman To Woman" + }, + { + "artist": "Chicago", + "position": 34, + "title": "Wishing You Were Here" + }, + { + "artist": "Disco Tex & The Sex-O-Lettes", + "position": 35, + "title": "Get Dancin'" + }, + { + "artist": "The Pointer Sisters", + "position": 36, + "title": "Fairytale" + }, + { + "artist": "Billy Crash Craddock", + "position": 37, + "title": "Ruby, Baby" + }, + { + "artist": "Barbara Mason", + "position": 38, + "title": "From His Woman To You" + }, + { + "artist": "Billy Joel", + "position": 39, + "title": "The Entertainer" + }, + { + "artist": "Eagles", + "position": 40, + "title": "Best Of My Love" + }, + { + "artist": "Love Unlimited", + "position": 41, + "title": "I Belong To You" + }, + { + "artist": "Bachman-Turner Overdrive", + "position": 42, + "title": "You Ain't Seen Nothing Yet/Free Wheelin'" + }, + { + "artist": "Lynyrd Skynyrd", + "position": 43, + "title": "Free Bird" + }, + { + "artist": "James Brown", + "position": 44, + "title": "Funky President (People It's Bad)/Coldblooded" + }, + { + "artist": "Aretha Franklin", + "position": 45, + "title": "Without Love" + }, + { + "artist": "Linda Ronstadt", + "position": 46, + "title": "You're No Good" + }, + { + "artist": "The Righteous Brothers", + "position": 47, + "title": "Dream On" + }, + { + "artist": "Bobby Vinton", + "position": 48, + "title": "My Melody Of Love" + }, + { + "artist": "Neil Diamond", + "position": 49, + "title": "Longfellow Serenade" + }, + { + "artist": "Tavares", + "position": 50, + "title": "She's Gone" + }, + { + "artist": "The Joneses", + "position": 51, + "title": "Sugar Pie Guy Pt. 1" + }, + { + "artist": "Eric Clapton", + "position": 52, + "title": "Willie And The Hand Jive" + }, + { + "artist": "The Kiki Dee Band", + "position": 53, + "title": "I've Got The Music In Me" + }, + { + "artist": "Cat Stevens", + "position": 54, + "title": "Ready" + }, + { + "artist": "Frankie Valli", + "position": 55, + "title": "My Eyes Adored You" + }, + { + "artist": "David Bowie", + "position": 56, + "title": "Changes" + }, + { + "artist": "Billy Preston", + "position": 57, + "title": "Struttin'" + }, + { + "artist": "John Lennon", + "position": 58, + "title": "#9 Dream" + }, + { + "artist": "The Doobie Brothers", + "position": 59, + "title": "Black Water" + }, + { + "artist": "Jackson 5", + "position": 60, + "title": "Whatever You Got, I Want" + }, + { + "artist": "The Stylistics", + "position": 61, + "title": "Heavy Fallin' Out" + }, + { + "artist": "Carl Carlton", + "position": 62, + "title": "Everlasting Love" + }, + { + "artist": "Tony Orlando & Dawn", + "position": 63, + "title": "Look In My Eyes Pretty Woman" + }, + { + "artist": "John Lennon With The Plastic Ono Nuclear Band", + "position": 64, + "title": "Whatever Gets You Thru The Night" + }, + { + "artist": "John Denver", + "position": 65, + "title": "Back Home Again" + }, + { + "artist": "The O'Jays", + "position": 66, + "title": "Sunshine Part II" + }, + { + "artist": "Bo Donaldson And The Heywoods", + "position": 67, + "title": "The Heartbreak Kid" + }, + { + "artist": "B.B. King", + "position": 68, + "title": "Philadelphia" + }, + { + "artist": "Jim Stafford", + "position": 69, + "title": "Your Bulldog Drinks Champagne" + }, + { + "artist": "Carl Graves", + "position": 70, + "title": "Baby, Hang Up The Phone" + }, + { + "artist": "Eddie Kendricks", + "position": 71, + "title": "One Tear" + }, + { + "artist": "Styx", + "position": 72, + "title": "Lady" + }, + { + "artist": "Michael Holm", + "position": 73, + "title": "When A Child Is Born" + }, + { + "artist": "The Temptations", + "position": 74, + "title": "Happy People" + }, + { + "artist": "Smokey Robinson", + "position": 75, + "title": "I Am I Am" + }, + { + "artist": "Electric Light Orchestra", + "position": 76, + "title": "Can't Get It Out Of My Head" + }, + { + "artist": "America", + "position": 77, + "title": "Lonely People" + }, + { + "artist": "John Denver", + "position": 78, + "title": "Sweet Surrender" + }, + { + "artist": "Latimore", + "position": 79, + "title": "Let's Straighten It Out" + }, + { + "artist": "Anne Murray", + "position": 80, + "title": "Day Tripper" + }, + { + "artist": "Roy Rogers", + "position": 81, + "title": "Hoppy, Gene And Me" + }, + { + "artist": "Al Martino", + "position": 82, + "title": "To The Door Of The Sun (Alle Porte Del Sole)" + }, + { + "artist": "The Miracles", + "position": 83, + "title": "Don't Cha Love It" + }, + { + "artist": "Joni Mitchell", + "position": 84, + "title": "Big Yellow Taxi" + }, + { + "artist": "Sugarloaf/Jerry Corbetta", + "position": 85, + "title": "Don't Call Us, We'll Call You" + }, + { + "artist": "Candi Staton", + "position": 86, + "title": "As Long As He Takes Care Of Home" + }, + { + "artist": "Splinter", + "position": 87, + "title": "Costafine Town" + }, + { + "artist": "Maria Muldaur", + "position": 88, + "title": "I'm A Woman" + }, + { + "artist": "Commodores", + "position": 89, + "title": "I Feel Sanctified" + }, + { + "artist": "Peter Shelley", + "position": 90, + "title": "Gee Baby" + }, + { + "artist": "The Tymes", + "position": 91, + "title": "Ms. Grace" + }, + { + "artist": "Perry Como", + "position": 92, + "title": "Christmas Dream" + }, + { + "artist": "Bill Withers", + "position": 93, + "title": "Heartbreak Road" + }, + { + "artist": "Margie Joseph", + "position": 94, + "title": "Words (are Impossible)" + }, + { + "artist": "The Hues Corporation", + "position": 95, + "title": "Rockin' Soul" + }, + { + "artist": "Jim Weatherly", + "position": 96, + "title": "The Need To Be" + }, + { + "artist": "Johnny Bristol", + "position": 97, + "title": "You And I" + }, + { + "artist": "Bobby Bland", + "position": 98, + "title": "I Wouldn't Treat A Dog (The Way You Treated Me)" + }, + { + "artist": "Prelude", + "position": 99, + "title": "After The Goldrush" + }, + { + "artist": "Chilliwack", + "position": 100, + "title": "Crazy Talk" + } + ], + "title": "1974 - Hot 100" + }, + { + "songs": [ + { + "artist": "Jim Croce", + "position": 1, + "title": "Time In A Bottle" + }, + { + "artist": "Charlie Rich", + "position": 2, + "title": "The Most Beautiful Girl" + }, + { + "artist": "Helen Reddy", + "position": 3, + "title": "Leave Me Alone (ruby Red Dress)" + }, + { + "artist": "The Steve Miller Band", + "position": 4, + "title": "The Joker" + }, + { + "artist": "Elton John", + "position": 5, + "title": "GOODBYE YELLOW BRICK ROAD" + }, + { + "artist": "Todd Rundgren", + "position": 6, + "title": "Hello It's Me" + }, + { + "artist": "Carpenters", + "position": 7, + "title": "Top Of The World" + }, + { + "artist": "Al Wilson", + "position": 8, + "title": "Show And Tell" + }, + { + "artist": "Brownsville Station", + "position": 9, + "title": "Smokin' In The Boy's Room" + }, + { + "artist": "Barry White", + "position": 10, + "title": "Never, Never Gonna Give Ya Up" + }, + { + "artist": "Stevie Wonder", + "position": 11, + "title": "Living For The City" + }, + { + "artist": "The Staple Singers", + "position": 12, + "title": "If You're Ready (Come Go With Me)" + }, + { + "artist": "Chicago", + "position": 13, + "title": "Just You 'n' Me" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 14, + "title": "I've Got To Use My Imagination" + }, + { + "artist": "The Stylistics", + "position": 15, + "title": "Rockin' Roll Baby" + }, + { + "artist": "Paul McCartney & Wings", + "position": 16, + "title": "Helen Wheels" + }, + { + "artist": "Olivia Newton-John", + "position": 17, + "title": "Let Me Be There" + }, + { + "artist": "John Lennon", + "position": 18, + "title": "MIND GAMES" + }, + { + "artist": "Aretha Franklin", + "position": 19, + "title": "Until You Come Back To Me (That's What I'm Gonna Do)" + }, + { + "artist": "Led Zeppelin", + "position": 20, + "title": "D'yer Mak'er" + }, + { + "artist": "Love Unlimited Orchestra", + "position": 21, + "title": "Love's Theme" + }, + { + "artist": "Teddy Pendergrass", + "position": 22, + "title": "The Whole Town's Laughing At Me" + }, + { + "artist": "Barbra Streisand", + "position": 23, + "title": "The Way We Were" + }, + { + "artist": "War", + "position": 24, + "title": "Me And Baby Brother" + }, + { + "artist": "Donny Osmond", + "position": 25, + "title": "When I Fall In Love/Are You Lonesome Tonight" + }, + { + "artist": "Loggins & Messina", + "position": 26, + "title": "My Music" + }, + { + "artist": "Ringo Starr", + "position": 27, + "title": "You're Sixteen" + }, + { + "artist": "Ringo Starr", + "position": 28, + "title": "Photograph" + }, + { + "artist": "Billy Preston", + "position": 29, + "title": "Space Race" + }, + { + "artist": "Al Green", + "position": 30, + "title": "Livin' For You" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 31, + "title": "Midnight Train To Georgia" + }, + { + "artist": "Tony Orlando & Dawn", + "position": 32, + "title": "Who's In The Strawberry Patch With Sally" + }, + { + "artist": "Marvin Gaye", + "position": 33, + "title": "Come Get To This" + }, + { + "artist": "Jim Croce", + "position": 34, + "title": "I Got A Name" + }, + { + "artist": "Cheech & Chong", + "position": 35, + "title": "Sister Mary Elephant (Shudd-Up!)" + }, + { + "artist": "Grand Funk", + "position": 36, + "title": "Walk Like A Man" + }, + { + "artist": "Ian Thomas", + "position": 37, + "title": "Painted Ladies" + }, + { + "artist": "Jim Stafford", + "position": 38, + "title": "Spiders & Snakes" + }, + { + "artist": "The DeFranco Family featuring Tony DeFranco", + "position": 39, + "title": "Heartbeat - It's A Lovebeat" + }, + { + "artist": "Eddie Kendricks", + "position": 40, + "title": "Keep On Truckin' (Part 1)" + }, + { + "artist": "Three Dog Night", + "position": 41, + "title": "Let Me Serenade You" + }, + { + "artist": "Ann Peebles", + "position": 42, + "title": "I Can't Stand The Rain" + }, + { + "artist": "Paul Simon", + "position": 43, + "title": "American Tune" + }, + { + "artist": "Bobby Blue Bland", + "position": 44, + "title": "This Time I'm Gone For Good" + }, + { + "artist": "El Chicano", + "position": 45, + "title": "Tell Her She's Lovely" + }, + { + "artist": "Marie Osmond", + "position": 46, + "title": "Paper Roses" + }, + { + "artist": "The Chi-lites", + "position": 47, + "title": "I Found Sunshine" + }, + { + "artist": "The Persuaders", + "position": 48, + "title": "Some Guys Have All The Luck" + }, + { + "artist": "Kris Kristofferson & Rita Coolidge", + "position": 49, + "title": "A Song I'd Like To Sing" + }, + { + "artist": "Merle Haggard", + "position": 50, + "title": "If We Make It Through December" + }, + { + "artist": "Carole King", + "position": 51, + "title": "Coraz??�n" + }, + { + "artist": "David Essex", + "position": 52, + "title": "Rock On" + }, + { + "artist": "Earth, Wind & Fire", + "position": 53, + "title": "Keep Your Head To The Sky" + }, + { + "artist": "Kool & The Gang", + "position": 54, + "title": "Jungle Boogie" + }, + { + "artist": "B.W. Stevenson", + "position": 55, + "title": "The River Of Love" + }, + { + "artist": "First Choice", + "position": 56, + "title": "Smarty Pants" + }, + { + "artist": "Tom T. Hall", + "position": 57, + "title": "I Love" + }, + { + "artist": "Linda Ronstadt", + "position": 58, + "title": "Love Has No Pride" + }, + { + "artist": "Smokey Robinson", + "position": 59, + "title": "Baby Come Close" + }, + { + "artist": "The Intruders", + "position": 60, + "title": "I Wanna Know Your Name" + }, + { + "artist": "The O'Jays", + "position": 61, + "title": "Put Your Hands Together" + }, + { + "artist": "Isaac Hayes", + "position": 62, + "title": "Joy Pt. I" + }, + { + "artist": "Frank Sinatra", + "position": 63, + "title": "Let Me Try Again (Laisse Moi Le Temps)" + }, + { + "artist": "Joe Simon", + "position": 64, + "title": "River" + }, + { + "artist": "The Temptations", + "position": 65, + "title": "Let Your Hair Down" + }, + { + "artist": "Black Oak Arkansas", + "position": 66, + "title": "Jim Dandy" + }, + { + "artist": "Electric Light Orchestra", + "position": 67, + "title": "Showdown" + }, + { + "artist": "Bachman-Turner Overdrive", + "position": 68, + "title": "Blue Collar" + }, + { + "artist": "Bob Dylan", + "position": 69, + "title": "A Fool Such As I" + }, + { + "artist": "Anne Murray", + "position": 70, + "title": "Love Song" + }, + { + "artist": "Edgar Winter Group", + "position": 71, + "title": "Hangin' Around" + }, + { + "artist": "Gregg Allman", + "position": 72, + "title": "Midnight Rider" + }, + { + "artist": "The Band", + "position": 73, + "title": "Ain't Got No Home" + }, + { + "artist": "Wednesday", + "position": 74, + "title": "Last Kiss" + }, + { + "artist": "B.B. King", + "position": 75, + "title": "I Like To Live The Love" + }, + { + "artist": "The Who", + "position": 76, + "title": "Love, Reign O'er Me" + }, + { + "artist": "Jim Croce", + "position": 77, + "title": "It Doesn't Have To Be That Way" + }, + { + "artist": "James Brown", + "position": 78, + "title": "Stoned To The Bone - Part 1" + }, + { + "artist": "Steely Dan", + "position": 79, + "title": "My Old School" + }, + { + "artist": "John Denver", + "position": 80, + "title": "Please, Daddy" + }, + { + "artist": "Keith Hampshire", + "position": 81, + "title": "Big Time Operator" + }, + { + "artist": "Melanie", + "position": 82, + "title": "Will You Love Me Tomorrow?" + }, + { + "artist": "Love Unlimited", + "position": 83, + "title": "It May Be Winter Outside, (But In My Heart It's Spring)" + }, + { + "artist": "Alice Cooper", + "position": 84, + "title": "Teenage Lament '74" + }, + { + "artist": "Roy Clark", + "position": 85, + "title": "Somewhere Between Love And Tomorrow" + }, + { + "artist": "Don Goodwin", + "position": 86, + "title": "This Is Your Song" + }, + { + "artist": "Garfunkel", + "position": 87, + "title": "I Shall Sing" + }, + { + "artist": "The Pointer Sisters", + "position": 88, + "title": "Wang Dang Doodle" + }, + { + "artist": "Joni Mitchell", + "position": 89, + "title": "Raised On Robbery" + }, + { + "artist": "Coven", + "position": 90, + "title": "One Tin Soldier, The Legend of Billy Jack" + }, + { + "artist": "The 5th Dimension", + "position": 91, + "title": "Flashback" + }, + { + "artist": "Lamont Dozier", + "position": 92, + "title": "Trying To Hold On To My Woman" + }, + { + "artist": "Gary & Dave", + "position": 93, + "title": "Could You Ever Love Me Again" + }, + { + "artist": "Albert Hammond", + "position": 94, + "title": "Half A Million Miles From Home" + }, + { + "artist": "The De Franco Family", + "position": 95, + "title": "Abra-Ca-Dabra" + }, + { + "artist": "The Dramatics", + "position": 96, + "title": "Fell For You" + }, + { + "artist": "J. Frank Wilson and The Cavaliers", + "position": 97, + "title": "Last Kiss" + }, + { + "artist": "The Isley Brothers", + "position": 98, + "title": "What It Comes Down To" + }, + { + "artist": "Johnny Mathis", + "position": 99, + "title": "Life Is A Song Worth Singing" + }, + { + "artist": "Curtis Mayfield", + "position": 100, + "title": "Can't Say Nothin'" + } + ], + "title": "1973 - Hot 100" + }, + { + "songs": [ + { + "artist": "Billy Paul", + "position": 1, + "title": "Me And Mrs. Jones" + }, + { + "artist": "Gilbert O'Sullivan", + "position": 2, + "title": "Clair" + }, + { + "artist": "Al Green", + "position": 3, + "title": "You Ought To Be With Me" + }, + { + "artist": "Carly Simon", + "position": 4, + "title": "You're So Vain" + }, + { + "artist": "Albert Hammond", + "position": 5, + "title": "It Never Rains In Southern California" + }, + { + "artist": "Donna Fargo", + "position": 6, + "title": "Funny Face" + }, + { + "artist": "Helen Reddy", + "position": 7, + "title": "I Am Woman" + }, + { + "artist": "Johnny Rivers", + "position": 8, + "title": "Rockin' Pneumonia - Boogie Woogie Flu" + }, + { + "artist": "Curtis Mayfield", + "position": 9, + "title": "Superfly" + }, + { + "artist": "Kenny Loggins & Jim Messina", + "position": 10, + "title": "Your Mama Don't Dance" + }, + { + "artist": "Four Tops", + "position": 11, + "title": "Keeper Of The Castle" + }, + { + "artist": "Austin Roberts", + "position": 12, + "title": "Something's Wrong With Me" + }, + { + "artist": "Jethro Tull", + "position": 13, + "title": "Living In The Past" + }, + { + "artist": "The Temptations", + "position": 14, + "title": "Papa Was A Rollin' Stone" + }, + { + "artist": "Bread", + "position": 15, + "title": "Sweet Surrender" + }, + { + "artist": "Stevie Wonder", + "position": 16, + "title": "Superstition" + }, + { + "artist": "Neil Diamond", + "position": 17, + "title": "Walk On Water" + }, + { + "artist": "Cat Stevens", + "position": 18, + "title": "Sitting" + }, + { + "artist": "Harold Melvin And The Blue Notes", + "position": 19, + "title": "If You Don't Know Me By Now" + }, + { + "artist": "Elton John", + "position": 20, + "title": "Crocodile Rock" + }, + { + "artist": "James Taylor", + "position": 21, + "title": "Don't Let Me Be Lonely Tonight" + }, + { + "artist": "Johnny Nash", + "position": 22, + "title": "I Can See Clearly Now" + }, + { + "artist": "Three Dog Night", + "position": 23, + "title": "Pieces Of April" + }, + { + "artist": "Timmy Thomas", + "position": 24, + "title": "Why Can't We Live Together" + }, + { + "artist": "Jackson 5", + "position": 25, + "title": "Corner Of The Sky" + }, + { + "artist": "Carole King", + "position": 26, + "title": "Been To Canaan" + }, + { + "artist": "Wings", + "position": 27, + "title": "Hi, Hi, Hi" + }, + { + "artist": "Raspberries", + "position": 28, + "title": "I Wanna Be With You" + }, + { + "artist": "Seals & Crofts", + "position": 29, + "title": "Summer Breeze" + }, + { + "artist": "Hurricane Smith", + "position": 30, + "title": "Oh, Babe, What Would You Say?" + }, + { + "artist": "Blue Haze", + "position": 31, + "title": "Smoke Gets In Your Eyes" + }, + { + "artist": "The Hollies", + "position": 32, + "title": "Long Dark Road" + }, + { + "artist": "Marvin Gaye", + "position": 33, + "title": "Trouble Man" + }, + { + "artist": "Elvis Presley", + "position": 34, + "title": "Separate Ways" + }, + { + "artist": "War", + "position": 35, + "title": "The World Is A Ghetto" + }, + { + "artist": "America", + "position": 36, + "title": "Ventura Highway" + }, + { + "artist": "Steely Dan", + "position": 37, + "title": "Do It Again" + }, + { + "artist": "The Stylistics", + "position": 38, + "title": "I'm Stone In Love With You" + }, + { + "artist": "The Osmonds", + "position": 39, + "title": "Crazy Horses" + }, + { + "artist": "Joni Mitchell", + "position": 40, + "title": "You Turn Me On, I'm A Radio" + }, + { + "artist": "John Denver", + "position": 41, + "title": "Rocky Mountain High" + }, + { + "artist": "Bee Gees", + "position": 42, + "title": "Alive" + }, + { + "artist": "King Harvest", + "position": 43, + "title": "Dancing In The Moonlight" + }, + { + "artist": "Bulldog", + "position": 44, + "title": "No" + }, + { + "artist": "Bobby Womack & Peace", + "position": 45, + "title": "Harry Hippie" + }, + { + "artist": "Brighter Side Of Darkness", + "position": 46, + "title": "Love Jones" + }, + { + "artist": "The Who", + "position": 47, + "title": "The Relay" + }, + { + "artist": "Chicago", + "position": 48, + "title": "Dialogue (Part I & II)" + }, + { + "artist": "The Blue Ridge Rangers", + "position": 49, + "title": "Jambalaya (On The Bayou)" + }, + { + "artist": "Joe Simon", + "position": 50, + "title": "Trouble In My Home/I Found My Dad" + }, + { + "artist": "Clean Living", + "position": 51, + "title": "In Heaven There Is No Beer" + }, + { + "artist": "Bill Withers", + "position": 52, + "title": "Let Us Love" + }, + { + "artist": "Peter Skellern", + "position": 53, + "title": "You're A Lady" + }, + { + "artist": "Jermaine Jackson", + "position": 54, + "title": "Daddy's Home" + }, + { + "artist": "Chuck Berry", + "position": 55, + "title": "Reelin' & Rockin'" + }, + { + "artist": "Jim Croce", + "position": 56, + "title": "Operator (That's Not the Way it Feels)" + }, + { + "artist": "Dennis Yost And The Classics IV", + "position": 57, + "title": "What Am I Crying For?" + }, + { + "artist": "Joe Cocker and The Chris Stainton Band", + "position": 58, + "title": "Woman To Woman" + }, + { + "artist": "James Brown", + "position": 59, + "title": "I Got A Bag Of My Own" + }, + { + "artist": "Luther Ingram", + "position": 60, + "title": "I'll Be Your Shelter (In Time Of Storm)" + }, + { + "artist": "The Chi-lites", + "position": 61, + "title": "We Need Order" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 62, + "title": "I Can't Stand To See You Cry" + }, + { + "artist": "Mac Davis", + "position": 63, + "title": "Everybody Loves A Love Song" + }, + { + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "position": 64, + "title": "Looking Through The Eyes Of Love" + }, + { + "artist": "Rod Stewart", + "position": 65, + "title": "Angel" + }, + { + "artist": "Don McLean", + "position": 66, + "title": "Dreidel" + }, + { + "artist": "The Main Ingredient", + "position": 67, + "title": "You've Got To Take It (If You Want It)" + }, + { + "artist": "The O'Jays", + "position": 68, + "title": "992 Arguments" + }, + { + "artist": "Cornelius Brothers & Sister Rose", + "position": 69, + "title": "I'm Never Gonna Be Alone Anymore" + }, + { + "artist": "Nilsson", + "position": 70, + "title": "Remember (Christmas)" + }, + { + "artist": "Gary Glitter", + "position": 71, + "title": "I Didn't Know I Loved You (Till I Saw You Rock And Roll)" + }, + { + "artist": "Bette Midler", + "position": 72, + "title": "Do You Want To Dance?" + }, + { + "artist": "Eagles", + "position": 73, + "title": "Peaceful Easy Feeling" + }, + { + "artist": "Dawn Featuring Tony Orlando", + "position": 74, + "title": "You're A Lady" + }, + { + "artist": "Wayne Newton", + "position": 75, + "title": "Anthem" + }, + { + "artist": "Keith Hampshire", + "position": 76, + "title": "Daytime Night-Time" + }, + { + "artist": "Dr. Hook And The Medicine Show", + "position": 77, + "title": "The Cover Of Rolling Stone" + }, + { + "artist": "James Brown-Lyn Collins", + "position": 78, + "title": "What My Baby Needs Now Is A Little More Lovin'" + }, + { + "artist": "The Spinners", + "position": 79, + "title": "Could It Be I'm Falling In Love" + }, + { + "artist": "Edward Bear", + "position": 80, + "title": "Last Song" + }, + { + "artist": "Lobo", + "position": 81, + "title": "Don't Expect Me To Be Your Friend" + }, + { + "artist": "Cashman & West", + "position": 82, + "title": "Songman" + }, + { + "artist": "Slade", + "position": 83, + "title": "Mama Weer All Crazee Now" + }, + { + "artist": "Valerie Simpson", + "position": 84, + "title": "Silly Wasn't I" + }, + { + "artist": "Glen Campbell", + "position": 85, + "title": "One Last Time" + }, + { + "artist": "Emerson, Lake & Palmer", + "position": 86, + "title": "Lucky Man" + }, + { + "artist": "Merry Clayton", + "position": 87, + "title": "Oh No, Not My Baby" + }, + { + "artist": "Gallery", + "position": 88, + "title": "Big City Miss Ruth Ann" + }, + { + "artist": "Limmie & Family Cookin'", + "position": 89, + "title": "You Can Do Magic" + }, + { + "artist": "The Doobie Brothers", + "position": 90, + "title": "Jesus Is Just Alright" + }, + { + "artist": "Kris Kristofferson", + "position": 91, + "title": "Jesus Was A Capricorn" + }, + { + "artist": "Mary Hopkin", + "position": 92, + "title": "Knock Knock Who's There" + }, + { + "artist": "Joey Heatherton", + "position": 93, + "title": "I'm Sorry" + }, + { + "artist": "Paul Davis", + "position": 94, + "title": "Boogie Woogie Man" + }, + { + "artist": "Barbra Streisand", + "position": 95, + "title": "Didn't We" + }, + { + "artist": "Rita Coolidge", + "position": 96, + "title": "Fever/My Crew" + }, + { + "artist": "Ten Years After", + "position": 97, + "title": "Choo Choo Mama" + }, + { + "artist": "Bobby Vinton", + "position": 98, + "title": "But I Do" + }, + { + "artist": "Brownsville Station", + "position": 99, + "title": "The Red Back Spider" + }, + { + "artist": "Engelbert Humperdinck", + "position": 100, + "title": "I Never Said Goodbye" + } + ], + "title": "1972 - Hot 100" + }, + { + "songs": [ + { + "artist": "Melanie", + "position": 1, + "title": "Brand New Key" + }, + { + "artist": "Sly & The Family Stone", + "position": 2, + "title": "Family Affair" + }, + { + "artist": "Don McLean", + "position": 3, + "title": "American Pie (Parts I & II)" + }, + { + "artist": "Three Dog Night", + "position": 4, + "title": "An Old Fashioned Love Song" + }, + { + "artist": "Michael Jackson", + "position": 5, + "title": "Got To Be There" + }, + { + "artist": "The Chi-lites", + "position": 6, + "title": "Have You Seen Her" + }, + { + "artist": "Sonny & Cher", + "position": 7, + "title": "All I Ever Need Is You" + }, + { + "artist": "Dennis Coffey & The Detroit Guitar Band", + "position": 8, + "title": "Scorpio" + }, + { + "artist": "David Cassidy", + "position": 9, + "title": "Cherish" + }, + { + "artist": "Donny Osmond", + "position": 10, + "title": "Hey Girl/I Knew You When" + }, + { + "artist": "Bread", + "position": 11, + "title": "Baby I'm - A Want You" + }, + { + "artist": "The Staple Singers", + "position": 12, + "title": "Respect Yourself" + }, + { + "artist": "Jonathan Edwards", + "position": 13, + "title": "Sunshine" + }, + { + "artist": "The Stylistics", + "position": 14, + "title": "You Are Everything" + }, + { + "artist": "Donnie Elbert", + "position": 15, + "title": "Where Did Our Love Go" + }, + { + "artist": "Isaac Hayes", + "position": 16, + "title": "Theme From Shaft" + }, + { + "artist": "The New Seekers", + "position": 17, + "title": "I'd Like To Teach The World To Sing (In Perfect Harmony)" + }, + { + "artist": "The Temptations", + "position": 18, + "title": "Superstar (Remember How You Got Where You Are)" + }, + { + "artist": "Cher", + "position": 19, + "title": "Gypsys, Tramps & Thieves" + }, + { + "artist": "Al Green", + "position": 20, + "title": "Let's Stay Together" + }, + { + "artist": "The Hillside Singers", + "position": 21, + "title": "I'd Like To Teach The World To Sing (In Perfect Harmony)" + }, + { + "artist": "The Honey Cone", + "position": 22, + "title": "One Monkey Don't Stop No Show Part I" + }, + { + "artist": "Betty Wright", + "position": 23, + "title": "Clean Up Woman" + }, + { + "artist": "Rod Stewart With Faces", + "position": 24, + "title": "(I Know) I'm Losing You" + }, + { + "artist": "Neil Diamond", + "position": 25, + "title": "Stones/Crunchy Granola Suite" + }, + { + "artist": "Badfinger", + "position": 26, + "title": "Day After Day" + }, + { + "artist": "Aretha Franklin", + "position": 27, + "title": "Rock Steady" + }, + { + "artist": "Joe Simon", + "position": 28, + "title": "Drowning In The Sea Of Love" + }, + { + "artist": "Peter Nero", + "position": 29, + "title": "Theme From Summer Of '42" + }, + { + "artist": "Mickey Newbury", + "position": 30, + "title": "An American Trilogy" + }, + { + "artist": "Jackson 5", + "position": 31, + "title": "Sugar Daddy" + }, + { + "artist": "Rare Earth", + "position": 32, + "title": "Hey Big Brother" + }, + { + "artist": "Sweathog", + "position": 33, + "title": "Hallelujah" + }, + { + "artist": "The Who", + "position": 34, + "title": "Behind Blue Eyes" + }, + { + "artist": "Les Crane", + "position": 35, + "title": "Desiderata" + }, + { + "artist": "Lou Rawls", + "position": 36, + "title": "A Natural Man" + }, + { + "artist": "Charley Pride", + "position": 37, + "title": "Kiss An Angel Good Mornin'" + }, + { + "artist": "Bob Dylan", + "position": 38, + "title": "George Jackson" + }, + { + "artist": "Lee Michaels", + "position": 39, + "title": "Can I Get A Witness" + }, + { + "artist": "Bullet", + "position": 40, + "title": "White Lies, Blue Eyes" + }, + { + "artist": "Tommy James", + "position": 41, + "title": "Nothing To Hide" + }, + { + "artist": "James Brown", + "position": 42, + "title": "I'm A Greedy Man - Part I" + }, + { + "artist": "Carly Simon", + "position": 43, + "title": "Anticipation" + }, + { + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "position": 44, + "title": "It's One Of Those Nights (Yes Love)" + }, + { + "artist": "Think", + "position": 45, + "title": "Once You Understand" + }, + { + "artist": "Jerry Lee Lewis", + "position": 46, + "title": "Me And Bobby McGee" + }, + { + "artist": "John Denver", + "position": 47, + "title": "Friends With You" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 48, + "title": "Make Me The Woman That You Go Home To" + }, + { + "artist": "Joan Baez", + "position": 49, + "title": "Let It Be" + }, + { + "artist": "Yes", + "position": 50, + "title": "Your Move (I've Seen All Good People)" + }, + { + "artist": "Redbone", + "position": 51, + "title": "The Witch Queen Of New Orleans" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 52, + "title": "Satisfaction" + }, + { + "artist": "The Guess Who", + "position": 53, + "title": "Sour Suite" + }, + { + "artist": "Richard Harris", + "position": 54, + "title": "My Boy" + }, + { + "artist": "B.B. King", + "position": 55, + "title": "Ain't Nobody Home" + }, + { + "artist": "The J. Geils Band", + "position": 56, + "title": "Looking For A Love" + }, + { + "artist": "Elton John", + "position": 57, + "title": "Levon" + }, + { + "artist": "Carroll O'Connor And Jean Stapleton (As The Bunkers)", + "position": 58, + "title": "Those Were The Days" + }, + { + "artist": "Merle Haggard And The Strangers", + "position": 59, + "title": "Carolyn" + }, + { + "artist": "Bobby Womack & Peace", + "position": 60, + "title": "That's The Way I Feel About Cha" + }, + { + "artist": "Jefferson Airplane", + "position": 61, + "title": "Pretty As You Feel" + }, + { + "artist": "Stampeders", + "position": 62, + "title": "Devil You" + }, + { + "artist": "Ray Stevens", + "position": 63, + "title": "Turn Your Radio On" + }, + { + "artist": "Grateful Dead", + "position": 64, + "title": "Truckin'" + }, + { + "artist": "Little Johnny Taylor", + "position": 65, + "title": "Everybody Knows About My Good Thing Pt. 1" + }, + { + "artist": "Hamilton, Joe Frank & Reynolds", + "position": 66, + "title": "Daisy Mae" + }, + { + "artist": "Led Zeppelin", + "position": 67, + "title": "Black Dog" + }, + { + "artist": "Helen Reddy", + "position": 68, + "title": "No Sad Song" + }, + { + "artist": "Lighthouse", + "position": 69, + "title": "Take It Slow (Out In The Country)" + }, + { + "artist": "Curtis Mayfield", + "position": 70, + "title": "Get Down" + }, + { + "artist": "The Doors", + "position": 71, + "title": "Tightrope Ride" + }, + { + "artist": "Merry Clayton", + "position": 72, + "title": "After All This Time" + }, + { + "artist": "The Isley Brothers", + "position": 73, + "title": "Lay Lady Lay" + }, + { + "artist": "Carpenters", + "position": 74, + "title": "Superstar/Bless The Beasts And Children" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 75, + "title": "Way Back Home" + }, + { + "artist": "Nilsson", + "position": 76, + "title": "Without You" + }, + { + "artist": "Beverly Bremers", + "position": 77, + "title": "Don't Say You Don't Remember" + }, + { + "artist": "The Coasters", + "position": 78, + "title": "Love Potion Number Nine" + }, + { + "artist": "Wilson Pickett", + "position": 79, + "title": "Fire And Water" + }, + { + "artist": "Free Movement", + "position": 80, + "title": "The Harder I Try (The Bluer I Get)" + }, + { + "artist": "Three Dog Night", + "position": 81, + "title": "Never Been To Spain" + }, + { + "artist": "The Emotions", + "position": 82, + "title": "Show Me How" + }, + { + "artist": "Chase", + "position": 83, + "title": "So Many People" + }, + { + "artist": "The Poppy Family", + "position": 84, + "title": "No Good To Cry" + }, + { + "artist": "The Undisputed Truth", + "position": 85, + "title": "You Make Your Own Heaven And Hell Right Here On Earth" + }, + { + "artist": "The Dramatics", + "position": 86, + "title": "Get Up And Get Down" + }, + { + "artist": "Ray Charles", + "position": 87, + "title": "What Am I Living For" + }, + { + "artist": "Alice Cooper", + "position": 88, + "title": "Under My Wheels" + }, + { + "artist": "N.F. Porter", + "position": 89, + "title": "Keep On Keeping On" + }, + { + "artist": "Heaven Bound with Tony Scotti", + "position": 90, + "title": "Five Hundred Miles" + }, + { + "artist": "Johnny Paycheck", + "position": 91, + "title": "She's All I Got" + }, + { + "artist": "The Bar-Kays", + "position": 92, + "title": "Son Of Shaft" + }, + { + "artist": "Jerry Butler & Brenda Lee Eager", + "position": 93, + "title": "Ain't Understanding Mellow" + }, + { + "artist": "The New Colony Six", + "position": 94, + "title": "Long Time To Be Alone" + }, + { + "artist": "Judy Collins", + "position": 95, + "title": "Open The Door (Song For Judith)" + }, + { + "artist": "The Persuaders", + "position": 96, + "title": "Love Gonna Pack Up (And Walk Out)" + }, + { + "artist": "Rufus Thomas", + "position": 97, + "title": "Do The Funky Penguin Part I" + }, + { + "artist": "Edgar Winter's White Trash", + "position": 98, + "title": "Keep Playin' That Rock 'N' Roll" + }, + { + "artist": "Ohio Players", + "position": 99, + "title": "Pain (Part I)" + }, + { + "artist": "The Assembled Multitude", + "position": 100, + "title": "Medley From Superstar (A Rock Opera)" + } + ], + "title": "1971 - Hot 100" + }, + { + "songs": [ + { + "artist": "George Harrison", + "position": 1, + "title": "My Sweet Lord/Isn't It A Pity" + }, + { + "artist": "The 5th Dimension", + "position": 2, + "title": "One Less Bell To Answer" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 3, + "title": "The Tears Of A Clown" + }, + { + "artist": "Dawn", + "position": 4, + "title": "Knock Three Times" + }, + { + "artist": "Santana", + "position": 5, + "title": "Black Magic Woman" + }, + { + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "position": 6, + "title": "I Think I Love You" + }, + { + "artist": "The Supremes", + "position": 7, + "title": "Stoned Love" + }, + { + "artist": "Chicago", + "position": 8, + "title": "Does Anybody Really Know What Time It Is?" + }, + { + "artist": "Brian Hyland", + "position": 9, + "title": "Gypsy Woman" + }, + { + "artist": "Badfinger", + "position": 10, + "title": "No Matter What" + }, + { + "artist": "The Presidents", + "position": 11, + "title": "5-10-15-20 (25-30 Years Of Love)" + }, + { + "artist": "Van Morrison", + "position": 12, + "title": "Domino" + }, + { + "artist": "Barbra Streisand", + "position": 13, + "title": "Stoney End" + }, + { + "artist": "Ray Price", + "position": 14, + "title": "For The Good Times" + }, + { + "artist": "Carpenters", + "position": 15, + "title": "We've Only Just Begun" + }, + { + "artist": "Jackson 5", + "position": 16, + "title": "I'll Be There" + }, + { + "artist": "The Supremes & Four Tops", + "position": 17, + "title": "River Deep - Mountain High" + }, + { + "artist": "King Floyd", + "position": 18, + "title": "Groove Me" + }, + { + "artist": "Perry Como", + "position": 19, + "title": "It's Impossible" + }, + { + "artist": "Neil Diamond", + "position": 20, + "title": "He Ain't Heavy...He's My Brother" + }, + { + "artist": "Andy Kim", + "position": 21, + "title": "Be My Baby" + }, + { + "artist": "Three Dog Night", + "position": 22, + "title": "One Man Band" + }, + { + "artist": "Chairmen Of The Board", + "position": 23, + "title": "Pay To The Piper" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 24, + "title": "If I Were Your Woman" + }, + { + "artist": "Tom Jones", + "position": 25, + "title": "Can't Stop Loving You" + }, + { + "artist": "Bee Gees", + "position": 26, + "title": "Lonely Days" + }, + { + "artist": "Bobby Bloom", + "position": 27, + "title": "Montego Bay" + }, + { + "artist": "Led Zeppelin", + "position": 28, + "title": "Immigrant Song" + }, + { + "artist": "Elton John", + "position": 29, + "title": "Your Song" + }, + { + "artist": "The Guess Who", + "position": 30, + "title": "Share The Land" + }, + { + "artist": "Stephen Stills", + "position": 31, + "title": "Love The One You're With" + }, + { + "artist": "Elvis Presley", + "position": 32, + "title": "You Don't Have To Say You Love Me/Patch It Up" + }, + { + "artist": "Lynn Anderson", + "position": 33, + "title": "Rose Garden" + }, + { + "artist": "The Flaming Ember", + "position": 34, + "title": "I'm Not My Brothers Keeper" + }, + { + "artist": "James Taylor", + "position": 35, + "title": "Fire And Rain" + }, + { + "artist": "Neil Diamond", + "position": 36, + "title": "Do It" + }, + { + "artist": "Aretha Franklin", + "position": 37, + "title": "Border Song (Holy Moses)/You And Me" + }, + { + "artist": "Eric Clapton", + "position": 38, + "title": "After Midnight" + }, + { + "artist": "Redeye", + "position": 39, + "title": "Games" + }, + { + "artist": "Runt", + "position": 40, + "title": "We Gotta Get You A Woman" + }, + { + "artist": "Stevie Wonder", + "position": 41, + "title": "Heaven Help Us All" + }, + { + "artist": "Ray Charles", + "position": 42, + "title": "If You Were Mine" + }, + { + "artist": "Neil Young", + "position": 43, + "title": "Only Love Can Break Your Heart" + }, + { + "artist": "Nitty Gritty Dirt Band", + "position": 44, + "title": "Mr. Bojangles" + }, + { + "artist": "Michael Nesmith & The First National Band", + "position": 45, + "title": "Silver Moon" + }, + { + "artist": "Dionne Warwick", + "position": 46, + "title": "The Green Grass Starts To Grow" + }, + { + "artist": "Jim Ed Brown", + "position": 47, + "title": "Morning" + }, + { + "artist": "Curtis Mayfield", + "position": 48, + "title": "(Don't Worry) If There's A Hell Below We're All Going To Go" + }, + { + "artist": "B.J. Thomas", + "position": 49, + "title": "Most Of All" + }, + { + "artist": "Edwin Starr", + "position": 50, + "title": "Stop The War Now" + }, + { + "artist": "Free", + "position": 51, + "title": "Stealer" + }, + { + "artist": "Jerry Reed", + "position": 52, + "title": "Amos Moses" + }, + { + "artist": "Rare Earth", + "position": 53, + "title": "Born To Wander" + }, + { + "artist": "O.V. Wright", + "position": 54, + "title": "Ace Of Spade" + }, + { + "artist": "Clarence Carter", + "position": 55, + "title": "It's All In Your Mind" + }, + { + "artist": "Elvis Presley", + "position": 56, + "title": "I Really Don't Want To Know/There Goes My Everything" + }, + { + "artist": "Melanie", + "position": 57, + "title": "Ruby Tuesday" + }, + { + "artist": "Judy Collins", + "position": 58, + "title": "Amazing Grace" + }, + { + "artist": "The Moments", + "position": 59, + "title": "All I Have" + }, + { + "artist": "Johnny Cash", + "position": 60, + "title": "Flesh And Blood" + }, + { + "artist": "Black Sabbath", + "position": 61, + "title": "Paranoid" + }, + { + "artist": "Little Sister", + "position": 62, + "title": "Somebody's Watching You" + }, + { + "artist": "Jackie Moore", + "position": 63, + "title": "Precious, Precious" + }, + { + "artist": "Al Green", + "position": 64, + "title": "I Can't Get Next To You" + }, + { + "artist": "Israel Popper Stopper Tolbert", + "position": 65, + "title": "Big Leg Woman (With A Short Short Mini Skirt)" + }, + { + "artist": "Deep Purple", + "position": 66, + "title": "Black Night" + }, + { + "artist": "James Taylor", + "position": 67, + "title": "Carolina In My Mind" + }, + { + "artist": "The Grass Roots", + "position": 68, + "title": "Temptation Eyes" + }, + { + "artist": "Eric Burdon And War", + "position": 69, + "title": "They Can't Take Away Our Music" + }, + { + "artist": "Tommy James", + "position": 70, + "title": "Church Street Soul Revival" + }, + { + "artist": "Gypsy", + "position": 71, + "title": "Gypsy Queen - Part 1" + }, + { + "artist": "Grand Funk Railroad", + "position": 72, + "title": "Mean Mistreater" + }, + { + "artist": "Frijid Pink", + "position": 73, + "title": "Heartbreak Hotel" + }, + { + "artist": "Diana Ross", + "position": 74, + "title": "Remember Me" + }, + { + "artist": "Robert John", + "position": 75, + "title": "When The Party Is Over" + }, + { + "artist": "Gordon Lightfoot", + "position": 76, + "title": "If You Could Read My Mind" + }, + { + "artist": "Ray Stevens", + "position": 77, + "title": "Bridget The Midget (The Queen Of The Blues)" + }, + { + "artist": "Liz Damon's Orient Express", + "position": 78, + "title": "1900 Yesterday" + }, + { + "artist": "Bobby Goldsboro", + "position": 79, + "title": "Watching Scotty Grow" + }, + { + "artist": "Redbone", + "position": 80, + "title": "Maggie" + }, + { + "artist": "Joe Simon", + "position": 81, + "title": "Your Time To Cry" + }, + { + "artist": "The Chi-lites", + "position": 82, + "title": "Are You My Woman? (Tell Me So)" + }, + { + "artist": "Loretta Lynn", + "position": 83, + "title": "Coal Miner's Daughter" + }, + { + "artist": "Teegarden & Van Winkle", + "position": 84, + "title": "Everything Is Going To Be Alright" + }, + { + "artist": "Anne Murray", + "position": 85, + "title": "Sing High - Sing Low" + }, + { + "artist": "The Originals", + "position": 86, + "title": "God Bless Whoever Sent You" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 87, + "title": "Holly Holy" + }, + { + "artist": "Rufus Thomas", + "position": 88, + "title": "(Do The) Push And Pull Part I" + }, + { + "artist": "Five Flights Up", + "position": 89, + "title": "After The Feeling Is Gone" + }, + { + "artist": "Dave Edmunds", + "position": 90, + "title": "I Hear You Knocking" + }, + { + "artist": "Buddy Miles", + "position": 91, + "title": "We Got To Live Together - Part I" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 92, + "title": "Help Me Find A Way (To Say I Love You)" + }, + { + "artist": "The Mike Curb Congregation", + "position": 93, + "title": "Burning Bridges" + }, + { + "artist": "The Sandpipers", + "position": 94, + "title": "Free To Carry On" + }, + { + "artist": "The Main Ingredient", + "position": 95, + "title": "I'm So Proud" + }, + { + "artist": "Brook Benton With The Dixie Flyers", + "position": 96, + "title": "Shoes" + }, + { + "artist": "Jackie Wilson", + "position": 97, + "title": "(I Can Feel Those Vibrations) This Love Is Real" + }, + { + "artist": "Wadsworth Mansion", + "position": 98, + "title": "Sweet Mary" + }, + { + "artist": "The Jazz Crusaders", + "position": 99, + "title": "Way Back Home" + }, + { + "artist": "Betty Everett", + "position": 100, + "title": "I Got To Tell Somebody" + } + ], + "title": "1970 - Hot 100" + }, + { + "songs": [ + { + "artist": "Diana Ross & The Supremes", + "position": 1, + "title": "Someday We'll Be Together" + }, + { + "artist": "Peter, Paul & Mary", + "position": 2, + "title": "Leaving On A Jet Plane" + }, + { + "artist": "B.J. Thomas", + "position": 3, + "title": "Raindrops Keep Fallin' On My Head" + }, + { + "artist": "Creedence Clearwater Revival", + "position": 4, + "title": "Down On The Corner/Fortunate Son" + }, + { + "artist": "Steam", + "position": 5, + "title": "Na Na Hey Hey Kiss Him Goodbye" + }, + { + "artist": "Neil Diamond", + "position": 6, + "title": "Holly Holy" + }, + { + "artist": "The Beatles", + "position": 7, + "title": "Come Together/Something" + }, + { + "artist": "Jackson 5", + "position": 8, + "title": "I Want You Back" + }, + { + "artist": "Led Zeppelin", + "position": 9, + "title": "Whole Lotta Love" + }, + { + "artist": "R.B. Greaves", + "position": 10, + "title": "Take A Letter Maria" + }, + { + "artist": "Ferrante & Teicher", + "position": 11, + "title": "Midnight Cowboy" + }, + { + "artist": "Three Dog Night", + "position": 12, + "title": "Eli's Coming" + }, + { + "artist": "Stevie Wonder", + "position": 13, + "title": "Yester-Me, Yester-You, Yesterday" + }, + { + "artist": "Bobby Sherman", + "position": 14, + "title": "La La La (If I Had You)" + }, + { + "artist": "Blood, Sweat & Tears", + "position": 15, + "title": "And When I Die" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 16, + "title": "These Eyes" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 17, + "title": "Friendship Train" + }, + { + "artist": "Mel And Tim", + "position": 18, + "title": "Backfield In Motion" + }, + { + "artist": "The Shocking Blue", + "position": 19, + "title": "Venus" + }, + { + "artist": "Tommy Roe", + "position": 20, + "title": "Jam Up Jelly Tight" + }, + { + "artist": "Billy Joe Royal", + "position": 21, + "title": "Cherry Hill Park" + }, + { + "artist": "The Archies", + "position": 22, + "title": "Jingle Jangle" + }, + { + "artist": "Elvis Presley", + "position": 23, + "title": "Don't Cry Daddy/Rubberneckin'" + }, + { + "artist": "The Flying Machine", + "position": 24, + "title": "Smile A Little Smile For Me" + }, + { + "artist": "The Originals", + "position": 25, + "title": "Baby, I'm For Real" + }, + { + "artist": "The Band", + "position": 26, + "title": "Up On Cripple Creek" + }, + { + "artist": "Dusty Springfield", + "position": 27, + "title": "A Brand New Me" + }, + { + "artist": "CROW", + "position": 28, + "title": "Evil Woman Don't Play Your Games With Me" + }, + { + "artist": "The 5th Dimension", + "position": 29, + "title": "Wedding Bell Blues" + }, + { + "artist": "Vanity Fare", + "position": 30, + "title": "Early In The Morning" + }, + { + "artist": "The Grass Roots", + "position": 31, + "title": "Heaven Knows" + }, + { + "artist": "Aretha Franklin", + "position": 32, + "title": "Eleanor Rigby" + }, + { + "artist": "Plastic Ono Band", + "position": 33, + "title": "Cold Turkey" + }, + { + "artist": "Tommy James And The Shondells", + "position": 34, + "title": "She" + }, + { + "artist": "Oliver", + "position": 35, + "title": "Sunday Mornin'" + }, + { + "artist": "James Brown", + "position": 36, + "title": "Ain't It Funky Now (Part 1)" + }, + { + "artist": "The Friends Of Distinction", + "position": 37, + "title": "Going In Circles" + }, + { + "artist": "Harlow Wilcox and the Oakies", + "position": 38, + "title": "Groovy Grubworm" + }, + { + "artist": "Jimmy Cliff", + "position": 39, + "title": "Wonderful World, Beautiful People" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 40, + "title": "Point It Out" + }, + { + "artist": "Engelbert Humperdinck", + "position": 41, + "title": "Winter World Of Love" + }, + { + "artist": "Merle Haggard And The Strangers", + "position": 42, + "title": "Okie From Muskogee" + }, + { + "artist": "Johnny Nash", + "position": 43, + "title": "Cupid" + }, + { + "artist": "Jerry Butler", + "position": 44, + "title": "Don't Let Love Hang You Up" + }, + { + "artist": "Four Tops", + "position": 45, + "title": "Don't Let Him Take Your Love From Me" + }, + { + "artist": "The Flaming Ember", + "position": 46, + "title": "Mind, Body and Soul" + }, + { + "artist": "Mark Lindsay", + "position": 47, + "title": "Arizona" + }, + { + "artist": "Janis Joplin", + "position": 48, + "title": "Kozmic Blues" + }, + { + "artist": "Marvin Gaye & Tammi Terrell", + "position": 49, + "title": "What You Gave Me" + }, + { + "artist": "Tom Jones", + "position": 50, + "title": "Without Love (There Is Nothing)" + }, + { + "artist": "Dionne Warwick", + "position": 51, + "title": "I'll Never Fall In Love Again" + }, + { + "artist": "Nancy Wilson", + "position": 52, + "title": "Can't Take My Eyes Off You" + }, + { + "artist": "Bobbie Gentry", + "position": 53, + "title": "Fancy" + }, + { + "artist": "Jay & The Americans", + "position": 54, + "title": "Walkin' In The Rain" + }, + { + "artist": "Wilbert Harrison", + "position": 55, + "title": "Let's Work Together (Part 1)" + }, + { + "artist": "Rick Nelson", + "position": 56, + "title": "She Belongs To Me" + }, + { + "artist": "The Clique", + "position": 57, + "title": "I'll Hold Out My Hand" + }, + { + "artist": "Joe Cocker", + "position": 58, + "title": "She Came In Through The Bathroom Window" + }, + { + "artist": "Gloria Taylor", + "position": 59, + "title": "You Got To Pay The Price" + }, + { + "artist": "Johnny Cash", + "position": 60, + "title": "Blistered/See Ruby Fall" + }, + { + "artist": "Dennis Yost And The Classics IV", + "position": 61, + "title": "Midnight" + }, + { + "artist": "The Original Caste", + "position": 62, + "title": "One Tin Soldier" + }, + { + "artist": "The Cuff Links", + "position": 63, + "title": "When Julie Comes Around" + }, + { + "artist": "Jefferson", + "position": 64, + "title": "Baby Take Me In Your Arms" + }, + { + "artist": "Jefferson Airplane", + "position": 65, + "title": "Volunteers" + }, + { + "artist": "James Brown", + "position": 66, + "title": "Let A Man Come In And Do The Popcorn (Part Two)" + }, + { + "artist": "David Ruffin", + "position": 67, + "title": "I'm So Glad I Fell For You" + }, + { + "artist": "The Tokens", + "position": 68, + "title": "She Lets Her Hair Down (Early In The Morning)" + }, + { + "artist": "Judy Collins", + "position": 69, + "title": "Turn! Turn! Turn!/To Everything There Is A Season" + }, + { + "artist": "The Guess Who", + "position": 70, + "title": "No Time" + }, + { + "artist": "Steppenwolf", + "position": 71, + "title": "Monster" + }, + { + "artist": "Eydie Gorme", + "position": 72, + "title": "Tonight I'll Say A Prayer" + }, + { + "artist": "Eddie Holman", + "position": 73, + "title": "Hey There Lonely Girl" + }, + { + "artist": "Savoy Brown", + "position": 74, + "title": "I'm Tired" + }, + { + "artist": "The Lettermen", + "position": 75, + "title": "Traces/Memories Medley" + }, + { + "artist": "Otis Leavill", + "position": 76, + "title": "I Love You" + }, + { + "artist": "Johnnie Taylor", + "position": 77, + "title": "Love Bones" + }, + { + "artist": "The Turtles", + "position": 78, + "title": "Lady-O" + }, + { + "artist": "Syl Johnson", + "position": 79, + "title": "Is It Because I'm Black" + }, + { + "artist": "The Meters", + "position": 80, + "title": "Look-Ka Py Py" + }, + { + "artist": "Lou Christie", + "position": 81, + "title": "Are You Getting Any Sunshine?" + }, + { + "artist": "The Illusion", + "position": 82, + "title": "Together" + }, + { + "artist": "Tommy Cash", + "position": 83, + "title": "Six White Horses" + }, + { + "artist": "The Sandpipers", + "position": 84, + "title": "Come Saturday Morning" + }, + { + "artist": "Nina Simone", + "position": 85, + "title": "To Be Young, Gifted And Black" + }, + { + "artist": "Ike & Tina Turner", + "position": 86, + "title": "Bold Soul Sister" + }, + { + "artist": "The Newbeats", + "position": 87, + "title": "Groovin' (Out On Life)" + }, + { + "artist": "Lulu", + "position": 88, + "title": "Oh Me Oh My (I'm A Fool For You Baby)" + }, + { + "artist": "The Intrigues", + "position": 89, + "title": "I'm Gonna Love You" + }, + { + "artist": "Simon Stokes/Nighthawks", + "position": 90, + "title": "Voodoo Woman" + }, + { + "artist": "Al Martino", + "position": 91, + "title": "I Started Loving You Again" + }, + { + "artist": "Archie Bell & The Drells", + "position": 92, + "title": "A World Without Music" + }, + { + "artist": "The Hollies", + "position": 93, + "title": "He Ain't Heavy, He's My Brother" + }, + { + "artist": "100 Proof Aged in Soul", + "position": 94, + "title": "Too Many Cooks (Spoil The Soup)" + }, + { + "artist": "Brother Jack McDuff", + "position": 95, + "title": "Theme From Electric Surfboard" + }, + { + "artist": "Betty Everett", + "position": 96, + "title": "It's Been A Long Time" + }, + { + "artist": "Grand Funk Railroad", + "position": 97, + "title": "Mr. Limousine Driver" + }, + { + "artist": "Kool & The Gang", + "position": 98, + "title": "The Gangs Back Again" + }, + { + "artist": "Ruby Winters", + "position": 99, + "title": "Guess Who" + }, + { + "artist": "B.B. King", + "position": 100, + "title": "The Thrill Is Gone" + } + ], + "title": "1969 - Hot 100" + }, + { + "songs": [ + { + "artist": "Marvin Gaye", + "position": 1, + "title": "I Heard It Through The Grapevine" + }, + { + "artist": "Stevie Wonder", + "position": 2, + "title": "For Once In My Life" + }, + { + "artist": "Diana Ross & The Supremes", + "position": 3, + "title": "Love Child" + }, + { + "artist": "Glen Campbell", + "position": 4, + "title": "Wichita Lineman" + }, + { + "artist": "Classics IV Featuring Dennis Yost", + "position": 5, + "title": "Stormy" + }, + { + "artist": "Dion", + "position": 6, + "title": "Abraham, Martin And John" + }, + { + "artist": "Diana Ross And The Supremes & The Temptations", + "position": 7, + "title": "I'm Gonna Make You Love Me" + }, + { + "artist": "Johnnie Taylor", + "position": 8, + "title": "Who's Making Love" + }, + { + "artist": "Bobby Vinton", + "position": 9, + "title": "I Love How You Love Me" + }, + { + "artist": "The Temptations", + "position": 10, + "title": "Cloud Nine" + }, + { + "artist": "Judy Collins", + "position": 11, + "title": "Both Sides Now" + }, + { + "artist": "Derek", + "position": 12, + "title": "Cinnamon" + }, + { + "artist": "B.J. Thomas", + "position": 13, + "title": "Hooked On A Feeling" + }, + { + "artist": "Aretha Franklin", + "position": 14, + "title": "See Saw" + }, + { + "artist": "The Beatles", + "position": 15, + "title": "Hey Jude" + }, + { + "artist": "Young-Holt Unlimited", + "position": 16, + "title": "Soulful Strut" + }, + { + "artist": "Eddie Floyd", + "position": 17, + "title": "Bring It On Home To Me" + }, + { + "artist": "Steppenwolf", + "position": 18, + "title": "Magic Carpet Ride" + }, + { + "artist": "Ohio Express", + "position": 19, + "title": "Chewy Chewy" + }, + { + "artist": "Canned Heat", + "position": 20, + "title": "Going Up The Country" + }, + { + "artist": "Dusty Springfield", + "position": 21, + "title": "Son-Of-A Preacher Man" + }, + { + "artist": "Leapy Lee", + "position": 22, + "title": "Little Arrows" + }, + { + "artist": "Clarence Carter", + "position": 23, + "title": "Too Weak To Fight" + }, + { + "artist": "Otis Redding", + "position": 24, + "title": "Papa's Got A Brand New Bag" + }, + { + "artist": "Mary Hopkin", + "position": 25, + "title": "Those Were The Days" + }, + { + "artist": "Rene & Rene", + "position": 26, + "title": "Lo Mucho Que Te Quiero (The More I Love You)" + }, + { + "artist": "Sergio Mendes & Brasil '66", + "position": 27, + "title": "Scarborough Fair" + }, + { + "artist": "Tommy James And The Shondells", + "position": 28, + "title": "Crimson And Clover" + }, + { + "artist": "Magic Lanterns", + "position": 29, + "title": "Shame, Shame" + }, + { + "artist": "Elvis Presley", + "position": 30, + "title": "If I Can Dream" + }, + { + "artist": "The Vogues", + "position": 31, + "title": "Till" + }, + { + "artist": "The Rascals", + "position": 32, + "title": "A Ray Of Hope" + }, + { + "artist": "Andy Williams with the St. Charles Borromeo Choir", + "position": 33, + "title": "Battle Hymn Of The Republic" + }, + { + "artist": "Tammy Wynette", + "position": 34, + "title": "Stand By Your Man" + }, + { + "artist": "Dionne Warwick", + "position": 35, + "title": "Promises, Promises" + }, + { + "artist": "Aretha Franklin", + "position": 36, + "title": "My Song" + }, + { + "artist": "The Chambers Brothers", + "position": 37, + "title": "I Can't Turn You Loose" + }, + { + "artist": "The Impressions", + "position": 38, + "title": "This Is My Country" + }, + { + "artist": "The Tymes", + "position": 39, + "title": "People" + }, + { + "artist": "Booker T. & The MG's", + "position": 40, + "title": "Hang 'Em High" + }, + { + "artist": "Bee Gees", + "position": 41, + "title": "I Started A Joke" + }, + { + "artist": "Sly & The Family Stone", + "position": 42, + "title": "Everyday People" + }, + { + "artist": "Wilson Pickett", + "position": 43, + "title": "Hey Jude" + }, + { + "artist": "The Lettermen", + "position": 44, + "title": "Put Your Head On My Shoulder" + }, + { + "artist": "Deep Purple", + "position": 45, + "title": "Kentucky Woman" + }, + { + "artist": "The Grass Roots", + "position": 46, + "title": "Bella Linda" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 47, + "title": "My Favorite Things" + }, + { + "artist": "The Royal Guardsmen", + "position": 48, + "title": "Baby Let's Wait" + }, + { + "artist": "Archie Bell & The Drells", + "position": 49, + "title": "There's Gonna Be A Showdown" + }, + { + "artist": "The Delfonics", + "position": 50, + "title": "Ready Or Not Here I Come (Can't Hide From Love)" + }, + { + "artist": "Bobby Taylor & The Vancouvers", + "position": 51, + "title": "Malinda" + }, + { + "artist": "Dean Martin", + "position": 52, + "title": "Not Enough Indians" + }, + { + "artist": "Brooklyn Bridge", + "position": 53, + "title": "Worst That Could Happen" + }, + { + "artist": "Autry Inman", + "position": 54, + "title": "Ballad Of Two Brothers" + }, + { + "artist": "Jeannie C. Riley", + "position": 55, + "title": "The Girl Most Likely" + }, + { + "artist": "The Jimi Hendrix Experience", + "position": 56, + "title": "Crosstown Traffic" + }, + { + "artist": "Jerry Butler", + "position": 57, + "title": "Are You Happy" + }, + { + "artist": "Creedence Clearwater Revival", + "position": 58, + "title": "I Put A Spell On You" + }, + { + "artist": "Petula Clark", + "position": 59, + "title": "American Boys" + }, + { + "artist": "Bobby Bland", + "position": 60, + "title": "Rockin' In The Same Old Boat" + }, + { + "artist": "The Beach Boys", + "position": 61, + "title": "Bluebirds Over The Mountain" + }, + { + "artist": "The 5th Dimension", + "position": 62, + "title": "California Soul" + }, + { + "artist": "O.C. Smith", + "position": 63, + "title": "Isn't It Lonely Together" + }, + { + "artist": "Johnny Cash", + "position": 64, + "title": "Daddy Sang Bass" + }, + { + "artist": "Vanilla Fudge", + "position": 65, + "title": "Season Of The Witch, Pt. 1" + }, + { + "artist": "Tyrone Davis", + "position": 66, + "title": "Can I Change My Mind" + }, + { + "artist": "Eric Burdon & The Animals", + "position": 67, + "title": "White Houses" + }, + { + "artist": "Barbara Acklin", + "position": 68, + "title": "Just Ain't No Love" + }, + { + "artist": "Bobby Womack", + "position": 69, + "title": "California Dreamin'" + }, + { + "artist": "Sam & Dave", + "position": 70, + "title": "Soul Sister, Brown Sugar" + }, + { + "artist": "The Unifics", + "position": 71, + "title": "The Beginning Of My End" + }, + { + "artist": "The Doors", + "position": 72, + "title": "Touch Me" + }, + { + "artist": "Tom Jones", + "position": 73, + "title": "A Minute Of Your Time" + }, + { + "artist": "Sammy Davis Jr.", + "position": 74, + "title": "I've Gotta Be Me" + }, + { + "artist": "Bob Seger System", + "position": 75, + "title": "Ramblin' Gamblin' Man" + }, + { + "artist": "The O'Kaysions", + "position": 76, + "title": "Love Machine" + }, + { + "artist": "Nancy Sinatra", + "position": 77, + "title": "Good Time Girl" + }, + { + "artist": "Paul Mauriat", + "position": 78, + "title": "Chitty Chitty Bang Bang" + }, + { + "artist": "Merrilee Rush", + "position": 79, + "title": "Reach Out" + }, + { + "artist": "Roger Miller", + "position": 80, + "title": "Vance" + }, + { + "artist": "Johnny Nash", + "position": 81, + "title": "You Got Soul" + }, + { + "artist": "Johnny Adams", + "position": 82, + "title": "Release Me" + }, + { + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "position": 83, + "title": "Electric Stories" + }, + { + "artist": "Andy Kim", + "position": 84, + "title": "Rainbow Ride" + }, + { + "artist": "The Moments", + "position": 85, + "title": "Not On The Outside" + }, + { + "artist": "James Brown", + "position": 86, + "title": "Tit For Tat (Ain't No Taking Back)" + }, + { + "artist": "John Wesley Ryles, I", + "position": 87, + "title": "Kay" + }, + { + "artist": "The Archies", + "position": 88, + "title": "Feelin' So Good (S.k.o.o.b.y-D.o.o)" + }, + { + "artist": "The Box Tops", + "position": 89, + "title": "Sweet Cream Ladies, Forward March" + }, + { + "artist": "Jay & The Americans", + "position": 90, + "title": "This Magic Moment" + }, + { + "artist": "Five Stairsteps & Cubie", + "position": 91, + "title": "Stay Close To Me" + }, + { + "artist": "Barry Ryan", + "position": 92, + "title": "Eloise" + }, + { + "artist": "The Esquires", + "position": 93, + "title": "You've Got The Power" + }, + { + "artist": "The Dells", + "position": 94, + "title": "Does Anybody Know I'm Here" + }, + { + "artist": "The Crystal Mansion", + "position": 95, + "title": "The Thought Of Loving You" + }, + { + "artist": "Chambers Brothers", + "position": 96, + "title": "Shout! - Part 1" + }, + { + "artist": "The Goodees", + "position": 97, + "title": "Condition Red" + }, + { + "artist": "Bobby Vee", + "position": 98, + "title": "I'm Into Lookin' For Someone To Love Me" + }, + { + "artist": "Al Martino", + "position": 99, + "title": "I Can't Help It (If I'm Still In Love With You)" + }, + { + "artist": "New Colony Six", + "position": 100, + "title": "Things I'd Like To Say" + } + ], + "title": "1968 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Beatles", + "position": 1, + "title": "Hello Goodbye" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 2, + "title": "I Heard It Through The Grapevine" + }, + { + "artist": "The Monkees", + "position": 3, + "title": "Daydream Believer" + }, + { + "artist": "Smokey Robinson & The Miracles", + "position": 4, + "title": "I Second That Emotion" + }, + { + "artist": "The Union Gap Featuring Gary Puckett", + "position": 5, + "title": "Woman, Woman" + }, + { + "artist": "John Fred And The Playboys", + "position": 6, + "title": "Judy In Disguise (With Glasses)" + }, + { + "artist": "Aretha Franklin", + "position": 7, + "title": "Chain Of Fools" + }, + { + "artist": "The American Breed", + "position": 8, + "title": "Bend Me, Shape Me" + }, + { + "artist": "The Fantastic Johnny C", + "position": 9, + "title": "Boogaloo Down Broadway" + }, + { + "artist": "Joe Tex", + "position": 10, + "title": "Skinny Legs And All" + }, + { + "artist": "Martha Reeves & The Vandellas", + "position": 11, + "title": "Honey Chile" + }, + { + "artist": "Cher", + "position": 12, + "title": "You Better Sit Down Kids" + }, + { + "artist": "Strawberry Alarm Clock", + "position": 13, + "title": "Incense And Peppermints" + }, + { + "artist": "The Cowsills", + "position": 14, + "title": "The Rain, The Park & Other Things" + }, + { + "artist": "Johnny Rivers", + "position": 15, + "title": "Summer Rain" + }, + { + "artist": "Dionne Warwick", + "position": 16, + "title": "I Say A Little Prayer" + }, + { + "artist": "The Rose Garden", + "position": 17, + "title": "Next Plane To London" + }, + { + "artist": "Marvin Gaye & Tammi Terrell", + "position": 18, + "title": "If I Could Build My Whole World Around You" + }, + { + "artist": "Stone Poneys Featuring Linda Ronstadt", + "position": 19, + "title": "Different Drum" + }, + { + "artist": "The Turtles", + "position": 20, + "title": "She's My Girl" + }, + { + "artist": "Diana Ross & The Supremes", + "position": 21, + "title": "In And Out Of Love" + }, + { + "artist": "The Esquires", + "position": 22, + "title": "And Get Away" + }, + { + "artist": "Donovan", + "position": 23, + "title": "Wear Your Love Like Heaven" + }, + { + "artist": "The Box Tops", + "position": 24, + "title": "Neon Rainbow" + }, + { + "artist": "The Lemon Pipers", + "position": 25, + "title": "Green Tambourine" + }, + { + "artist": "The Young Rascals", + "position": 26, + "title": "It's Wonderful" + }, + { + "artist": "Bee Gees", + "position": 27, + "title": "(The Lights Went Out In) Massachusetts" + }, + { + "artist": "Jay And The Techniques", + "position": 28, + "title": "Keep The Ball Rollin'" + }, + { + "artist": "The Buckinghams", + "position": 29, + "title": "Susan" + }, + { + "artist": "Jr. Walker & The All Stars", + "position": 30, + "title": "Come See About Me" + }, + { + "artist": "Petula Clark", + "position": 31, + "title": "The Other Man's Grass Is Always Greener" + }, + { + "artist": "Eric Burdon & The Animals", + "position": 32, + "title": "Monterey" + }, + { + "artist": "Glen Campbell", + "position": 33, + "title": "By The Time I Get To Phoenix" + }, + { + "artist": "Brenton Wood", + "position": 34, + "title": "Baby You Got It" + }, + { + "artist": "Peter, Paul & Mary", + "position": 35, + "title": "Too Much Of Nothing" + }, + { + "artist": "Ed Ames", + "position": 36, + "title": "Who Will Answer?" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 37, + "title": "I Can't Stand Myself (When You Touch Me)" + }, + { + "artist": "The Doors", + "position": 38, + "title": "Love Me Two Times" + }, + { + "artist": "Lulu", + "position": 39, + "title": "To Sir With Love" + }, + { + "artist": "Etta James", + "position": 40, + "title": "Tell Mama" + }, + { + "artist": "Jackie Wilson", + "position": 41, + "title": "Since You Showed Me How To Be Happy" + }, + { + "artist": "The Sandpebbles", + "position": 42, + "title": "Love Power" + }, + { + "artist": "Percy Sledge", + "position": 43, + "title": "Cover Me" + }, + { + "artist": "Wes Montgomery", + "position": 44, + "title": "Windy" + }, + { + "artist": "Wilson Pickett", + "position": 45, + "title": "I'm In Love" + }, + { + "artist": "Dean Martin", + "position": 46, + "title": "In The Misty Moonlight" + }, + { + "artist": "Lulu", + "position": 47, + "title": "Best Of Both Worlds" + }, + { + "artist": "The Lettermen", + "position": 48, + "title": "Goin' Out Of My Head/Can't Take My Eyes Off You" + }, + { + "artist": "Dusty Springfield", + "position": 49, + "title": "What's It Gonna Be" + }, + { + "artist": "The Hollies", + "position": 50, + "title": "Dear Eloise" + }, + { + "artist": "The Marvelettes", + "position": 51, + "title": "My Baby Must Be A Magician" + }, + { + "artist": "The Mamas & The Papas", + "position": 52, + "title": "Dancing Bear" + }, + { + "artist": "Small Faces", + "position": 53, + "title": "Itchycoo Park" + }, + { + "artist": "Engelbert Humperdinck", + "position": 54, + "title": "Am I That Easy To Forget" + }, + { + "artist": "Kenny O'Dell", + "position": 55, + "title": "Beautiful People" + }, + { + "artist": "Peaches & Herb", + "position": 56, + "title": "Two Little Kids" + }, + { + "artist": "Bobby Vee And The Strangers", + "position": 57, + "title": "Beautiful People" + }, + { + "artist": "Billy Vera & Judy Clay", + "position": 58, + "title": "Storybook Children" + }, + { + "artist": "Sonny & Cher", + "position": 59, + "title": "Good Combination" + }, + { + "artist": "The Dave Clark Five", + "position": 60, + "title": "Everybody Knows" + }, + { + "artist": "Jefferson Airplane", + "position": 61, + "title": "Watch Her Ride" + }, + { + "artist": "The Human Beinz", + "position": 62, + "title": "Nobody But Me" + }, + { + "artist": "The Beach Boys", + "position": 63, + "title": "Darlin'" + }, + { + "artist": "Soul Survivors", + "position": 64, + "title": "Explosion (In Your Soul)" + }, + { + "artist": "The Dells", + "position": 65, + "title": "O-O, I Love You" + }, + { + "artist": "The Foundations", + "position": 66, + "title": "Baby, Now That I've Found You" + }, + { + "artist": "The O'Jays", + "position": 67, + "title": "I'll Be Sweeter Tomorrow (Than I Was Today)" + }, + { + "artist": "Henson Cargill", + "position": 68, + "title": "Skip A Rope" + }, + { + "artist": "Vikki Carr", + "position": 69, + "title": "The Lesson" + }, + { + "artist": "Classics IV", + "position": 70, + "title": "Spooky" + }, + { + "artist": "Bill Cosby", + "position": 71, + "title": "Hooray For The Salvation Army Band" + }, + { + "artist": "Tommy Boyce & Bobby Hart", + "position": 72, + "title": "I Wonder What She's Doing Tonite" + }, + { + "artist": "Al Greene & The Soul Mate's", + "position": 73, + "title": "Back Up Train" + }, + { + "artist": "Hugh Masekela", + "position": 74, + "title": "Up-Up And Away" + }, + { + "artist": "The Beatles", + "position": 75, + "title": "I Am The Walrus" + }, + { + "artist": "Harpers Bizarre", + "position": 76, + "title": "Chattanooga Choo Choo" + }, + { + "artist": "The Rolling Stones", + "position": 77, + "title": "She's A Rainbow" + }, + { + "artist": "Frankie Valli", + "position": 78, + "title": "To Give (The Reason I Live)" + }, + { + "artist": "Jimi Hendrix", + "position": 79, + "title": "Foxey Lady" + }, + { + "artist": "Strawberry Alarm Clock", + "position": 80, + "title": "Tomorrow" + }, + { + "artist": "Tom Jones", + "position": 81, + "title": "I'm Coming Home" + }, + { + "artist": "Carla Thomas", + "position": 82, + "title": "Pick Up The Pieces" + }, + { + "artist": "Bobby Vinton", + "position": 83, + "title": "Just As Much As Ever" + }, + { + "artist": "Jerry Butler", + "position": 84, + "title": "Lost" + }, + { + "artist": "Al Martino", + "position": 85, + "title": "A Voice In The Choir" + }, + { + "artist": "King Curtis & The Kingpins", + "position": 86, + "title": "I Was Made To Love Her" + }, + { + "artist": "Ronnie Dove", + "position": 87, + "title": "Dancin' Out Of My Heart" + }, + { + "artist": "Bill Wyman", + "position": 88, + "title": "In Another Land" + }, + { + "artist": "5 Stairsteps and Cubie", + "position": 89, + "title": "Something's Missing" + }, + { + "artist": "Bruce Channel", + "position": 90, + "title": "Mr. Bus Driver" + }, + { + "artist": "Billy Stewart", + "position": 91, + "title": "Cross My Heart" + }, + { + "artist": "The Music Makers", + "position": 92, + "title": "United (Part 1)" + }, + { + "artist": "Leon Haywood", + "position": 93, + "title": "Mellow Moonlight" + }, + { + "artist": "Aretha Franklin", + "position": 94, + "title": "Mockingbird" + }, + { + "artist": "Barbara Mason", + "position": 95, + "title": "Oh, How It Hurts" + }, + { + "artist": "The Epic Splendor", + "position": 96, + "title": "A Little Rain Must Fall" + }, + { + "artist": "The Manhattans", + "position": 97, + "title": "I Call It Love" + }, + { + "artist": "Laura Lee", + "position": 98, + "title": "Up Tight, Good Man" + }, + { + "artist": "The Impressions", + "position": 99, + "title": "We're A Winner" + }, + { + "artist": "The Fireballs", + "position": 100, + "title": "Bottle Of Wine" + } + ], + "title": "1967 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Monkees", + "position": 1, + "title": "I'm A Believer" + }, + { + "artist": "The Royal Guardsmen", + "position": 2, + "title": "Snoopy Vs. The Red Baron" + }, + { + "artist": "The New Vaudeville Band", + "position": 3, + "title": "Winchester Cathedral" + }, + { + "artist": "Frank Sinatra", + "position": 4, + "title": "That's Life" + }, + { + "artist": "Nancy Sinatra", + "position": 5, + "title": "Sugar Town" + }, + { + "artist": "Donovan", + "position": 6, + "title": "Mellow Yellow" + }, + { + "artist": "Aaron Neville", + "position": 7, + "title": "Tell It Like It Is" + }, + { + "artist": "The Temptations", + "position": 8, + "title": "(I Know) I'm Losing You" + }, + { + "artist": "Stevie Wonder", + "position": 9, + "title": "A Place In The Sun" + }, + { + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "position": 10, + "title": "Good Thing" + }, + { + "artist": "Mitch Ryder And The Detroit Wheels", + "position": 11, + "title": "Devil With A Blue Dress On & Good Golly Miss Molly" + }, + { + "artist": "Sandy Posey", + "position": 12, + "title": "Single Girl" + }, + { + "artist": "The Beach Boys", + "position": 13, + "title": "Good Vibrations" + }, + { + "artist": "The Supremes", + "position": 14, + "title": "You Keep Me Hangin' On" + }, + { + "artist": "Four Tops", + "position": 15, + "title": "Standing In The Shadows Of Love" + }, + { + "artist": "The Music Machine", + "position": 16, + "title": "Talk Talk" + }, + { + "artist": "Bobby Vinton", + "position": 17, + "title": "Coming Home Soldier" + }, + { + "artist": "Ronnie Dove", + "position": 18, + "title": "Cry" + }, + { + "artist": "The Mamas & The Papas", + "position": 19, + "title": "Words Of Love" + }, + { + "artist": "Roger Williams", + "position": 20, + "title": "Born Free" + }, + { + "artist": "Jackie Wilson", + "position": 21, + "title": "Whispers (Gettin' Louder)" + }, + { + "artist": "? (Question Mark) & The Mysterians", + "position": 22, + "title": "I Need Somebody" + }, + { + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "position": 23, + "title": "Tell It To The Rain" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 24, + "title": "Mame" + }, + { + "artist": "Peter And Gordon", + "position": 25, + "title": "Lady Godiva" + }, + { + "artist": "Wilson Pickett", + "position": 26, + "title": "Mustang Sally" + }, + { + "artist": "Herman's Hermits", + "position": 27, + "title": "East West" + }, + { + "artist": "Jimmy Ruffin", + "position": 28, + "title": "I've Passed This Way Before" + }, + { + "artist": "Eric Burdon & The Animals", + "position": 29, + "title": "Help Me Girl" + }, + { + "artist": "The Yardbirds", + "position": 30, + "title": "Happenings Ten Years Time Ago" + }, + { + "artist": "Neil Diamond", + "position": 31, + "title": "I Got The Feelin' (Oh No No)" + }, + { + "artist": "The Monkees", + "position": 32, + "title": "(I'm Not Your) Steppin' Stone" + }, + { + "artist": "The Lovin' Spoonful", + "position": 33, + "title": "Nashville Cats" + }, + { + "artist": "The Miracles", + "position": 34, + "title": "(Come 'Round Here) I'm The One You Need" + }, + { + "artist": "The Association", + "position": 35, + "title": "Pandora's Golden Heebie Jeebies" + }, + { + "artist": "Otis Redding", + "position": 36, + "title": "Try A Little Tenderness" + }, + { + "artist": "The Seekers", + "position": 37, + "title": "Georgy Girl" + }, + { + "artist": "Petula Clark", + "position": 38, + "title": "Color My World" + }, + { + "artist": "Tommy James And The Shondells", + "position": 39, + "title": "It's Only Love" + }, + { + "artist": "Percy Sledge", + "position": 40, + "title": "It Tears Me Up" + }, + { + "artist": "Blues Magoos", + "position": 41, + "title": "(We Ain't Got) Nothin' Yet" + }, + { + "artist": "The Innocence", + "position": 42, + "title": "There's Got To Be A Word!" + }, + { + "artist": "Senator Everett McKinley Dirksen", + "position": 43, + "title": "Gallant Men" + }, + { + "artist": "Bobby Goldsboro", + "position": 44, + "title": "Blue Autumn" + }, + { + "artist": "Martha & The Vandellas", + "position": 45, + "title": "I'm Ready For Love" + }, + { + "artist": "Simon & Garfunkel", + "position": 46, + "title": "A Hazy Shade Of Winter" + }, + { + "artist": "Keith", + "position": 47, + "title": "98.6" + }, + { + "artist": "Terry Knight and The Pack", + "position": 48, + "title": "I (Who Have Nothing)" + }, + { + "artist": "Gene Chandler", + "position": 49, + "title": "I Fooled You This Time" + }, + { + "artist": "The Hollies", + "position": 50, + "title": "Stop Stop Stop" + }, + { + "artist": "Gary Lewis And The Playboys", + "position": 51, + "title": "Where Will The Words Come From" + }, + { + "artist": "Dr. West's Medicine Show and Junk Band", + "position": 52, + "title": "The Eggplant That Ate Chicago" + }, + { + "artist": "Eddie Floyd", + "position": 53, + "title": "Knock On Wood" + }, + { + "artist": "The Electric Prunes", + "position": 54, + "title": "I Had Too Much To Dream (Last Night)" + }, + { + "artist": "The Critters", + "position": 55, + "title": "Bad Misunderstanding" + }, + { + "artist": "The Happenings", + "position": 56, + "title": "Goodnight My Love" + }, + { + "artist": "Baja Marimba Band", + "position": 57, + "title": "Ghost Riders In The Sky" + }, + { + "artist": "Spyder Turner", + "position": 58, + "title": "Stand By Me" + }, + { + "artist": "Joe Tex", + "position": 59, + "title": "Papa Was Too" + }, + { + "artist": "Lou Rawls", + "position": 60, + "title": "You Can Bring Me All Your Heartaches" + }, + { + "artist": "Sam The Sham and the Pharaohs", + "position": 61, + "title": "How Do You Catch A Girl" + }, + { + "artist": "The Drifters", + "position": 62, + "title": "Baby What I Mean" + }, + { + "artist": "The Emperor's", + "position": 63, + "title": "Karate" + }, + { + "artist": "Pozo Seco Singers", + "position": 64, + "title": "Look What You've Done" + }, + { + "artist": "The Outsiders", + "position": 65, + "title": "Help Me Girl" + }, + { + "artist": "Bobby Darin", + "position": 66, + "title": "The Girl That Stood Beside Me" + }, + { + "artist": "Dean Martin", + "position": 67, + "title": "(Open Up The Door) Let The Good Times In" + }, + { + "artist": "The Young Holt Trio", + "position": 68, + "title": "Wack Wack" + }, + { + "artist": "Baby Ray", + "position": 69, + "title": "There's Something On Your Mind" + }, + { + "artist": "The Youngbloods", + "position": 70, + "title": "Grizzly Bear" + }, + { + "artist": "Peter And Gordon", + "position": 71, + "title": "Knight In Rusty Armour" + }, + { + "artist": "Roy Orbison", + "position": 72, + "title": "Communication Breakdown" + }, + { + "artist": "Dionne Warwick", + "position": 73, + "title": "Another Night" + }, + { + "artist": "Tom Jones", + "position": 74, + "title": "Green, Green Grass Of Home" + }, + { + "artist": "Gene Pitney", + "position": 75, + "title": "Just One Smile" + }, + { + "artist": "Alvin Cash & The Registers", + "position": 76, + "title": "Alvin's Boo-Ga-Loo" + }, + { + "artist": "The Mamas & The Papas", + "position": 77, + "title": "Dancing In The Street" + }, + { + "artist": "Ramsey Lewis", + "position": 78, + "title": "Day Tripper" + }, + { + "artist": "Damita Jo", + "position": 79, + "title": "If You Go Away" + }, + { + "artist": "The Artistics", + "position": 80, + "title": "I'm Gonna Miss You" + }, + { + "artist": "The Gunter Kallmann Chorus", + "position": 81, + "title": "Wish Me A Rainbow" + }, + { + "artist": "The Cyrkle", + "position": 82, + "title": "Please Don't Ever Leave Me" + }, + { + "artist": "Sergio Mendes & Brasil '66", + "position": 83, + "title": "Constant Rain (Chove Chuva)" + }, + { + "artist": "Tommy Roe", + "position": 84, + "title": "It's Now Winters Day" + }, + { + "artist": "The Seeds", + "position": 85, + "title": "Pushin' Too Hard" + }, + { + "artist": "Bob Crewe Generation", + "position": 86, + "title": "Music To Watch Girls By" + }, + { + "artist": "Howard Tate", + "position": 87, + "title": "Look At Granny Run, Run" + }, + { + "artist": "Freddy Scott", + "position": 88, + "title": "Are You Lonely For Me" + }, + { + "artist": "J.J. Jackson", + "position": 89, + "title": "I Dig Girls" + }, + { + "artist": "The Buckinghams", + "position": 90, + "title": "Kind Of A Drag" + }, + { + "artist": "The Sopwith Camel", + "position": 91, + "title": "Hello Hello" + }, + { + "artist": "Peaches & Herb", + "position": 92, + "title": "Let's Fall In Love" + }, + { + "artist": "Patti LaBelle And The Blue Belles", + "position": 93, + "title": "Take Me For A Little While" + }, + { + "artist": "Boots Randolph", + "position": 94, + "title": "The Shadow Of Your Smile" + }, + { + "artist": "Jimmy Castor", + "position": 95, + "title": "Hey, Leroy, Your Mama's Callin' You" + }, + { + "artist": "Bobby Hebb", + "position": 96, + "title": "Love Me" + }, + { + "artist": "Sam & Dave", + "position": 97, + "title": "You Got Me Hummin'" + }, + { + "artist": "Don Ho and the Aliis", + "position": 98, + "title": "Tiny Bubbles" + }, + { + "artist": "The Hardtimes", + "position": 99, + "title": "Fortune Teller" + }, + { + "artist": "The Spencer Davis Group", + "position": 100, + "title": "Gimme Some Lovin'" + } + ], + "title": "1966 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Dave Clark Five", + "position": 1, + "title": "Over And Over" + }, + { + "artist": "The Byrds", + "position": 2, + "title": "Turn! Turn! Turn! (To Everything There Is A Season)" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 3, + "title": "I Got You (I Feel Good)" + }, + { + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "position": 4, + "title": "Let's Hang On!" + }, + { + "artist": "Simon & Garfunkel", + "position": 5, + "title": "The Sound Of Silence" + }, + { + "artist": "Eddy Arnold", + "position": 6, + "title": "Make The World Go Away" + }, + { + "artist": "The McCoys", + "position": 7, + "title": "Fever" + }, + { + "artist": "Roger Miller", + "position": 8, + "title": "England Swings" + }, + { + "artist": "The Righteous Brothers", + "position": 9, + "title": "Ebb Tide" + }, + { + "artist": "The Shangri-Las", + "position": 10, + "title": "I Can Never Go Home Anymore" + }, + { + "artist": "The Beatles", + "position": 11, + "title": "We Can Work It Out" + }, + { + "artist": "The Wonder Who?", + "position": 12, + "title": "Don't Think Twice" + }, + { + "artist": "The Statler Brothers", + "position": 13, + "title": "Flowers On The Wall" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 14, + "title": "Puppet On A String" + }, + { + "artist": "Ramsey Lewis Trio", + "position": 15, + "title": "Hang On Sloopy" + }, + { + "artist": "The Vogues", + "position": 16, + "title": "Five O'Clock World" + }, + { + "artist": "Barry Young", + "position": 17, + "title": "One Has My Name (The Other Has My Heart)" + }, + { + "artist": "Jay & The Americans", + "position": 18, + "title": "Sunday And Me" + }, + { + "artist": "Dean Martin", + "position": 19, + "title": "I Will" + }, + { + "artist": "The Supremes", + "position": 20, + "title": "I Hear A Symphony" + }, + { + "artist": "The Beach Boys", + "position": 21, + "title": "The Little Girl I Once Knew" + }, + { + "artist": "Gary Lewis And The Playboys", + "position": 22, + "title": "She's Just My Style" + }, + { + "artist": "The Lovin' Spoonful", + "position": 23, + "title": "You Didn't Have To Be So Nice" + }, + { + "artist": "The Animals", + "position": 24, + "title": "It's My Life" + }, + { + "artist": "The Yardbirds", + "position": 25, + "title": "I'm A Man" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 26, + "title": "Taste Of Honey" + }, + { + "artist": "Len Barry", + "position": 27, + "title": "1-2-3" + }, + { + "artist": "The Beatles", + "position": 28, + "title": "Day Tripper" + }, + { + "artist": "Jackie Lee", + "position": 29, + "title": "The Duck" + }, + { + "artist": "Al Martino", + "position": 30, + "title": "Spanish Eyes" + }, + { + "artist": "We Five", + "position": 31, + "title": "Let's Get Together" + }, + { + "artist": "Roy Head And The Traits", + "position": 32, + "title": "Apple Of My Eye" + }, + { + "artist": "The T-Bones", + "position": 33, + "title": "No Matter What Shape (Your Stomach's In)" + }, + { + "artist": "Four Tops", + "position": 34, + "title": "Something About You" + }, + { + "artist": "Bobby Vinton", + "position": 35, + "title": "Satin Pillows" + }, + { + "artist": "The Rolling Stones", + "position": 36, + "title": "Get Off Of My Cloud" + }, + { + "artist": "Gene Pitney", + "position": 37, + "title": "Princess In Rags" + }, + { + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "position": 38, + "title": "Just Like Me" + }, + { + "artist": "The Newbeats", + "position": 39, + "title": "Run, Baby Run (Back Into My Arms)" + }, + { + "artist": "Fontella Bass", + "position": 40, + "title": "Rescue Me" + }, + { + "artist": "Tom Jones", + "position": 41, + "title": "Thunderball" + }, + { + "artist": "The Impressions", + "position": 42, + "title": "You've Been Cheatin'" + }, + { + "artist": "The Viscounts", + "position": 43, + "title": "Harlem Nocturne" + }, + { + "artist": "Don Covay & The Goodtimers", + "position": 44, + "title": "Seesaw" + }, + { + "artist": "Joe Tex", + "position": 45, + "title": "A Sweet Woman Like You" + }, + { + "artist": "Marvin Gaye", + "position": 46, + "title": "Ain't That Peculiar" + }, + { + "artist": "Connie Francis", + "position": 47, + "title": "Jealous Heart" + }, + { + "artist": "Herman's Hermits", + "position": 48, + "title": "A Must To Avoid" + }, + { + "artist": "Ronny And The Daytonas", + "position": 49, + "title": "Sandy" + }, + { + "artist": "The Hollies", + "position": 50, + "title": "Look Through Any Window" + }, + { + "artist": "Vic Dana", + "position": 51, + "title": "Crystal Chandelier" + }, + { + "artist": "The Fortunes", + "position": 52, + "title": "Here It Comes Again" + }, + { + "artist": "The Knickerbockers", + "position": 53, + "title": "Lies" + }, + { + "artist": "Billy Joe Royal", + "position": 54, + "title": "I've Got To Be Somebody" + }, + { + "artist": "Ronnie Dove", + "position": 55, + "title": "Kiss Away" + }, + { + "artist": "Noel Harrison", + "position": 56, + "title": "A Young Girl" + }, + { + "artist": "The Kinks", + "position": 57, + "title": "A Well Respected Man" + }, + { + "artist": "Dionne Warwick", + "position": 58, + "title": "Are You There (With Another Girl)" + }, + { + "artist": "The Toys", + "position": 59, + "title": "Attack" + }, + { + "artist": "Buck Owens and The Buckaroos", + "position": 60, + "title": "Buckaroo" + }, + { + "artist": "Ray Charles", + "position": 61, + "title": "Crying Time" + }, + { + "artist": "The Packers", + "position": 62, + "title": "Hole In The Wall" + }, + { + "artist": "James Brown At The Organ", + "position": 63, + "title": "Try Me" + }, + { + "artist": "Wilson Pickett", + "position": 64, + "title": "Don't Fight It" + }, + { + "artist": "Mitch Ryder And The Detroit Wheels", + "position": 65, + "title": "Jenny Take A Ride!" + }, + { + "artist": "Hedgehoppers Anonymous", + "position": 66, + "title": "It's Good News Week" + }, + { + "artist": "Dino, Desi & Billy", + "position": 67, + "title": "Please Don't Fight It" + }, + { + "artist": "Bobby Goldsboro", + "position": 68, + "title": "Broomstick Cowboy" + }, + { + "artist": "Brook Benton", + "position": 69, + "title": "Mother Nature, Father Time" + }, + { + "artist": "Lou Johnson", + "position": 70, + "title": "A Time To Love-A Time To Cry (Petite Fleur)" + }, + { + "artist": "The C.O.D.'s", + "position": 71, + "title": "Michael" + }, + { + "artist": "Patti LaBelle And The Blue Belles", + "position": 72, + "title": "All Or Nothing" + }, + { + "artist": "Johnny Tillotson", + "position": 73, + "title": "Our World" + }, + { + "artist": "Johnny Rivers", + "position": 74, + "title": "Under Your Spell Again" + }, + { + "artist": "Jack Jones", + "position": 75, + "title": "Love Bug" + }, + { + "artist": "Barbra Streisand", + "position": 76, + "title": "Second Hand Rose" + }, + { + "artist": "Frank Sinatra", + "position": 77, + "title": "It Was A Very Good Year" + }, + { + "artist": "Bobby Powell", + "position": 78, + "title": "C.C. Rider" + }, + { + "artist": "The Rolling Stones", + "position": 79, + "title": "As Tears Go By" + }, + { + "artist": "Mike Douglas", + "position": 80, + "title": "The Men In My Little Girl's Life" + }, + { + "artist": "Johnny Thunder", + "position": 81, + "title": "Everybody Do The Sloopy" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 82, + "title": "Zorba The Greek" + }, + { + "artist": "Fontella Bass", + "position": 83, + "title": "Recovery" + }, + { + "artist": "The Miracles", + "position": 84, + "title": "Going To A Go-Go" + }, + { + "artist": "Otis Redding", + "position": 85, + "title": "Just One More Day" + }, + { + "artist": "Herb Alpert & The Tijuana Brass", + "position": 86, + "title": "Tijuana Taxi" + }, + { + "artist": "Maxine Brown", + "position": 87, + "title": "If You Gotta Make A Fool Of Somebody" + }, + { + "artist": "The 4 Seasons", + "position": 88, + "title": "Little Boy (In Grown Up Clothes)" + }, + { + "artist": "Marianne Faithfull", + "position": 89, + "title": "Go Away From My World" + }, + { + "artist": "Petula Clark", + "position": 90, + "title": "My Love" + }, + { + "artist": "Martha & The Vandellas", + "position": 91, + "title": "Love (Makes Me Do Foolish Things)" + }, + { + "artist": "The Temptations", + "position": 92, + "title": "Don't Look Back" + }, + { + "artist": "Lou Christie", + "position": 93, + "title": "Lightnin' Strikes" + }, + { + "artist": "The Young Rascals", + "position": 94, + "title": "I Ain't Gonna Eat Out My Heart Anymore" + }, + { + "artist": "Stevie Wonder", + "position": 95, + "title": "Uptight (Everything's Alright)" + }, + { + "artist": "Lowell Fulsom", + "position": 96, + "title": "Black Nights" + }, + { + "artist": "The Beau Brummels", + "position": 97, + "title": "Good Time Music" + }, + { + "artist": "Johnny Mathis", + "position": 98, + "title": "On A Clear Day You Can See Forever" + }, + { + "artist": "Tony Bennett", + "position": 99, + "title": "Love Theme From The Sandpiper (The Shadow Of Your Smile)" + }, + { + "artist": "King Curtis", + "position": 100, + "title": "Spanish Harlem" + } + ], + "title": "1965 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Beatles", + "position": 1, + "title": "I Feel Fine" + }, + { + "artist": "The Supremes", + "position": 2, + "title": "Come See About Me" + }, + { + "artist": "Bobby Vinton", + "position": 3, + "title": "Mr. Lonely" + }, + { + "artist": "The Beatles", + "position": 4, + "title": "She's A Woman" + }, + { + "artist": "The Zombies", + "position": 5, + "title": "She's Not There" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 6, + "title": "Goin' Out Of My Head" + }, + { + "artist": "Lorne Greene", + "position": 7, + "title": "Ringo" + }, + { + "artist": "The Beach Boys", + "position": 8, + "title": "Dance, Dance, Dance" + }, + { + "artist": "The Larks", + "position": 9, + "title": "The Jerk" + }, + { + "artist": "The Rolling Stones", + "position": 10, + "title": "Time Is On My Side" + }, + { + "artist": "The Searchers", + "position": 11, + "title": "Love Potion Number Nine" + }, + { + "artist": "The Impressions", + "position": 12, + "title": "Amen" + }, + { + "artist": "Manfred Mann", + "position": 13, + "title": "Sha La La" + }, + { + "artist": "Julie Rogers", + "position": 14, + "title": "The Wedding" + }, + { + "artist": "Gene Pitney", + "position": 15, + "title": "I'm Gonna Be Strong" + }, + { + "artist": "Johnny Rivers", + "position": 16, + "title": "Mountain Of Love" + }, + { + "artist": "Herman's Hermits", + "position": 17, + "title": "I'm Into Something Good" + }, + { + "artist": "The Kinks", + "position": 18, + "title": "You Really Got Me" + }, + { + "artist": "The Dave Clark Five", + "position": 19, + "title": "Any Way You Want It" + }, + { + "artist": "The Drifters", + "position": 20, + "title": "Saturday Night At The Movies" + }, + { + "artist": "Robert Goulet", + "position": 21, + "title": "My Love, Forgive Me (Amore, Scusami)" + }, + { + "artist": "The Shangri-Las", + "position": 22, + "title": "Leader Of The Pack" + }, + { + "artist": "Del Shannon", + "position": 23, + "title": "Keep Searchin' (We'll Follow The Sun)" + }, + { + "artist": "Chad & Jeremy", + "position": 24, + "title": "Willow Weep For Me" + }, + { + "artist": "Maxine Brown", + "position": 25, + "title": "Oh No Not My Baby" + }, + { + "artist": "Marianne Faithfull", + "position": 26, + "title": "As Tears Go By" + }, + { + "artist": "Marvin Gaye", + "position": 27, + "title": "How Sweet It Is To Be Loved By You" + }, + { + "artist": "The Detergents", + "position": 28, + "title": "Leader Of The Laundromat" + }, + { + "artist": "The Marvelettes", + "position": 29, + "title": "Too Many Fish In The Sea" + }, + { + "artist": "Andy Williams", + "position": 30, + "title": "Dear Heart" + }, + { + "artist": "Johnny Tillotson", + "position": 31, + "title": "She Understands Me" + }, + { + "artist": "Dick and DeeDee", + "position": 32, + "title": "Thou Shalt Not Steal" + }, + { + "artist": "The Supremes", + "position": 33, + "title": "Baby Love" + }, + { + "artist": "The Righteous Brothers", + "position": 34, + "title": "You've Lost That Lovin' Feelin'" + }, + { + "artist": "The Ray Charles Singers", + "position": 35, + "title": "One More Time" + }, + { + "artist": "Ronnie Dove", + "position": 36, + "title": "Right Or Wrong" + }, + { + "artist": "Jack Jones", + "position": 37, + "title": "Dear Heart" + }, + { + "artist": "The Ronettes", + "position": 38, + "title": "Walking In The Rain" + }, + { + "artist": "Martha & The Vandellas", + "position": 39, + "title": "Wild One" + }, + { + "artist": "Matt Monro", + "position": 40, + "title": "Walk Away" + }, + { + "artist": "Petula Clark", + "position": 41, + "title": "Downtown" + }, + { + "artist": "Bobbi Martin", + "position": 42, + "title": "Don't Forget I Still Love You" + }, + { + "artist": "Roger Miller", + "position": 43, + "title": "Do-Wacka-Do" + }, + { + "artist": "The Gestures", + "position": 44, + "title": "Run, Run, Run" + }, + { + "artist": "Betty Everett & Jerry Butler", + "position": 45, + "title": "Smile" + }, + { + "artist": "The You Know Who Group!", + "position": 46, + "title": "Roses Are Red My Love" + }, + { + "artist": "Chuck Jackson", + "position": 47, + "title": "Since I Don't Have You" + }, + { + "artist": "Gene Chandler", + "position": 48, + "title": "What Now" + }, + { + "artist": "The Animals", + "position": 49, + "title": "Boom Boom" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 50, + "title": "Ask Me" + }, + { + "artist": "Gerry And The Pacemakers", + "position": 51, + "title": "I'll Be There" + }, + { + "artist": "The Waikikis", + "position": 52, + "title": "Hawaii Tattoo" + }, + { + "artist": "Candy & The Kisses", + "position": 53, + "title": "The 81" + }, + { + "artist": "Sandie Shaw", + "position": 54, + "title": "(There's) Always Something There To Remind Me" + }, + { + "artist": "Chuck Berry", + "position": 55, + "title": "Promised Land" + }, + { + "artist": "Four Tops", + "position": 56, + "title": "Without The One You Love (Life's Not Worth While)" + }, + { + "artist": "Dean Martin", + "position": 57, + "title": "You're Nobody Till Somebody Loves You" + }, + { + "artist": "The Hullaballoos", + "position": 58, + "title": "I'm Gonna Love You Too" + }, + { + "artist": "Joe Tex", + "position": 59, + "title": "Hold What You've Got" + }, + { + "artist": "Shirley Ellis", + "position": 60, + "title": "The Name Game" + }, + { + "artist": "Gale Garnett", + "position": 61, + "title": "Lovin' Place" + }, + { + "artist": "Ray Charles", + "position": 62, + "title": "Makin' Whoopee" + }, + { + "artist": "Ben E. King", + "position": 63, + "title": "Seven Letters" + }, + { + "artist": "Major Lance", + "position": 64, + "title": "Sometimes I Wonder" + }, + { + "artist": "The Miracles", + "position": 65, + "title": "Come On Do The Jerk" + }, + { + "artist": "Betty Everett", + "position": 66, + "title": "Getting Mighty Crowded" + }, + { + "artist": "Solomon Burke", + "position": 67, + "title": "The Price" + }, + { + "artist": "The Honeycombs", + "position": 68, + "title": "I Can't Stop" + }, + { + "artist": "The Kinks", + "position": 69, + "title": "All Day And All Of The Night" + }, + { + "artist": "Brook Benton", + "position": 70, + "title": "Do It Right" + }, + { + "artist": "Irma Thomas", + "position": 71, + "title": "He's My Guy" + }, + { + "artist": "Walter Jackson", + "position": 72, + "title": "It's All Over" + }, + { + "artist": "Jo Ann & Troy", + "position": 73, + "title": "I Found A Love Oh What A Love" + }, + { + "artist": "Harold Betters", + "position": 74, + "title": "Do Anything You Wanna (Part I)" + }, + { + "artist": "Jerry Vale", + "position": 75, + "title": "Have You Looked Into Your Heart" + }, + { + "artist": "Frank Sinatra", + "position": 76, + "title": "Somewhere In Your Heart" + }, + { + "artist": "The Contours", + "position": 77, + "title": "Can You Jerk Like Me" + }, + { + "artist": "Henry Mancini And His Orchestra", + "position": 78, + "title": "Dear Heart" + }, + { + "artist": "Dean Martin", + "position": 79, + "title": "You'll Always Be The One I Love" + }, + { + "artist": "Travis Wammack", + "position": 80, + "title": "Scratchy" + }, + { + "artist": "Jay & The Americans", + "position": 81, + "title": "Let's Lock The Door (And Throw Away The Key)" + }, + { + "artist": "Patti LaBelle And The Blue Belles", + "position": 82, + "title": "Danny Boy" + }, + { + "artist": "The Shangri-Las", + "position": 83, + "title": "Give Him A Great Big Kiss" + }, + { + "artist": "The Dolphins", + "position": 84, + "title": "Hey-Da-Da-Dow" + }, + { + "artist": "Ronny And The Daytonas", + "position": 85, + "title": "Bucket T" + }, + { + "artist": "Lee Morgan", + "position": 86, + "title": "The Sidewinder, Part 1" + }, + { + "artist": "Willie Mitchell", + "position": 87, + "title": "Percolatin'" + }, + { + "artist": "The Dixie Cups", + "position": 88, + "title": "Little Bell" + }, + { + "artist": "Bobby Vee", + "position": 89, + "title": "(There'll Come A Day When) Ev'ry Little Bit Hurts" + }, + { + "artist": "Lesley Gore", + "position": 90, + "title": "Look Of Love" + }, + { + "artist": "Sonny James", + "position": 91, + "title": "You're The Only World I Know" + }, + { + "artist": "The Hondells", + "position": 92, + "title": "My Buddy Seat" + }, + { + "artist": "The Shangri-Las", + "position": 93, + "title": "Maybe" + }, + { + "artist": "Hank Williams Jr.", + "position": 94, + "title": "Endless Sleep" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 95, + "title": "Have Mercy Baby" + }, + { + "artist": "The Radiants", + "position": 96, + "title": "Voice Your Choice" + }, + { + "artist": "Don Covay", + "position": 97, + "title": "Take This Hurt Off Me" + }, + { + "artist": "The Bachelors", + "position": 98, + "title": "No Arms Can Ever Hold You" + }, + { + "artist": "The Shirelles", + "position": 99, + "title": "Are You Still My Baby" + }, + { + "artist": "Ned Miller", + "position": 100, + "title": "Do What You Do Do Well" + } + ], + "title": "1964 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Singing Nun (Soeur Sourire)", + "position": 1, + "title": "Dominique" + }, + { + "artist": "Bobby Vinton", + "position": 2, + "title": "There! I've Said It Again" + }, + { + "artist": "The Kingsmen", + "position": 3, + "title": "Louie Louie" + }, + { + "artist": "Lenny Welch", + "position": 4, + "title": "Since I Fell For You" + }, + { + "artist": "The Caravelles", + "position": 5, + "title": "You Don't Have To Be A Baby To Cry" + }, + { + "artist": "Dion Di Muci", + "position": 6, + "title": "Drip Drop" + }, + { + "artist": "Bobby Rydell", + "position": 7, + "title": "Forget Him" + }, + { + "artist": "The Murmaids", + "position": 8, + "title": "Popsicles And Icicles" + }, + { + "artist": "Johnny Tillotson", + "position": 9, + "title": "Talk Back Trembling Lips" + }, + { + "artist": "The Beach Boys", + "position": 10, + "title": "Be True To Your School" + }, + { + "artist": "Joey Powers", + "position": 11, + "title": "Midnight Mary" + }, + { + "artist": "Martha & The Vandellas", + "position": 12, + "title": "Quicksand" + }, + { + "artist": "Shirley Ellis", + "position": 13, + "title": "The Nitty Gritty" + }, + { + "artist": "Chubby Checker", + "position": 14, + "title": "Loddy Lo" + }, + { + "artist": "Jack Jones", + "position": 15, + "title": "Wives And Lovers" + }, + { + "artist": "Dale & Grace", + "position": 16, + "title": "I'm Leaving It Up To You" + }, + { + "artist": "Tommy Roe", + "position": 17, + "title": "Everybody" + }, + { + "artist": "The Secrets", + "position": 18, + "title": "The Boy Next Door" + }, + { + "artist": "Roy Orbison", + "position": 19, + "title": "Pretty Paper" + }, + { + "artist": "Brenda Lee", + "position": 20, + "title": "As Usual" + }, + { + "artist": "The Trashmen", + "position": 21, + "title": "Surfin' Bird" + }, + { + "artist": "Marvin Gaye", + "position": 22, + "title": "Can I Get A Witness" + }, + { + "artist": "The Duprees featuring Joey Vann", + "position": 23, + "title": "Have You Heard" + }, + { + "artist": "Jan & Dean", + "position": 24, + "title": "Drag City" + }, + { + "artist": "Trini Lopez", + "position": 25, + "title": "Kansas City" + }, + { + "artist": "Robin Ward", + "position": 26, + "title": "Wonderful Summer" + }, + { + "artist": "The Beach Boys", + "position": 27, + "title": "In My Room" + }, + { + "artist": "Lesley Gore", + "position": 28, + "title": "She's A Fool" + }, + { + "artist": "Rufus Thomas", + "position": 29, + "title": "Walking The Dog" + }, + { + "artist": "Dick and DeeDee", + "position": 30, + "title": "Turn Around" + }, + { + "artist": "Garnet Mimms & The Enchanters", + "position": 31, + "title": "For Your Precious Love" + }, + { + "artist": "Ray Charles", + "position": 32, + "title": "That Lucky Old Sun" + }, + { + "artist": "Neil Sedaka", + "position": 33, + "title": "Bad Girl" + }, + { + "artist": "Sam Cooke", + "position": 34, + "title": "Little Red Rooster" + }, + { + "artist": "Peter, Paul & Mary", + "position": 35, + "title": "Stewball" + }, + { + "artist": "Garnet Mimms & The Enchanters", + "position": 36, + "title": "Baby Don't You Weep" + }, + { + "artist": "Nino Tempo & April Stevens", + "position": 37, + "title": "Whispering" + }, + { + "artist": "The Marketts", + "position": 38, + "title": "Out Of Limits" + }, + { + "artist": "Jerry Butler", + "position": 39, + "title": "Need To Belong" + }, + { + "artist": "The Supremes", + "position": 40, + "title": "When The Lovelight Starts Shining Through His Eyes" + }, + { + "artist": "The Chiffons", + "position": 41, + "title": "I Have A Boyfriend" + }, + { + "artist": "The Tymes", + "position": 42, + "title": "Somewhere" + }, + { + "artist": "Al Martino", + "position": 43, + "title": "Living A Lie" + }, + { + "artist": "Gene Pitney", + "position": 44, + "title": "Twenty Four Hours From Tulsa" + }, + { + "artist": "The Miracles", + "position": 45, + "title": "I Gotta Dance To Keep From Crying" + }, + { + "artist": "The Rip Chords", + "position": 46, + "title": "Hey Little Cobra" + }, + { + "artist": "Jimmy Gilmer And The Fireballs", + "position": 47, + "title": "Sugar Shack" + }, + { + "artist": "The Impressions", + "position": 48, + "title": "It's All Right" + }, + { + "artist": "Dean And Jean", + "position": 49, + "title": "Tra La La La Suzy" + }, + { + "artist": "Sunny & The Sunliners", + "position": 50, + "title": "Rags To Riches" + }, + { + "artist": "The Cookies", + "position": 51, + "title": "Girls Grow Up Faster Than Boys" + }, + { + "artist": "Jimmy Gilmer And The Fireballs", + "position": 52, + "title": "Daisy Petal Pickin'" + }, + { + "artist": "Murry Kellum", + "position": 53, + "title": "Long Tall Texan" + }, + { + "artist": "The Dynamics", + "position": 54, + "title": "Misery" + }, + { + "artist": "Chubby Checker", + "position": 55, + "title": "Hooka Tooka" + }, + { + "artist": "The Chad Mitchell Trio", + "position": 56, + "title": "The Marvelous Toy" + }, + { + "artist": "Little Peggy March", + "position": 57, + "title": "The Impossible Happened" + }, + { + "artist": "The Marvelettes", + "position": 58, + "title": "As Long As I Know He's Mine" + }, + { + "artist": "Rick Nelson", + "position": 59, + "title": "Today's Teardrops" + }, + { + "artist": "Cliff Richard", + "position": 60, + "title": "It's All In The Game" + }, + { + "artist": "Rick Nelson", + "position": 61, + "title": "For You" + }, + { + "artist": "The Kingston Trio", + "position": 62, + "title": "Ally Ally Oxen Free" + }, + { + "artist": "The Ronettes", + "position": 63, + "title": "Baby, I Love You" + }, + { + "artist": "Dionne Warwick", + "position": 64, + "title": "Anyone Who Had A Heart" + }, + { + "artist": "Henry Mancini And His Orchestra", + "position": 65, + "title": "Charade" + }, + { + "artist": "Bobby Darin", + "position": 66, + "title": "Be Mad Little Girl" + }, + { + "artist": "Steve & Eydie", + "position": 67, + "title": "I Can't Stop Talking About You" + }, + { + "artist": "The Raindrops", + "position": 68, + "title": "That Boy John" + }, + { + "artist": "The David Rockingham Trio", + "position": 69, + "title": "Dawn" + }, + { + "artist": "Ginny Arnell", + "position": 70, + "title": "Dumb Head" + }, + { + "artist": "The Orlons", + "position": 71, + "title": "Bon-Doo-Wah" + }, + { + "artist": "Lesley Gore", + "position": 72, + "title": "You Don't Own Me" + }, + { + "artist": "The Baja Marimba Band", + "position": 73, + "title": "Comin' In The Back Door" + }, + { + "artist": "Marty Robbins", + "position": 74, + "title": "Begging To You" + }, + { + "artist": "The Tams", + "position": 75, + "title": "What Kind Of Fool (Do You Think I Am)" + }, + { + "artist": "Jay & The Americans", + "position": 76, + "title": "Come Dance With Me" + }, + { + "artist": "Brooks O'Dell", + "position": 77, + "title": "Watch Your Step" + }, + { + "artist": "Burl Ives", + "position": 78, + "title": "True Love Goes On And On" + }, + { + "artist": "Mary Wells", + "position": 79, + "title": "What's Easy For Two Is So Hard For One" + }, + { + "artist": "Frank Ifield", + "position": 80, + "title": "Please" + }, + { + "artist": "Tony Bennett", + "position": 81, + "title": "The Little Boy" + }, + { + "artist": "Jimmy Velvet", + "position": 82, + "title": "We Belong Together" + }, + { + "artist": "Dale Ward", + "position": 83, + "title": "Letter From Sherry" + }, + { + "artist": "The Girlfriends", + "position": 84, + "title": "My One And Only, Jimmy Boy" + }, + { + "artist": "Connie Francis", + "position": 85, + "title": "In The Summer Of His Years" + }, + { + "artist": "Paul Petersen", + "position": 86, + "title": "The Cheer Leader" + }, + { + "artist": "Gene Thomas", + "position": 87, + "title": "Baby's Gone" + }, + { + "artist": "The Pixies Three", + "position": 88, + "title": "Cold Cold Winter" + }, + { + "artist": "The Brothers Four", + "position": 89, + "title": "Hootenanny Saturday Night" + }, + { + "artist": "Johnny Mathis", + "position": 90, + "title": "I'll Search My Heart" + }, + { + "artist": "Sammy Davis Jr.", + "position": 91, + "title": "The Shelter Of Your Arms" + }, + { + "artist": "Paul Anka", + "position": 92, + "title": "Did You Have A Happy Birthday?" + }, + { + "artist": "Tracey Dey", + "position": 93, + "title": "Here Comes The Boy" + }, + { + "artist": "Bob And Earl", + "position": 94, + "title": "Harlem Shuffle" + }, + { + "artist": "The Crescents Featuring Chiyo", + "position": 95, + "title": "Pink Dominos" + }, + { + "artist": "Barbara Lewis", + "position": 96, + "title": "Snap Your Fingers" + }, + { + "artist": "Bobby Bland", + "position": 97, + "title": "The Feeling Is Gone" + }, + { + "artist": "The Cascades", + "position": 98, + "title": "For Your Sweet Love" + }, + { + "artist": "Bobby Vee", + "position": 99, + "title": "Never Love A Robin" + }, + { + "artist": "The Lettermen", + "position": 100, + "title": "Where Or When" + } + ], + "title": "1963 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Tornadoes", + "position": 1, + "title": "Telstar" + }, + { + "artist": "Chubby Checker", + "position": 2, + "title": "Limbo Rock" + }, + { + "artist": "Marcie Blane", + "position": 3, + "title": "Bobby's Girl" + }, + { + "artist": "Steve Lawrence", + "position": 4, + "title": "Go Away Little Girl" + }, + { + "artist": "The 4 Seasons", + "position": 5, + "title": "Big Girls Don't Cry" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 6, + "title": "Return To Sender" + }, + { + "artist": "Ray Charles", + "position": 7, + "title": "You Are My Sunshine" + }, + { + "artist": "Esther Phillips Little Esther", + "position": 8, + "title": "Release Me" + }, + { + "artist": "Bob B. Soxx And The Blue Jeans", + "position": 9, + "title": "Zip-A-Dee Doo-Dah" + }, + { + "artist": "Brook Benton", + "position": 10, + "title": "Hotel Happiness" + }, + { + "artist": "Lou Monte", + "position": 11, + "title": "Pepino The Italian Mouse" + }, + { + "artist": "Little Eva", + "position": 12, + "title": "Keep Your Hands Off My Baby" + }, + { + "artist": "Nat King Cole", + "position": 13, + "title": "Dear Lonely Hearts" + }, + { + "artist": "The Exciters", + "position": 14, + "title": "Tell Him" + }, + { + "artist": "The Tijuana Brass", + "position": 15, + "title": "The Lonely Bull (El Solo Torro)" + }, + { + "artist": "The Orlons", + "position": 16, + "title": "Don't Hang Up" + }, + { + "artist": "The Cookies", + "position": 17, + "title": "Chains" + }, + { + "artist": "Dion", + "position": 18, + "title": "Love Came To Me" + }, + { + "artist": "Mary Wells", + "position": 19, + "title": "Two Lovers" + }, + { + "artist": "Paul Petersen", + "position": 20, + "title": "My Dad" + }, + { + "artist": "Bobby Vee", + "position": 21, + "title": "The Night Has A Thousand Eyes" + }, + { + "artist": "Marty Robbins", + "position": 22, + "title": "Ruby Ann" + }, + { + "artist": "The 4 Seasons", + "position": 23, + "title": "Santa Claus Is Coming To Town" + }, + { + "artist": "Les Cooper and the Soul Rockers", + "position": 24, + "title": "Wiggle Wobble" + }, + { + "artist": "Dee Dee Sharp", + "position": 25, + "title": "Ride!" + }, + { + "artist": "Johnny Crawford", + "position": 26, + "title": "Rumors" + }, + { + "artist": "The Shirelles", + "position": 27, + "title": "Everybody Loves A Lover" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 28, + "title": "The Little Drummer Boy" + }, + { + "artist": "The Drifters", + "position": 29, + "title": "Up On The Roof" + }, + { + "artist": "Rick Nelson", + "position": 30, + "title": "It's Up To You" + }, + { + "artist": "Bobby Boris Pickett And The Crypt-Kickers", + "position": 31, + "title": "Monsters' Holiday" + }, + { + "artist": "Ray Charles", + "position": 32, + "title": "Your Cheating Heart" + }, + { + "artist": "Duane Eddy and the Rebelettes", + "position": 33, + "title": "(Dance With The) Guitar Man" + }, + { + "artist": "Jerry Wallace", + "position": 34, + "title": "Shutters And Boards" + }, + { + "artist": "The Routers", + "position": 35, + "title": "Let's Go (pony)" + }, + { + "artist": "Mel Torme", + "position": 36, + "title": "Comin' Home Baby" + }, + { + "artist": "Stan Getz/Charlie Byrd", + "position": 37, + "title": "Desafinado" + }, + { + "artist": "Bing Crosby", + "position": 38, + "title": "White Christmas" + }, + { + "artist": "Dickey Lee", + "position": 39, + "title": "I Saw Linda Yesterday" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 40, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Mark Valentino", + "position": 41, + "title": "The Push And Kick" + }, + { + "artist": "Bobby Vinton", + "position": 42, + "title": "Let's Kiss And Make Up" + }, + { + "artist": "Gene Pitney", + "position": 43, + "title": "Half Heaven - Half Heartache" + }, + { + "artist": "LaVern Baker", + "position": 44, + "title": "See See Rider" + }, + { + "artist": "Ray Stevens", + "position": 45, + "title": "Santa Claus Is Watching You" + }, + { + "artist": "Dionne Warwick", + "position": 46, + "title": "Don't Make Me Over" + }, + { + "artist": "The Crystals", + "position": 47, + "title": "He's A Rebel" + }, + { + "artist": "Gene McDaniels", + "position": 48, + "title": "Spanish Lace" + }, + { + "artist": "Bobby Vinton", + "position": 49, + "title": "Trouble Is My Middle Name" + }, + { + "artist": "The Beach Boys", + "position": 50, + "title": "Ten Little Indians" + }, + { + "artist": "Connie Francis", + "position": 51, + "title": "I'm Gonna' Be Warm This Winter" + }, + { + "artist": "Chris Montez", + "position": 52, + "title": "Some Kinda Fun" + }, + { + "artist": "Timi Yuro", + "position": 53, + "title": "The Love Of A Boy" + }, + { + "artist": "Gene Chandler", + "position": 54, + "title": "You Threw A Lucky Punch" + }, + { + "artist": "The Excellents", + "position": 55, + "title": "Coney Island Baby" + }, + { + "artist": "Bobby Helms", + "position": 56, + "title": "Jingle Bell Rock" + }, + { + "artist": "Brenda Lee", + "position": 57, + "title": "All Alone Am I" + }, + { + "artist": "The Earls", + "position": 58, + "title": "Remember Then" + }, + { + "artist": "Brenda Lee", + "position": 59, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "Gabriel And The Angels", + "position": 60, + "title": "That's Life (That's Tough)" + }, + { + "artist": "Johnny Thunder", + "position": 61, + "title": "Loop De Loop" + }, + { + "artist": "Jimmie Rodgers", + "position": 62, + "title": "Rainbow At Midnight" + }, + { + "artist": "Tony Bennett", + "position": 63, + "title": "I Left My Heart In San Francisco" + }, + { + "artist": "Frank Sinatra & Sammy Davis Jr.", + "position": 64, + "title": "Me And My Shadow" + }, + { + "artist": "Nat King Cole", + "position": 65, + "title": "The Christmas Song (Merry Christmas To You)" + }, + { + "artist": "Ben Colder", + "position": 66, + "title": "Don't Go Near The Eskimos" + }, + { + "artist": "Kitty Kallen", + "position": 67, + "title": "My Coloring Book" + }, + { + "artist": "Lester Flatt, Earl Scruggs & The Foggy Mountain Boys", + "position": 68, + "title": "The Ballad Of Jed Clampett" + }, + { + "artist": "The Miracles", + "position": 69, + "title": "You've Really Got A Hold On Me" + }, + { + "artist": "Brian Hyland", + "position": 70, + "title": "I May Not Live To See Tomorrow" + }, + { + "artist": "The Contours", + "position": 71, + "title": "Shake Sherry" + }, + { + "artist": "The Marvelettes", + "position": 72, + "title": "Strange I Know" + }, + { + "artist": "Frank Ifield", + "position": 73, + "title": "Lovesick Blues" + }, + { + "artist": "Lonnie Russ", + "position": 74, + "title": "My Wife Can't Cook" + }, + { + "artist": "Vince Guaraldi Trio", + "position": 75, + "title": "Cast Your Fate To The Wind" + }, + { + "artist": "Barbara Lynn", + "position": 76, + "title": "You're Gonna Need Me" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 77, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Jimmy Dean", + "position": 78, + "title": "Gonna Raise A Rukus Tonight" + }, + { + "artist": "The Pastel Six", + "position": 79, + "title": "The Cinnamon Cinder (It's A Very Nice Dance)" + }, + { + "artist": "Sandy Stewart", + "position": 80, + "title": "My Coloring Book" + }, + { + "artist": "Del Shannon", + "position": 81, + "title": "Little Town Flirt" + }, + { + "artist": "The Emotions", + "position": 82, + "title": "Echo" + }, + { + "artist": "Ned Miller", + "position": 83, + "title": "From A Jack To A King" + }, + { + "artist": "The Rebels", + "position": 84, + "title": "Wild Weekend" + }, + { + "artist": "Bobby Goldsboro", + "position": 85, + "title": "Molly" + }, + { + "artist": "Floyd Cramer", + "position": 86, + "title": "Java" + }, + { + "artist": "Rick Nelson", + "position": 87, + "title": "I Need You" + }, + { + "artist": "Aretha Franklin", + "position": 88, + "title": "Trouble In Mind" + }, + { + "artist": "The Toy Dolls", + "position": 89, + "title": "Little Tin Soldier" + }, + { + "artist": "Marion Worth", + "position": 90, + "title": "Shake Me I Rattle (Squeeze Me I Cry)" + }, + { + "artist": "Joe Harnell And His Orchestra", + "position": 91, + "title": "Fly Me To The Moon - Bossa Nova" + }, + { + "artist": "The Ventures", + "position": 92, + "title": "The 2,000 Pound Bee (Part 2)" + }, + { + "artist": "The Crystals", + "position": 93, + "title": "He's Sure The Boy I Love" + }, + { + "artist": "Dean Martin & Sammy Davis Jr.", + "position": 94, + "title": "Sam's Song" + }, + { + "artist": "The Cleftones", + "position": 95, + "title": "Lover Come Back To Me" + }, + { + "artist": "Paul and Paula", + "position": 96, + "title": "Hey Paula" + }, + { + "artist": "The Dells", + "position": 97, + "title": "The (Bossa Nova) Bird" + }, + { + "artist": "Mike Clifford", + "position": 98, + "title": "What To Do With Laurie" + }, + { + "artist": "Mahalia Jackson", + "position": 99, + "title": "Silent Night, Holy Night" + }, + { + "artist": "Don Covay", + "position": 100, + "title": "The Popeye Waddle" + } + ], + "title": "1962 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Tokens", + "position": 1, + "title": "The Lion Sleeps Tonight" + }, + { + "artist": "Bobby Vee", + "position": 2, + "title": "Run To Him" + }, + { + "artist": "Chubby Checker", + "position": 3, + "title": "The Twist" + }, + { + "artist": "James Darren", + "position": 4, + "title": "Goodbye Cruel World" + }, + { + "artist": "Leroy Van Dyke", + "position": 5, + "title": "Walk On By" + }, + { + "artist": "Joey Dee & the Starliters", + "position": 6, + "title": "Peppermint Twist - Part I" + }, + { + "artist": "The Marvelettes", + "position": 7, + "title": "Please Mr. Postman" + }, + { + "artist": "Neil Sedaka", + "position": 8, + "title": "Happy Birthday, Sweet Sixteen" + }, + { + "artist": "Sandy Nelson", + "position": 9, + "title": "Let There Be Drums" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 10, + "title": "Can't Help Falling In Love" + }, + { + "artist": "Henry Mancini And His Orchestra", + "position": 11, + "title": "Moon River" + }, + { + "artist": "Linda Scott", + "position": 12, + "title": "I Don't Know Why" + }, + { + "artist": "The Lettermen", + "position": 13, + "title": "When I Fall In Love" + }, + { + "artist": "Ray Charles and his Orchestra", + "position": 14, + "title": "Unchain My Heart" + }, + { + "artist": "Connie Francis", + "position": 15, + "title": "When The Boy In Your Arms (Is The Boy In Your Heart)" + }, + { + "artist": "Jerry Butler", + "position": 16, + "title": "Moon River" + }, + { + "artist": "The Angels", + "position": 17, + "title": "'Til" + }, + { + "artist": "Ferrante & Teicher", + "position": 18, + "title": "Tonight" + }, + { + "artist": "Jimmy Dean", + "position": 19, + "title": "Big Bad John" + }, + { + "artist": "Bing Crosby", + "position": 20, + "title": "White Christmas" + }, + { + "artist": "The Impressions", + "position": 21, + "title": "Gypsy Woman" + }, + { + "artist": "Brook Benton", + "position": 22, + "title": "Revenge" + }, + { + "artist": "The Crystals", + "position": 23, + "title": "There's No Other (Like My Baby)" + }, + { + "artist": "Kenny Dino", + "position": 24, + "title": "Your Ma Said You Cried In Your Sleep Last Night" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 25, + "title": "Rock-A-Hula Baby" + }, + { + "artist": "Barbara George", + "position": 26, + "title": "I Know (You Don't Love Me No More)" + }, + { + "artist": "Bobby Rydell/Chubby Checker", + "position": 27, + "title": "Jingle Bell Rock" + }, + { + "artist": "Brenda Lee", + "position": 28, + "title": "Fool #1" + }, + { + "artist": "Chubby Checker", + "position": 29, + "title": "Let's Twist Again" + }, + { + "artist": "Solomon Burke", + "position": 30, + "title": "Just Out Of Reach (Of My Two Open Arms)" + }, + { + "artist": "Jimmy Elledge", + "position": 31, + "title": "Funny How Time Slips Away" + }, + { + "artist": "The Chantels", + "position": 32, + "title": "Well, I Told You" + }, + { + "artist": "Phil McLean", + "position": 33, + "title": "Small Sad Sam" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 34, + "title": "The Little Drummer Boy" + }, + { + "artist": "Fats Domino", + "position": 35, + "title": "Jambalaya (On The Bayou)" + }, + { + "artist": "Gene Pitney", + "position": 36, + "title": "Town Without Pity" + }, + { + "artist": "The Highwaymen", + "position": 37, + "title": "Cotton Fields" + }, + { + "artist": "The G-Clefs", + "position": 38, + "title": "I Understand (Just How You Feel)" + }, + { + "artist": "James Ray", + "position": 39, + "title": "If You Gotta Make A Fool Of Somebody" + }, + { + "artist": "Pat Boone", + "position": 40, + "title": "Johnny Will" + }, + { + "artist": "Dion", + "position": 41, + "title": "The Wanderer" + }, + { + "artist": "The Highwaymen", + "position": 42, + "title": "The Gypsy Rover" + }, + { + "artist": "Connie Francis", + "position": 43, + "title": "Baby's First Christmas" + }, + { + "artist": "Del Shannon", + "position": 44, + "title": "Hey! Little Girl" + }, + { + "artist": "The Shirelles", + "position": 45, + "title": "Baby It's You" + }, + { + "artist": "Ike & Tina Turner", + "position": 46, + "title": "Poor Fool" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 47, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Vic Dana", + "position": 48, + "title": "Little Altar Boy" + }, + { + "artist": "Bobby Helms", + "position": 49, + "title": "Jingle Bell Rock" + }, + { + "artist": "Gary U.S. Bonds", + "position": 50, + "title": "Dear Lady Twist" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 51, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Burl Ives", + "position": 52, + "title": "A Little Bitty Tear" + }, + { + "artist": "Sims Twins", + "position": 53, + "title": "Soothe Me" + }, + { + "artist": "Dion", + "position": 54, + "title": "The Majestic" + }, + { + "artist": "Dion", + "position": 55, + "title": "Runaround Sue" + }, + { + "artist": "Dinah Washington", + "position": 56, + "title": "September In The Rain" + }, + { + "artist": "Patsy Cline", + "position": 57, + "title": "Crazy" + }, + { + "artist": "Brenda Lee", + "position": 58, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "John D. Loudermilk", + "position": 59, + "title": "Language Of Love" + }, + { + "artist": "Sue Thompson", + "position": 60, + "title": "Norman" + }, + { + "artist": "Bobby Bland", + "position": 61, + "title": "Turn On Your Love Light" + }, + { + "artist": "Glen Campbell", + "position": 62, + "title": "Turn Around, Look At Me" + }, + { + "artist": "Bobby Darin", + "position": 63, + "title": "Irresistible You" + }, + { + "artist": "Frank Sinatra", + "position": 64, + "title": "Pocketful Of Miracles" + }, + { + "artist": "Bill Black's Combo", + "position": 65, + "title": "Twist-Her" + }, + { + "artist": "Lee Dorsey", + "position": 66, + "title": "Do-Re-Mi" + }, + { + "artist": "Si Zentner And His Orchestra", + "position": 67, + "title": "Up A Lazy River" + }, + { + "artist": "Roger Williams", + "position": 68, + "title": "Maria" + }, + { + "artist": "Frank Slay And His Orchestra", + "position": 69, + "title": "Flying Circle" + }, + { + "artist": "Gladys Knight And The Pips", + "position": 70, + "title": "Letter Full Of Tears" + }, + { + "artist": "Linda Scott", + "position": 70, + "title": "It's All Because" + }, + { + "artist": "The Drifters", + "position": 72, + "title": "Room Full Of Tears" + }, + { + "artist": "Johnny Tillotson", + "position": 73, + "title": "Dreamy Eyes" + }, + { + "artist": "Bobby Vee", + "position": 74, + "title": "Walkin' With My Angel" + }, + { + "artist": "Jimmy McCracklin", + "position": 75, + "title": "Just Got To Know" + }, + { + "artist": "Ral Donner", + "position": 76, + "title": "She's Everything (I Wanted You To Be)" + }, + { + "artist": "The Dovells", + "position": 77, + "title": "Bristol Stomp" + }, + { + "artist": "The Showmen", + "position": 78, + "title": "It Will Stand" + }, + { + "artist": "The Marcels", + "position": 79, + "title": "Heartaches" + }, + { + "artist": "Gene McDaniels", + "position": 80, + "title": "Tower Of Strength" + }, + { + "artist": "Chubby Checker", + "position": 81, + "title": "Twistin' U.S.A." + }, + { + "artist": "The Dave Brubeck Quartet", + "position": 82, + "title": "Unsquare Dance" + }, + { + "artist": "Bobby Darin", + "position": 83, + "title": "Multiplication" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 84, + "title": "Alvin's Harmonica" + }, + { + "artist": "Charles Brown", + "position": 85, + "title": "Please Come Home For Christmas" + }, + { + "artist": "Dick Dale and The Del-Tones", + "position": 86, + "title": "Let's Go Trippin'" + }, + { + "artist": "Anthony Newley", + "position": 87, + "title": "Pop Goes The Weasel" + }, + { + "artist": "Danny Peppermint and the Jumping Jacks", + "position": 88, + "title": "The Peppermint Twist" + }, + { + "artist": "Ray Peterson", + "position": 89, + "title": "I Could Have Loved You So Well" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 90, + "title": "Lost Someone" + }, + { + "artist": "Patti Page", + "position": 91, + "title": "Go On Home" + }, + { + "artist": "Ace Cannon", + "position": 92, + "title": "Tuff" + }, + { + "artist": "Sleepy King", + "position": 93, + "title": "Pushin' Your Luck" + }, + { + "artist": "Marty Robbins", + "position": 94, + "title": "I Told The Brook" + }, + { + "artist": "The Corsairs Featuring Jay Bird Uzzell", + "position": 95, + "title": "Smoky Places" + }, + { + "artist": "Troy Shondell", + "position": 96, + "title": "Tears From An Angel" + }, + { + "artist": "Johnny Preston", + "position": 97, + "title": "Free Me" + }, + { + "artist": "The Belmonts", + "position": 98, + "title": "I Need Some One" + }, + { + "artist": "Dickie Goodman", + "position": 99, + "title": "Santa & The Touchables" + }, + { + "artist": "Jimmie Beaumont", + "position": 100, + "title": "Ev'rybody's Cryin'" + } + ], + "title": "1961 - Hot 100" + }, + { + "songs": [ + { + "artist": "Elvis Presley With The Jordanaires", + "position": 1, + "title": "Are You Lonesome To-night?" + }, + { + "artist": "Bert Kaempfert And His Orchestra", + "position": 2, + "title": "Wonderland By Night" + }, + { + "artist": "Floyd Cramer", + "position": 3, + "title": "Last Date" + }, + { + "artist": "Kathy Young with The Innocents", + "position": 4, + "title": "A Thousand Stars" + }, + { + "artist": "Ferrante & Teicher", + "position": 5, + "title": "Exodus" + }, + { + "artist": "Johnny Horton", + "position": 6, + "title": "North To Alaska" + }, + { + "artist": "Connie Francis", + "position": 7, + "title": "Many Tears Ago" + }, + { + "artist": "Johnny Burnette", + "position": 8, + "title": "You're Sixteen" + }, + { + "artist": "Lolita", + "position": 9, + "title": "Sailor (Your Home Is The Sea)" + }, + { + "artist": "Ray Peterson", + "position": 10, + "title": "Corinna, Corinna" + }, + { + "artist": "Jerry Butler", + "position": 11, + "title": "He Will Break Your Heart" + }, + { + "artist": "Dion", + "position": 12, + "title": "Lonely Teenager" + }, + { + "artist": "Rosie And The Originals", + "position": 13, + "title": "Angel Baby" + }, + { + "artist": "Brenda Lee", + "position": 14, + "title": "Rockin' Around The Christmas Tree" + }, + { + "artist": "The Ventures", + "position": 15, + "title": "Perfidia" + }, + { + "artist": "Bobby Vee", + "position": 16, + "title": "Rubber Ball" + }, + { + "artist": "Louis Prima", + "position": 17, + "title": "Wonderland By Night" + }, + { + "artist": "Johnny Tillotson", + "position": 18, + "title": "Poetry In Motion" + }, + { + "artist": "U.S. Bonds", + "position": 19, + "title": "New Orleans" + }, + { + "artist": "The Shirelles", + "position": 20, + "title": "Will You Love Me Tomorrow" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 21, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Fats Domino", + "position": 22, + "title": "My Girl Josephine" + }, + { + "artist": "Bobby Rydell", + "position": 23, + "title": "Sway" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 24, + "title": "The Little Drummer Boy" + }, + { + "artist": "Bill Black's Combo", + "position": 25, + "title": "Blue Tango" + }, + { + "artist": "Bing Crosby", + "position": 26, + "title": "White Christmas" + }, + { + "artist": "Anita Bryant", + "position": 27, + "title": "Wonderland By Night" + }, + { + "artist": "Jackie Wilson", + "position": 28, + "title": "Alone At Last" + }, + { + "artist": "Brook Benton", + "position": 29, + "title": "Fools Rush In (Where Angels Fear To Tread)" + }, + { + "artist": "Maurice Williams & The Zodiacs", + "position": 30, + "title": "Stay" + }, + { + "artist": "Donnie Brooks", + "position": 31, + "title": "Doll House" + }, + { + "artist": "Ray Charles", + "position": 32, + "title": "Ruby" + }, + { + "artist": "Hank Ballard And The Midnighters", + "position": 33, + "title": "Let's Go, Let's Go, Let's Go" + }, + { + "artist": "Sam Cooke", + "position": 34, + "title": "Sad Mood" + }, + { + "artist": "Ferlin Husky", + "position": 35, + "title": "Wings Of A Dove" + }, + { + "artist": "Bobby Helms", + "position": 36, + "title": "Jingle Bell Rock" + }, + { + "artist": "Damita Jo", + "position": 37, + "title": "I'll Save The Last Dance For You" + }, + { + "artist": "Marty Robbins", + "position": 38, + "title": "Ballad Of The Alamo" + }, + { + "artist": "Elvis Presley With The Jordanaires", + "position": 39, + "title": "I Gotta Know" + }, + { + "artist": "Chubby Checker", + "position": 40, + "title": "The Hucklebuck" + }, + { + "artist": "Lawrence Welk And His Orchestra", + "position": 41, + "title": "Last Date" + }, + { + "artist": "Lawrence Welk And His Orchestra", + "position": 42, + "title": "Calcutta" + }, + { + "artist": "Jim Reeves", + "position": 43, + "title": "Am I Losing You" + }, + { + "artist": "The Drifters", + "position": 44, + "title": "Save The Last Dance For Me" + }, + { + "artist": "Bing Crosby", + "position": 45, + "title": "Adeste Fideles (Oh, Come, All Ye Faithful)" + }, + { + "artist": "Frank Sinatra", + "position": 46, + "title": "Ol' Mac Donald" + }, + { + "artist": "The Everly Brothers", + "position": 47, + "title": "Like Strangers" + }, + { + "artist": "The Innocents", + "position": 48, + "title": "Gee Whiz" + }, + { + "artist": "The Chimes", + "position": 49, + "title": "Once In Awhile" + }, + { + "artist": "Frankie Avalon", + "position": 50, + "title": "A Perfect Love" + }, + { + "artist": "Roy Orbison", + "position": 51, + "title": "I'm Hurtin'" + }, + { + "artist": "James Booker", + "position": 52, + "title": "Gonzo" + }, + { + "artist": "The Miracles (featuring Bill Smokey Robinson)", + "position": 53, + "title": "Shop Around" + }, + { + "artist": "Bing Crosby", + "position": 54, + "title": "Silent Night" + }, + { + "artist": "The Drifters", + "position": 55, + "title": "I Count The Tears" + }, + { + "artist": "The Olympics", + "position": 56, + "title": "Dance By The Light Of The Moon" + }, + { + "artist": "Neil Sedaka", + "position": 57, + "title": "Calendar Girl" + }, + { + "artist": "Bobby Darin", + "position": 58, + "title": "Christmas Auld Lang Syne" + }, + { + "artist": "LaVern Baker", + "position": 59, + "title": "Bumble Bee" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 60, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Santo & Johnny", + "position": 61, + "title": "Twistin' Bells" + }, + { + "artist": "The Shells", + "position": 62, + "title": "Baby Oh Baby" + }, + { + "artist": "Ricky Nelson", + "position": 63, + "title": "You Are The Only One" + }, + { + "artist": "Jackie Wilson", + "position": 64, + "title": "Am I The Man" + }, + { + "artist": "Fats Domino", + "position": 65, + "title": "Natural Born Lover" + }, + { + "artist": "The Flamingos", + "position": 66, + "title": "Your Other Love" + }, + { + "artist": "Al Caiola And His Orchestra", + "position": 67, + "title": "The Magnificent Seven" + }, + { + "artist": "Skeeter Davis", + "position": 68, + "title": "My Last Date (With You)" + }, + { + "artist": "Frankie Avalon", + "position": 69, + "title": "The Puppet Song" + }, + { + "artist": "Mantovani & His Orch.", + "position": 70, + "title": "Main Theme from Exodus (Ari's Theme)" + }, + { + "artist": "The Melodeers", + "position": 71, + "title": "Rudolph The Red Nosed Reindeer" + }, + { + "artist": "Hank Ballard And The Midnighters", + "position": 72, + "title": "The Hoochi Coochi Coo" + }, + { + "artist": "The Ramblers", + "position": 73, + "title": "Rambling" + }, + { + "artist": "Adam Wade", + "position": 74, + "title": "Gloria's Theme" + }, + { + "artist": "Johnny Mathis", + "position": 75, + "title": "How To Handle A Woman" + }, + { + "artist": "The Browns featuring Jim Edward Brown", + "position": 76, + "title": "Send Me The Pillow You Dream On" + }, + { + "artist": "Larry Verne", + "position": 77, + "title": "Mister Livingston" + }, + { + "artist": "The Blue Diamonds", + "position": 78, + "title": "Ramona" + }, + { + "artist": "Andy Williams", + "position": 79, + "title": "You Don't Want My Love" + }, + { + "artist": "Bill Doggett", + "position": 80, + "title": "(Let's Do) The Hully Gully Twist" + }, + { + "artist": "Little Willie John", + "position": 81, + "title": "Walk Slow" + }, + { + "artist": "Jerry Murad's Harmonicats", + "position": 82, + "title": "Cherry Pink And Apple Blossom White" + }, + { + "artist": "Joni James", + "position": 83, + "title": "My Last Date (With You)" + }, + { + "artist": "Teresa Brewer", + "position": 84, + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)" + }, + { + "artist": "Jimmy Charles", + "position": 85, + "title": "The Age For Love" + }, + { + "artist": "Marv Johnson", + "position": 86, + "title": "Happy Days" + }, + { + "artist": "Frank Gari", + "position": 87, + "title": "Utopia" + }, + { + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "position": 88, + "title": "Pepe" + }, + { + "artist": "Buddy Knox", + "position": 89, + "title": "Lovey Dovey" + }, + { + "artist": "Ike & Tina Turner", + "position": 90, + "title": "I Idolize You" + }, + { + "artist": "The Viscounts", + "position": 91, + "title": "Wabash Blues" + }, + { + "artist": "Annette With The Afterbeats", + "position": 92, + "title": "Talk To Me Baby" + }, + { + "artist": "Brook Benton", + "position": 93, + "title": "Someday You'll Want Me To Want You" + }, + { + "artist": "Shelby Flint", + "position": 94, + "title": "Angel On My Shoulder" + }, + { + "artist": "Bobby Darin", + "position": 95, + "title": "Child Of God" + }, + { + "artist": "Dinah Washington", + "position": 96, + "title": "We Have Love" + }, + { + "artist": "Perry Como", + "position": 97, + "title": "Make Someone Happy" + }, + { + "artist": "Jerry Wallace", + "position": 98, + "title": "There She Goes" + }, + { + "artist": "Jeanne Black", + "position": 99, + "title": "Oh, How I Miss You Tonight" + }, + { + "artist": "Etta & Harvey", + "position": 100, + "title": "Spoonful" + } + ], + "title": "1960 - Hot 100" + }, + { + "songs": [ + { + "artist": "Guy Mitchell", + "position": 1, + "title": "Heartaches By The Number" + }, + { + "artist": "Frankie Avalon", + "position": 2, + "title": "Why" + }, + { + "artist": "Marty Robbins", + "position": 3, + "title": "El Paso" + }, + { + "artist": "Miss Toni Fisher", + "position": 4, + "title": "The Big Hurt" + }, + { + "artist": "Freddie Cannon", + "position": 5, + "title": "Way Down Yonder In New Orleans" + }, + { + "artist": "Paul Anka", + "position": 6, + "title": "It's Time To Cry" + }, + { + "artist": "Bobby Darin", + "position": 7, + "title": "Mack The Knife" + }, + { + "artist": "Bobby Rydell", + "position": 8, + "title": "We Got Love" + }, + { + "artist": "Connie Francis", + "position": 9, + "title": "Among My Souvenirs" + }, + { + "artist": "Fabian", + "position": 10, + "title": "Hound Dog Man" + }, + { + "artist": "Ernie Fields & Orch.", + "position": 11, + "title": "In The Mood" + }, + { + "artist": "Fabian", + "position": 12, + "title": "This Friendly World" + }, + { + "artist": "Della Reese", + "position": 13, + "title": "Don't You Know" + }, + { + "artist": "The Browns", + "position": 14, + "title": "Scarlet Ribbons (For Her Hair)" + }, + { + "artist": "Brook Benton", + "position": 15, + "title": "So Many Ways" + }, + { + "artist": "Neil Sedaka", + "position": 16, + "title": "Oh! Carol" + }, + { + "artist": "The Fleetwoods", + "position": 17, + "title": "Mr. Blue" + }, + { + "artist": "The Nutty Squirrels", + "position": 18, + "title": "Uh! Oh! Part 2" + }, + { + "artist": "Steve Lawrence", + "position": 19, + "title": "Pretty Blue Eyes" + }, + { + "artist": "Ricky Nelson", + "position": 20, + "title": "I Wanna Be Loved" + }, + { + "artist": "Fats Domino", + "position": 21, + "title": "Be My Guest" + }, + { + "artist": "Johnny Mathis", + "position": 22, + "title": "Misty" + }, + { + "artist": "Santo & Johnny", + "position": 23, + "title": "Tear Drop" + }, + { + "artist": "Johnny Preston", + "position": 24, + "title": "Running Bear" + }, + { + "artist": "Marv Johnson", + "position": 25, + "title": "You Got What It Takes" + }, + { + "artist": "Lloyd Price and His Orchestra", + "position": 26, + "title": "Come Into My Heart" + }, + { + "artist": "Conway Twitty", + "position": 27, + "title": "Danny Boy" + }, + { + "artist": "Bill Black's Combo", + "position": 28, + "title": "Smokie - Part 2" + }, + { + "artist": "Larry Hall", + "position": 29, + "title": "Sandy" + }, + { + "artist": "Johnny And The Hurricanes", + "position": 30, + "title": "Reveille Rock" + }, + { + "artist": "Rocco Granata and the International Quintet", + "position": 31, + "title": "Marina" + }, + { + "artist": "Annette With The Afterbeats", + "position": 32, + "title": "First Name Initial" + }, + { + "artist": "The Drifters", + "position": 33, + "title": "Dance With Me" + }, + { + "artist": "Sammy Turner", + "position": 34, + "title": "Always" + }, + { + "artist": "Jimmy Clanton", + "position": 35, + "title": "Go, Jimmy, Go" + }, + { + "artist": "Connie Francis", + "position": 36, + "title": "God Bless America" + }, + { + "artist": "Bob Beckham", + "position": 37, + "title": "Just As Much As Ever" + }, + { + "artist": "Ricky Nelson", + "position": 38, + "title": "Mighty Good" + }, + { + "artist": "The Drifters", + "position": 39, + "title": "(If You Cry) True Love, True Love" + }, + { + "artist": "Royal Teens", + "position": 40, + "title": "Believe Me" + }, + { + "artist": "Paul Evans and the Curls", + "position": 41, + "title": "(Seven Little Girls) Sitting In The Back Seat" + }, + { + "artist": "Dinah Washington", + "position": 42, + "title": "Unforgettable" + }, + { + "artist": "Paul Anka", + "position": 43, + "title": "Put Your Head On My Shoulder" + }, + { + "artist": "Jackie Wilson", + "position": 44, + "title": "Talk That Talk" + }, + { + "artist": "The Nutty Squirrels", + "position": 45, + "title": "Uh! Oh! Part 1" + }, + { + "artist": "Willy Alberti", + "position": 46, + "title": "Marina" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 47, + "title": "The Little Drummer Boy" + }, + { + "artist": "Wink Martindale", + "position": 48, + "title": "Deck Of Cards" + }, + { + "artist": "Tommy Facenda", + "position": 49, + "title": "High School U.S.A." + }, + { + "artist": "Jerry Wallace With The Jewels", + "position": 50, + "title": "Primrose Lane" + }, + { + "artist": "The Spacemen", + "position": 51, + "title": "The Clouds" + }, + { + "artist": "Della Reese", + "position": 52, + "title": "Not One Minute More" + }, + { + "artist": "The Clovers", + "position": 53, + "title": "Love Potion No. 9" + }, + { + "artist": "Sarah Vaughan", + "position": 54, + "title": "Smooth Operator" + }, + { + "artist": "Ray Charles and his Orchestra", + "position": 55, + "title": "I'm Movin' On" + }, + { + "artist": "Andy Williams", + "position": 56, + "title": "The Village Of St. Bernadette" + }, + { + "artist": "The Crests", + "position": 57, + "title": "A Year Ago Tonight" + }, + { + "artist": "Frank Sinatra", + "position": 58, + "title": "Talk To Me" + }, + { + "artist": "Andy Williams", + "position": 59, + "title": "Lonely Street" + }, + { + "artist": "Lloyd Price and His Orchestra", + "position": 60, + "title": "Wont'cha Come Home" + }, + { + "artist": "Dee Clark", + "position": 61, + "title": "How About That" + }, + { + "artist": "Fireflies", + "position": 62, + "title": "You Were Mine" + }, + { + "artist": "Fats Domino", + "position": 63, + "title": "I've Been Around" + }, + { + "artist": "Ray Peterson", + "position": 64, + "title": "Goodnight My Love (Pleasant Dreams)" + }, + { + "artist": "The Coasters", + "position": 65, + "title": "What About Us" + }, + { + "artist": "Don Costa And His Orchestra And Chorus", + "position": 66, + "title": "I'll Walk The Line" + }, + { + "artist": "Rock-A-Teens", + "position": 67, + "title": "Woo-Hoo" + }, + { + "artist": "David Seville And The Chipmunks", + "position": 68, + "title": "The Chipmunk Song (Christmas Don't Be Late)" + }, + { + "artist": "Cliff Richard and The Drifters", + "position": 69, + "title": "Living Doll" + }, + { + "artist": "Kitty Kallen", + "position": 70, + "title": "If I Give My Heart To You" + }, + { + "artist": "Pat Boone", + "position": 71, + "title": "Beyond The Sunset" + }, + { + "artist": "Fireballs", + "position": 72, + "title": "Torquay" + }, + { + "artist": "Hugo & Luigi", + "position": 73, + "title": "Just Come Home" + }, + { + "artist": "LaVern Baker", + "position": 74, + "title": "Tiny Tim" + }, + { + "artist": "Mitch Miller", + "position": 75, + "title": "Do-Re-Mi" + }, + { + "artist": "Dancer, Prancer And Nervous", + "position": 76, + "title": "The Happy Reindeer" + }, + { + "artist": "The Revels", + "position": 77, + "title": "Midnight Stroll" + }, + { + "artist": "Tommy Edwards", + "position": 78, + "title": "(New In) The Ways Of Love" + }, + { + "artist": "The Islanders", + "position": 79, + "title": "The Enchanted Sea" + }, + { + "artist": "Tommy Edwards", + "position": 80, + "title": "Honestly And Truly" + }, + { + "artist": "Rod Bernard", + "position": 81, + "title": "One More Chance" + }, + { + "artist": "Tony Bennett", + "position": 82, + "title": "Climb Ev'ry Mountain" + }, + { + "artist": "Titus Turner", + "position": 83, + "title": "We Told You Not To Marry" + }, + { + "artist": "Carl Dobkins, Jr.", + "position": 84, + "title": "Lucky Devil" + }, + { + "artist": "Dorothy Collins", + "position": 85, + "title": "Baciare Baciare (Kissing Kissing)" + }, + { + "artist": "Jane Morgan", + "position": 86, + "title": "Happy Anniversary" + }, + { + "artist": "The Mormon Tabernacle Choir", + "position": 87, + "title": "Battle Hymn Of The Republic" + }, + { + "artist": "The Coasters", + "position": 88, + "title": "Run Red Run" + }, + { + "artist": "The Bluenotes", + "position": 89, + "title": "I Don't Know What It Is" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 90, + "title": "Shimmy, Shimmy, Ko-Ko-Bop" + }, + { + "artist": "Johnny Cash", + "position": 91, + "title": "The Little Drummer Boy" + }, + { + "artist": "Sandy Nelson", + "position": 92, + "title": "Teen Beat" + }, + { + "artist": "Frankie Avalon", + "position": 93, + "title": "Swingin' On A Rainbow" + }, + { + "artist": "Clyde McPhatter", + "position": 94, + "title": "Let's Try Again" + }, + { + "artist": "Bill Haley And His Comets", + "position": 95, + "title": "Joey's Song" + }, + { + "artist": "Brook Benton", + "position": 96, + "title": "This Time Of The Year" + }, + { + "artist": "Bonnie Guitar", + "position": 97, + "title": "Candy Apple Red" + }, + { + "artist": "Rod Lauren", + "position": 98, + "title": "If I Had A Girl" + }, + { + "artist": "Brenda Lee", + "position": 99, + "title": "Sweet Nothin's" + }, + { + "artist": "Mark Dinning", + "position": 100, + "title": "Teen Angel" + } + ], + "title": "1959 - Hot 100" + }, + { + "songs": [ + { + "artist": "The Chipmunks With David Seville", + "position": 1, + "title": "The Chipmunk Song" + }, + { + "artist": "The Platters", + "position": 2, + "title": "Smoke Gets In Your Eyes" + }, + { + "artist": "The Teddy Bears", + "position": 3, + "title": "To Know Him, Is To Love Him" + }, + { + "artist": "The Everly Brothers", + "position": 4, + "title": "Problems" + }, + { + "artist": "The Kingston Trio", + "position": 5, + "title": "Tom Dooley" + }, + { + "artist": "Elvis Presley", + "position": 6, + "title": "One Night" + }, + { + "artist": "The Playmates", + "position": 7, + "title": "Beep Beep" + }, + { + "artist": "Ricky Nelson", + "position": 8, + "title": "Lonesome Town" + }, + { + "artist": "Conway Twitty", + "position": 9, + "title": "It's Only Make Believe" + }, + { + "artist": "Clyde McPhatter", + "position": 10, + "title": "A Lover's Question" + }, + { + "artist": "Elvis Presley", + "position": 11, + "title": "I Got Stung" + }, + { + "artist": "Fats Domino", + "position": 12, + "title": "Whole Lotta Loving" + }, + { + "artist": "Jimmie Rodgers", + "position": 13, + "title": "Bimbombey" + }, + { + "artist": "Billy Grammer", + "position": 14, + "title": "Gotta Travel On" + }, + { + "artist": "Tommy Edwards", + "position": 15, + "title": "Love Is All We Need" + }, + { + "artist": "Bobby Darin", + "position": 16, + "title": "Queen Of The Hop" + }, + { + "artist": "Connie Francis", + "position": 17, + "title": "My Happiness" + }, + { + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "position": 18, + "title": "Cannonball" + }, + { + "artist": "Jackie Wilson", + "position": 19, + "title": "Lonely Teardrops" + }, + { + "artist": "Cozy Cole", + "position": 20, + "title": "Topsy II" + }, + { + "artist": "Frankie Avalon", + "position": 21, + "title": "I'll Wait For You" + }, + { + "artist": "Ricky Nelson", + "position": 22, + "title": "I Got A Feeling" + }, + { + "artist": "The Royaltones", + "position": 23, + "title": "Poor Boy" + }, + { + "artist": "Louis Prima And Keely Smith", + "position": 24, + "title": "That Old Black Magic" + }, + { + "artist": "Big Bopper", + "position": 25, + "title": "Chantilly Lace" + }, + { + "artist": "The Nu Tornados", + "position": 26, + "title": "Philadelphia U.S.A." + }, + { + "artist": "Ritchie Valens", + "position": 27, + "title": "Donna" + }, + { + "artist": "Donnie Owens", + "position": 28, + "title": "Need You" + }, + { + "artist": "Tommy Edwards", + "position": 29, + "title": "It's All In The Game" + }, + { + "artist": "The Four Coins", + "position": 30, + "title": "The World Outside" + }, + { + "artist": "Reg Owen & His Orchestra", + "position": 31, + "title": "Manhattan Spiritual" + }, + { + "artist": "The Crests", + "position": 32, + "title": "16 Candles" + }, + { + "artist": "The Diamonds", + "position": 33, + "title": "Walking Along" + }, + { + "artist": "Earl Grant", + "position": 34, + "title": "The End" + }, + { + "artist": "The Cadillacs", + "position": 35, + "title": "Peek-A-Boo" + }, + { + "artist": "Sam Cooke", + "position": 36, + "title": "Love You Most Of All" + }, + { + "artist": "Paul Anka-Geo. Hamilton IV-Johnny Nash", + "position": 37, + "title": "The Teen Commandments" + }, + { + "artist": "Big Bopper", + "position": 38, + "title": "Big Bopper's Wedding" + }, + { + "artist": "Paul Anka", + "position": 39, + "title": "(All of a Sudden) My Heart Sings" + }, + { + "artist": "Pat Boone", + "position": 40, + "title": "I'll Remember Tonight" + }, + { + "artist": "Neil Sedaka", + "position": 41, + "title": "The Diary" + }, + { + "artist": "Jimmy Clanton", + "position": 42, + "title": "A Letter To An Angel" + }, + { + "artist": "Eddie Cochran", + "position": 43, + "title": "C'mon Everybody" + }, + { + "artist": "Cozy Cole", + "position": 44, + "title": "Turvy II" + }, + { + "artist": "LaVern Baker", + "position": 45, + "title": "I Cried A Tear" + }, + { + "artist": "The Four Lads", + "position": 46, + "title": "The Mocking Bird" + }, + { + "artist": "Jane Morgan", + "position": 47, + "title": "The Day The Rains Came" + }, + { + "artist": "Johnny Mathis", + "position": 48, + "title": "Call Me" + }, + { + "artist": "The Ames Brothers", + "position": 49, + "title": "Pussy Cat" + }, + { + "artist": "Kalin Twins", + "position": 50, + "title": "Forget Me Not" + }, + { + "artist": "The Tommy Dorsey Orchestra", + "position": 51, + "title": "Tea For Two Cha Cha" + }, + { + "artist": "Dee Clark", + "position": 52, + "title": "Nobody But You" + }, + { + "artist": "Augie Rios", + "position": 53, + "title": "??�D??�nde Est??� Santa Claus? (Where Is Santa Claus?)" + }, + { + "artist": "Chuck Berry", + "position": 54, + "title": "Sweet Little Rock And Roller" + }, + { + "artist": "June Valli", + "position": 55, + "title": "The Wedding" + }, + { + "artist": "Bill Parsons", + "position": 56, + "title": "The All American Boy" + }, + { + "artist": "Bobby Helms", + "position": 57, + "title": "Jingle Bell Rock" + }, + { + "artist": "Bernie Lowe Orchestra", + "position": 58, + "title": "Sing Sing Sing" + }, + { + "artist": "Roy Hamilton", + "position": 59, + "title": "Pledging My Love" + }, + { + "artist": "Billy Vaughn And His Orchestra", + "position": 60, + "title": "Cimarron (Roll On)" + }, + { + "artist": "The Four Esquires", + "position": 61, + "title": "Hideaway" + }, + { + "artist": "Johnny Cash And The Tennessee Two", + "position": 62, + "title": "It's Just About Time" + }, + { + "artist": "Dion & The Belmonts", + "position": 63, + "title": "Don't Pity Me" + }, + { + "artist": "The Applejacks", + "position": 64, + "title": "Rocka-Conga" + }, + { + "artist": "Joni James", + "position": 65, + "title": "There Goes My Heart" + }, + { + "artist": "Lloyd Price", + "position": 66, + "title": "Stagger Lee" + }, + { + "artist": "James Brown And The Famous Flames", + "position": 67, + "title": "Try Me" + }, + { + "artist": "Jack Scott", + "position": 68, + "title": "Goodbye Baby" + }, + { + "artist": "The Four Preps", + "position": 69, + "title": "Cinderella" + }, + { + "artist": "Tony Dallara", + "position": 70, + "title": "Come Prima" + }, + { + "artist": "Raymond Lefevre and His Orchestra", + "position": 71, + "title": "The Day The Rains Came" + }, + { + "artist": "Harvey & The Moonglows", + "position": 72, + "title": "Ten Commandments Of Love" + }, + { + "artist": "Chuck Berry", + "position": 73, + "title": "Run Rudolph Run" + }, + { + "artist": "Tab Hunter", + "position": 74, + "title": "Jealous Heart" + }, + { + "artist": "Polly Bergen", + "position": 75, + "title": "Come Prima (Koma Preema)" + }, + { + "artist": "Frank Sinatra", + "position": 76, + "title": "Mr. Success" + }, + { + "artist": "Billy & Lillie", + "position": 77, + "title": "Lucky Ladybug" + }, + { + "artist": "The Everly Brothers", + "position": 78, + "title": "Love Of My Life" + }, + { + "artist": "Chuck Berry", + "position": 79, + "title": "Merry Christmas Baby" + }, + { + "artist": "The Applejacks", + "position": 80, + "title": "Mexican Hat Rock" + }, + { + "artist": "Quaker City Boys", + "position": 81, + "title": "Teasin'" + }, + { + "artist": "Perry Como", + "position": 82, + "title": "Mandolins In The Moonlight" + }, + { + "artist": "Jerry Wallace", + "position": 83, + "title": "Diamond Ring" + }, + { + "artist": "Bobby Helms", + "position": 84, + "title": "The Fool And The Angel" + }, + { + "artist": "Poni-Tails", + "position": 85, + "title": "Seven Minutes In Heaven" + }, + { + "artist": "Bing Crosby", + "position": 86, + "title": "White Christmas" + }, + { + "artist": "Nat King Cole", + "position": 87, + "title": "Non Dimenticar (Don't Forget)" + }, + { + "artist": "The Harry Simeone Chorale", + "position": 88, + "title": "The Little Drummer Boy" + }, + { + "artist": "Enoch Light & The Light Brigade", + "position": 89, + "title": "I Want To Be Happy Cha Cha" + }, + { + "artist": "Bobby Freeman", + "position": 90, + "title": "Need Your Love" + }, + { + "artist": "Bobby Day", + "position": 91, + "title": "Rock-in Robin" + }, + { + "artist": "Johnny Tillotson", + "position": 92, + "title": "Dreamy Eyes" + }, + { + "artist": "Art Lund", + "position": 93, + "title": "Philadelphia U.S.A." + }, + { + "artist": "Chuck Berry", + "position": 94, + "title": "Joe Joe Gunne" + }, + { + "artist": "Ray Charles and his Orchestra", + "position": 95, + "title": "Rockhouse (Part 2)" + }, + { + "artist": "The Accents", + "position": 96, + "title": "Wiggle, Wiggle" + }, + { + "artist": "Little Anthony And The Imperials", + "position": 97, + "title": "So Much" + }, + { + "artist": "The 5 Chanels", + "position": 98, + "title": "The Reason" + }, + { + "artist": "Wade Flemons and the Newcomers", + "position": 99, + "title": "Here I Stand" + }, + { + "artist": "The Olympics", + "position": 100, + "title": "(I Wanna) Dance With The Teacher" + } + ], + "title": "1958 - Hot 100" + } +] \ No newline at end of file diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000..92121f7 --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,20271 @@ +{ + "name": "chart-frontend", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "chart-frontend", + "version": "1.0.0", + "dependencies": { + "axios": "^1.6.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "5.0.1", + "recharts": "^2.8.0" + }, + "devDependencies": { + "@testing-library/jest-dom": "^5.16.4", + "@testing-library/react": "^13.3.0", + "@testing-library/user-event": "^13.5.0" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.3.tgz", + "integrity": "sha512-VQKMkwriZbaOgVCby1UDY/LDk5fIjhQicCvVPFqfe+69fWaPWydbWJ3wRt59/YzIwda1I81loas3oCoHxnqvdA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz", + "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz", + "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.0", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.27.3", + "@babel/helpers": "^7.27.6", + "@babel/parser": "^7.28.0", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.0", + "@babel/types": "^7.28.0", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.28.0.tgz", + "integrity": "sha512-N4ntErOlKvcbTt01rr5wj3y55xnIdx1ymrfIr8C2WnM1Y9glFgWaGDEULJIazOX3XM9NRzhfJ6zZnQ1sBNWU+w==", + "license": "MIT", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz", + "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.0", + "@babel/types": "^7.28.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz", + "integrity": "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.27.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.1.tgz", + "integrity": "sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", + "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "debug": "^4.4.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.22.10" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz", + "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", + "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.27.1.tgz", + "integrity": "sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.1", + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.27.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz", + "integrity": "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz", + "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.27.1.tgz", + "integrity": "sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.27.1.tgz", + "integrity": "sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.28.0.tgz", + "integrity": "sha512-zOiZqvANjWDUaUS9xMxbMcK/Zccztbe/6ikvUXaG9nsPH3w6qh5UaPGAnirI/WhIbZ8m3OHU0ReyPrknG+ZKeg==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-decorators": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.27.1.tgz", + "integrity": "sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.27.1.tgz", + "integrity": "sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz", + "integrity": "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", + "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", + "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz", + "integrity": "sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.28.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", + "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.0.tgz", + "integrity": "sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", + "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.27.1.tgz", + "integrity": "sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.0.tgz", + "integrity": "sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-globals": "^7.28.0", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/traverse": "^7.28.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", + "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/template": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.0.tgz", + "integrity": "sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz", + "integrity": "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-explicit-resource-management": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz", + "integrity": "sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.27.1.tgz", + "integrity": "sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.27.1.tgz", + "integrity": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-flow": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz", + "integrity": "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.27.1.tgz", + "integrity": "sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.27.1.tgz", + "integrity": "sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", + "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", + "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.0.tgz", + "integrity": "sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/traverse": "^7.28.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", + "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.27.1.tgz", + "integrity": "sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", + "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", + "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", + "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.27.1.tgz", + "integrity": "sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz", + "integrity": "sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz", + "integrity": "sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz", + "integrity": "sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz", + "integrity": "sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.28.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.1.tgz", + "integrity": "sha512-P0QiV/taaa3kXpLY+sXla5zec4E+4t4Aqc9ggHlfZ7a2cp8/x/Gv08jfwEtn9gnnYIMvHx6aoOZ8XJL8eU71Dg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz", + "integrity": "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.28.0.tgz", + "integrity": "sha512-dGopk9nZrtCs2+nfIem25UuHyt5moSJamArzIoh9/vezUQPmYDOzjaHDCkAzuGJibCIkPup8rMT2+wYB6S73cA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", + "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.0.tgz", + "integrity": "sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz", + "integrity": "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz", + "integrity": "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.28.0.tgz", + "integrity": "sha512-VmaxeGOwuDqzLl5JUkIRM1X2Qu2uKGxHEQWh+cvvbl7JuJRgKGJSfsEF/bUaxFhJl/XAyxBe7q7qSuTbKFuCyg==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.0", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.27.1", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.27.1", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.27.1", + "@babel/plugin-syntax-import-attributes": "^7.27.1", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.28.0", + "@babel/plugin-transform-async-to-generator": "^7.27.1", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.28.0", + "@babel/plugin-transform-class-properties": "^7.27.1", + "@babel/plugin-transform-class-static-block": "^7.27.1", + "@babel/plugin-transform-classes": "^7.28.0", + "@babel/plugin-transform-computed-properties": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0", + "@babel/plugin-transform-dotall-regex": "^7.27.1", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-explicit-resource-management": "^7.28.0", + "@babel/plugin-transform-exponentiation-operator": "^7.27.1", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.27.1", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.27.1", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-modules-systemjs": "^7.27.1", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", + "@babel/plugin-transform-numeric-separator": "^7.27.1", + "@babel/plugin-transform-object-rest-spread": "^7.28.0", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/plugin-transform-private-methods": "^7.27.1", + "@babel/plugin-transform-private-property-in-object": "^7.27.1", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.28.0", + "@babel/plugin-transform-regexp-modifiers": "^7.27.1", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.27.1", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.27.1", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", + "core-js-compat": "^3.43.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.27.1.tgz", + "integrity": "sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-transform-react-display-name": "^7.27.1", + "@babel/plugin-transform-react-jsx": "^7.27.1", + "@babel/plugin-transform-react-jsx-development": "^7.27.1", + "@babel/plugin-transform-react-pure-annotations": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.27.1.tgz", + "integrity": "sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-typescript": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.27.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.6.tgz", + "integrity": "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz", + "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.0", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.1", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.1.tgz", + "integrity": "sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "license": "MIT" + }, + "node_modules/@csstools/normalize.css": { + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz", + "integrity": "sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==", + "license": "CC0-1.0" + }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "license": "CC0-1.0", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "deprecated": "Use @eslint/config-array instead", + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", + "license": "BSD-3-Clause" + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/console/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "license": "MIT", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/core/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@jest/diff-sequences": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/diff-sequences/-/diff-sequences-30.0.1.tgz", + "integrity": "sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/environment/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/environment/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/environment/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-30.0.5.tgz", + "integrity": "sha512-F3lmTT7CXWYywoVUGTCmom0vXq3HTTkaZyTAzIy+bXSBizB7o5qzlC9VCtq0arOa8GqmNsbg/cE9C6HLn7Szew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.0.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/fake-timers/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@jest/get-type": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/get-type/-/get-type-30.0.1.tgz", + "integrity": "sha512-AyYdemXCptSRFirI5EPazNxyPwAL0jXt3zceFjaj8NFiKP9pOi0bfXonf6qkf82z2t3QWPeLCWWw4stPBzctLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/globals/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/pattern": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/pattern/-/pattern-30.0.1.tgz", + "integrity": "sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-regex-util": "30.0.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/reporters/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/schemas": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.0.5.tgz", + "integrity": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.34.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "license": "MIT", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-result/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-result/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/transform/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" + }, + "node_modules/@jest/transform/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/types": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-30.0.5.tgz", + "integrity": "sha512-aREYa3aku9SSnea4aX6bhKn4bgv3AXkgijoQgbYV3yvbiGt6z+MQ85+6mIhx9DsKW2BuB/cLR/A+tcMThx+KLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/pattern": "30.0.1", + "@jest/schemas": "30.0.5", + "@types/istanbul-lib-coverage": "^2.0.6", + "@types/istanbul-reports": "^3.0.4", + "@types/node": "*", + "@types/yargs": "^17.0.33", + "chalk": "^4.1.2" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", + "license": "MIT" + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "license": "MIT", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.17", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.17.tgz", + "integrity": "sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==", + "license": "MIT", + "dependencies": { + "ansi-html": "^0.0.9", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^4.2.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x || 5.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "license": "MIT", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "license": "MIT" + }, + "node_modules/@rollup/pluginutils/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "license": "MIT" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.12.0.tgz", + "integrity": "sha512-5EwMtOqvJMMa3HbmxLlF74e+3/HhwBTMcvt3nqVJgGCozO6hzIPOBlwm8mGVNR9SN2IJpxSnlxczyDjcn7qIyw==", + "license": "MIT" + }, + "node_modules/@sinclair/typebox": { + "version": "0.34.38", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.38.tgz", + "integrity": "sha512-HpkxMmc2XmZKhvaKIZZThlHmx1L0I/V1hWK1NubtlFnr6ZqdiOpV72TKudZUNQjZNsyDBay72qFEhEvb+bcwcA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "license": "Apache-2.0", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "license": "MIT", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "license": "MIT", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@testing-library/dom": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz", + "integrity": "sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz", + "integrity": "sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react": { + "version": "13.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz", + "integrity": "sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.5.0", + "@types/react-dom": "^18.0.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@testing-library/react/node_modules/@testing-library/dom": { + "version": "8.20.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz", + "integrity": "sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@testing-library/react/node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "license": "ISC", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz", + "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.6", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", + "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "license": "MIT", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz", + "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==", + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz", + "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==", + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.7.tgz", + "integrity": "sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==", + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz", + "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==", + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "license": "MIT" + }, + "node_modules/@types/eslint": { + "version": "8.56.12", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.12.tgz", + "integrity": "sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==", + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "license": "MIT", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/@types/express": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.23.tgz", + "integrity": "sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==", + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.7.tgz", + "integrity": "sha512-R+33OsgWw7rOhD1emjU7dzCDHucJrgJXMA5PYCzJxVil0dsyx5iBEPHqpPfiKNJQb7lZ1vxwoLR4Z87bBUpeGQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/express/node_modules/@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "license": "MIT" + }, + "node_modules/@types/http-errors": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", + "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==", + "license": "MIT" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.16", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.16.tgz", + "integrity": "sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "30.0.0", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-30.0.0.tgz", + "integrity": "sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^30.0.0", + "pretty-format": "^30.0.0" + } + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.0.5.tgz", + "integrity": "sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.0.5", + "ansi-styles": "^5.2.0", + "react-is": "^18.3.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/@types/jest/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "license": "MIT" + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.1.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.1.0.tgz", + "integrity": "sha512-ut5FthK5moxFKH2T1CUOC6ctR67rQRvvHdFLCD2Ql6KXmMuCrjsSsRI9UsLCm9M18BMwClv4pn327UvB7eeO1w==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.8.0" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.13", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.13.tgz", + "integrity": "sha512-zePQJSW5QkwSHKRApqWCVKeKoSOt4xvEnLENZPjyvm9Ezdf/EyDeJM7jqLzOwjVICQQzvLZ63T55MKdJB5H6ww==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "license": "MIT" + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.15", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@types/q": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==", + "license": "MIT" + }, + "node_modules/@types/qs": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.23", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.23.tgz", + "integrity": "sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", + "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "license": "MIT" + }, + "node_modules/@types/semver": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.0.tgz", + "integrity": "sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==", + "license": "MIT" + }, + "node_modules/@types/send": { + "version": "0.17.5", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.5.tgz", + "integrity": "sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==", + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "license": "MIT", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.8", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.8.tgz", + "integrity": "sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==", + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "license": "MIT" + }, + "node_modules/@types/testing-library__jest-dom": { + "version": "5.14.9", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz", + "integrity": "sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/jest": "*" + } + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", + "license": "MIT" + }, + "node_modules/@types/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead", + "license": "BSD-3-Clause" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "license": "MIT", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-phases": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", + "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "acorn": "^8.14.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz", + "integrity": "sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-array-method-boxes-properly": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "is-string": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT" + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "license": "MIT" + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "license": "MIT" + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.21", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", + "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.24.4", + "caniuse-lite": "^1.0.30001702", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.10.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.3.tgz", + "integrity": "sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==", + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.11.0.tgz", + "integrity": "sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "license": "MIT", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-jest/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/babel-loader": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz", + "integrity": "sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==", + "license": "MIT", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.4", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", + "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.7", + "@babel/helper-define-polyfill-provider": "^0.6.5", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", + "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.5" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", + "license": "MIT" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", + "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.1.0.tgz", + "integrity": "sha512-f9B1xMdnkCIqe+2dHrJsoQFRz7reChaAHE/65SdaykPklQqhme2WaC08oD3is77x9ff98/9EazAKFDZv5rFEQg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", + "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "license": "MIT" + }, + "node_modules/bfj": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", + "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", + "license": "MIT", + "dependencies": { + "bluebird": "^3.7.2", + "check-types": "^11.2.3", + "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/bonjour-service": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", + "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "license": "BSD-2-Clause" + }, + "node_modules/browserslist": { + "version": "4.25.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", + "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001726", + "electron-to-chromium": "^1.5.173", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001727", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz", + "integrity": "sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==", + "license": "MIT" + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.0.tgz", + "integrity": "sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", + "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", + "license": "MIT" + }, + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "license": "MIT", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/coa/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/coa/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "license": "MIT" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "license": "MIT" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "license": "MIT" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/core-js": { + "version": "3.44.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.44.0.tgz", + "integrity": "sha512-aFCtd4l6GvAXwVEh3XbbVqJGHDJt0OZRa+5ePGx3LLwi12WfexqQxcsohb2wgsa/92xtl19Hd66G/L+TaAxDMw==", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.44.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.44.0.tgz", + "integrity": "sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.25.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.44.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.44.0.tgz", + "integrity": "sha512-gvMQAGB4dfVUxpYD0k3Fq8J+n5bB6Ytl15lqlZrOIXFzxOhtPaObfkQGHtMRdyjIf7z2IeNULwi1jEwyS+ltKQ==", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-loader": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "license": "MIT", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "license": "CC0-1.0", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "license": "MIT" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cssdb": { + "version": "7.11.2", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.2.tgz", + "integrity": "sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ], + "license": "CC0-1.0" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "license": "MIT", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "license": "MIT", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "license": "MIT", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "license": "MIT" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "license": "MIT", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "license": "BSD-2-Clause" + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", + "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==", + "license": "MIT" + }, + "node_modules/decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==", + "license": "MIT" + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "license": "MIT" + }, + "node_modules/deep-equal": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", + "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.5", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.2", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "license": "MIT" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "license": "MIT" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "license": "MIT", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "license": "Apache-2.0" + }, + "node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "license": "MIT" + }, + "node_modules/dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "license": "MIT", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true, + "license": "MIT" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "license": "MIT", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "deprecated": "Use your platform's native DOMException instead", + "license": "MIT", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", + "license": "BSD-2-Clause" + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "license": "MIT" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/ejs": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.190", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.190.tgz", + "integrity": "sha512-k4McmnB2091YIsdCgkS0fMVMPOJgxl93ltFzaryXqwip1AaxeDqKCGLxkXODDA5Ab/D+tV5EL5+aTx76RvLRxw==", + "license": "ISC" + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.18.2", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.2.tgz", + "integrity": "sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", + "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "license": "MIT" + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", + "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.6", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.4", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "license": "MIT" + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", + "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "license": "BSD-3-Clause", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", + "license": "MIT", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "^5.58.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "license": "MIT", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "license": "MIT" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "license": "MIT" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/expect/-/expect-30.0.5.tgz", + "integrity": "sha512-P0te2pt+hHI5qLJkIR+iMvS+lYUZml8rKKsohVHAGY+uClp9XVbdyYNJOIjSRpHVp8s8YqxJCiHUkSYZGr8rtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "30.0.5", + "@jest/get-type": "30.0.1", + "jest-matcher-utils": "30.0.5", + "jest-message-util": "30.0.5", + "jest-mock": "30.0.5", + "jest-util": "30.0.5" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/express": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", + "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.12", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-equals": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.2.2.tgz", + "integrity": "sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", + "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "license": "Apache-2.0", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "license": "ISC" + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", + "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-monkey": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.1.0.tgz", + "integrity": "sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==", + "license": "Unlicense" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", + "license": "ISC" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "license": "MIT", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "license": "MIT", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "license": "MIT" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "license": "MIT" + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", + "license": "(Apache-2.0 OR MPL-1.1)" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "license": "MIT", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz", + "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], + "license": "MIT" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "license": "MIT" + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.6.3", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz", + "integrity": "sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==", + "license": "MIT", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.20.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "license": "MIT" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz", + "integrity": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==", + "license": "MIT" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "license": "MIT", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.9.tgz", + "integrity": "sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==", + "license": "MIT", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", + "license": "ISC" + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "license": "MIT", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/ipaddr.js": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", + "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", + "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-proto": "^1.0.0", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "license": "MIT" + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "license": "MIT" + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "license": "MIT" + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jake": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", + "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "license": "MIT", + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-circus/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "license": "MIT", + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-cli/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-cli/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-cli/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-config/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-diff": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-30.0.5.tgz", + "integrity": "sha512-1UIqE9PoEKaHcIKvq2vbibrCog4Y8G0zmOxgQUVEiTqwR5hJVMCoDsN1vFvI5JvwD37hjueZ1C4l2FyGnfpE0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/diff-sequences": "30.0.1", + "@jest/get-type": "30.0.1", + "chalk": "^4.1.2", + "pretty-format": "30.0.5" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.0.5.tgz", + "integrity": "sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.0.5", + "ansi-styles": "^5.2.0", + "react-is": "^18.3.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-each/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-environment-jsdom/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-environment-node/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-haste-map/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-haste-map/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-haste-map/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-jasmine2/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "license": "MIT", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.0.5.tgz", + "integrity": "sha512-uQgGWt7GOrRLP1P7IwNWwK1WAQbq+m//ZY0yXygyfWp0rJlksMSLQAA4wYQC3b6wl3zfnchyTx+k3HZ5aPtCbQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.0.1", + "chalk": "^4.1.2", + "jest-diff": "30.0.5", + "pretty-format": "30.0.5" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.0.5.tgz", + "integrity": "sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.0.5", + "ansi-styles": "^5.2.0", + "react-is": "^18.3.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-message-util": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.0.5.tgz", + "integrity": "sha512-NAiDOhsK3V7RU0Aa/HnrQo+E4JlbarbmI3q6Pi4KcxicdtjV82gcIUrejOtczChtVQR4kddu1E1EJlW6EN9IyA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@jest/types": "30.0.5", + "@types/stack-utils": "^2.0.3", + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "micromatch": "^4.0.8", + "pretty-format": "30.0.5", + "slash": "^3.0.0", + "stack-utils": "^2.0.6" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.0.5.tgz", + "integrity": "sha512-D1tKtYvByrBkFLe2wHJl2bwMJIiT8rW+XA+TiataH79/FszLQMrpGEvzUVkzPau7OCO0Qnrhpe87PqtOAIB8Yw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.0.5", + "ansi-styles": "^5.2.0", + "react-is": "^18.3.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-mock": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-30.0.5.tgz", + "integrity": "sha512-Od7TyasAAQX/6S+QCbN6vZoWOMwlTtzzGuxJku1GhGanAjz9y+QsQkpScDmETvdc9aSXyJ/Op4rhpMYBWW91wQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "30.0.5", + "@types/node": "*", + "jest-util": "30.0.5" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.0.1.tgz", + "integrity": "sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-resolve/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "license": "MIT", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runner/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runtime/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-snapshot/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-util": { + "version": "30.0.5", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-30.0.5.tgz", + "integrity": "sha512-pvyPWssDZR0FlfMxCBoc0tvM8iUEskaRFALUtGQYzVEAqisAztmy+R8LnU14KT4XA0H/a5HMVTXat1jLne010g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "30.0.5", + "@types/node": "*", + "chalk": "^4.1.2", + "ci-info": "^4.2.0", + "graceful-fs": "^4.2.11", + "picomatch": "^4.0.2" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "license": "MIT", + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "license": "MIT" + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "license": "MIT", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "license": "MIT", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.2.tgz", + "integrity": "sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg==", + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watcher/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jiti": { + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", + "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.35" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "license": "(AFL-2.1 OR BSD-3-Clause)" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpath": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", + "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", + "license": "MIT", + "dependencies": { + "esprima": "1.2.2", + "static-eval": "2.0.2", + "underscore": "1.12.1" + } + }, + "node_modules/jsonpath/node_modules/esprima": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", + "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/launch-editor": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.10.0.tgz", + "integrity": "sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==", + "license": "MIT", + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "license": "MIT", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "license": "MIT" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "license": "MIT" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "license": "MIT" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "dev": true, + "license": "MIT", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "license": "MIT", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "license": "CC0-1.0" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "license": "Unlicense", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/micromatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz", + "integrity": "sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==", + "license": "MIT", + "dependencies": { + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "license": "ISC" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "license": "MIT", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "license": "MIT" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.20", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.20.tgz", + "integrity": "sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==", + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz", + "integrity": "sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==", + "license": "MIT", + "dependencies": { + "array.prototype.reduce": "^1.0.6", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "gopd": "^1.0.1", + "safe-array-concat": "^1.1.2" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "license": "MIT", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "license": "MIT" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/path-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "license": "CC0-1.0", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz", + "integrity": "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==", + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "license": "MIT", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", + "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", + "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^7.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", + "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "license": "ISC", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "license": "MIT", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "license": "MIT", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "license": "MIT", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "license": "MIT", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "license": "MIT" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/psl": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", + "license": "MIT", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "license": "MIT", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "license": "MIT", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-error-overlay": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.1.0.tgz", + "integrity": "sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==", + "license": "MIT" + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/react-smooth": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.4.tgz", + "integrity": "sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==", + "license": "MIT", + "dependencies": { + "fast-equals": "^5.0.1", + "prop-types": "^15.8.1", + "react-transition-group": "^4.4.5" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/readdirp/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/recharts": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.15.4.tgz", + "integrity": "sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw==", + "license": "MIT", + "dependencies": { + "clsx": "^2.0.0", + "eventemitter3": "^4.0.1", + "lodash": "^4.17.21", + "react-is": "^18.3.1", + "react-smooth": "^4.0.4", + "recharts-scale": "^0.4.4", + "tiny-invariant": "^1.3.1", + "victory-vendor": "^36.6.8" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/recharts-scale": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz", + "integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==", + "license": "MIT", + "dependencies": { + "decimal.js-light": "^2.4.1" + } + }, + "node_modules/recharts/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "node_modules/regex-parser": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.1.tgz", + "integrity": "sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==", + "license": "MIT" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "license": "MIT" + }, + "node_modules/regjsparser": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~3.0.2" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "license": "MIT", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "license": "MIT", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/resolve-url-loader/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" + }, + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "license": "ISC" + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "2.79.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz", + "integrity": "sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==", + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==", + "license": "CC0-1.0" + }, + "node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "license": "MIT", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "license": "ISC" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/schema-utils/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "license": "MIT" + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "license": "ISC" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "license": "ISC" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", + "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "license": "MIT", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "license": "MIT" + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead", + "license": "MIT" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", + "license": "MIT" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "license": "MIT" + }, + "node_modules/static-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", + "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", + "license": "MIT", + "dependencies": { + "escodegen": "^1.8.1" + } + }, + "node_modules/static-eval/node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/static-eval/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/static-eval/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "license": "MIT", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-eval/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", + "license": "MIT" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "license": "BSD-2-Clause", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", + "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "license": "MIT" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/svgo/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "license": "BSD-2-Clause" + }, + "node_modules/svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/svgo/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "license": "MIT" + }, + "node_modules/tailwindcss": { + "version": "3.4.17", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz", + "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==", + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.6", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/tapable": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.2.tgz", + "integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "license": "MIT", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.25", + "jest-worker": "^27.4.5", + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==", + "license": "MIT" + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "license": "MIT" + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "license": "BSD-3-Clause" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", + "license": "MIT" + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "license": "Apache-2.0" + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/underscore": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", + "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==", + "license": "MIT" + }, + "node_modules/undici-types": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz", + "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==", + "license": "MIT" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==", + "license": "MIT" + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "license": "MIT" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "license": "ISC", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/victory-vendor": { + "version": "36.9.2", + "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.9.2.tgz", + "integrity": "sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==", + "license": "MIT AND ISC", + "dependencies": { + "@types/d3-array": "^3.0.3", + "@types/d3-ease": "^3.0.0", + "@types/d3-interpolate": "^3.0.1", + "@types/d3-scale": "^4.0.2", + "@types/d3-shape": "^3.1.0", + "@types/d3-time": "^3.0.0", + "@types/d3-timer": "^3.0.0", + "d3-array": "^3.1.6", + "d3-ease": "^3.0.1", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-shape": "^3.1.0", + "d3-time": "^3.0.0", + "d3-timer": "^3.0.1" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "license": "MIT", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "license": "MIT", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "license": "MIT", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "license": "MIT", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.100.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.100.2.tgz", + "integrity": "sha512-QaNKAvGCDRh3wW1dsDjeMdDXwZm2vqq3zn6Pvq4rHOEOGSaUMgOOjG2Y9ZbIGzpfkJk9ZYTHpDqgDfeBDcnLaw==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.8", + "@types/json-schema": "^7.0.15", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.15.0", + "acorn-import-phases": "^1.0.3", + "browserslist": "^4.24.0", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.2", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^4.3.2", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", + "webpack-sources": "^3.3.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", + "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "license": "MIT", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", + "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", + "license": "MIT", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.4", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "license": "MIT", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz", + "integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "license": "MIT", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", + "license": "MIT" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "license": "MIT" + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "license": "MIT", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", + "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", + "license": "MIT", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", + "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-build": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", + "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", + "license": "MIT", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "license": "MIT", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "license": "BSD-3-Clause", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "license": "BSD-2-Clause" + }, + "node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", + "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", + "deprecated": "workbox-background-sync@6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-core": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", + "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==", + "license": "MIT" + }, + "node_modules/workbox-expiration": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", + "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", + "license": "MIT", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-google-analytics": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", + "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", + "deprecated": "It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained", + "license": "MIT", + "dependencies": { + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", + "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-precaching": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", + "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", + "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-recipes": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", + "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", + "license": "MIT", + "dependencies": { + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-routing": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", + "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-strategies": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", + "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-streams": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", + "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" + } + }, + "node_modules/workbox-sw": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", + "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==", + "license": "MIT" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", + "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", + "license": "MIT", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/workbox-window": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", + "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", + "license": "MIT", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.6.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "license": "Apache-2.0" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "license": "MIT" + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..09414e0 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,36 @@ +{ + "name": "chart-frontend", + "version": "1.0.0", + "description": "React frontend for chart data visualization", + "main": "index.js", + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "dependencies": { + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "5.0.1", + "axios": "^1.6.0", + "recharts": "^2.8.0" + }, + "devDependencies": { + "@testing-library/jest-dom": "^5.16.4", + "@testing-library/react": "^13.3.0", + "@testing-library/user-event": "^13.5.0" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} \ No newline at end of file diff --git a/frontend/public/index.html b/frontend/public/index.html new file mode 100644 index 0000000..150c370 --- /dev/null +++ b/frontend/public/index.html @@ -0,0 +1,18 @@ + + + + + + + + + Chart Data Visualization + + + +
+ + \ No newline at end of file diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx new file mode 100644 index 0000000..bfad9d7 --- /dev/null +++ b/frontend/src/App.jsx @@ -0,0 +1,118 @@ +import React, { useState } from 'react'; +import Layout from './components/Layout'; +import YearSelector from './components/YearSelector'; +import DateList from './components/DateList'; +import ChartTable from './components/ChartTable'; +import DownloadButton from './components/DownloadButton'; +import YearlyTopSongs from './components/YearlyTopSongs'; +import YearlyDownloadButton from './components/YearlyDownloadButton'; +import { useChartDates } from './hooks/useChartDates'; +import { useChartData } from './hooks/useChartData'; +import { useYearlyTopSongs } from './hooks/useYearlyTopSongs'; + +function App() { + const [selectedYear, setSelectedYear] = useState(new Date().getFullYear()); + const [selectedDate, setSelectedDate] = useState(null); + const [viewMode, setViewMode] = useState('weekly'); // 'weekly' or 'yearly' + + const { dates, loading: datesLoading, error: datesError } = useChartDates(selectedYear); + const { chartData, loading: dataLoading, error: dataError } = useChartData(selectedDate); + const { yearlySongs, loading: yearlyLoading, error: yearlyError } = useYearlyTopSongs(viewMode === 'yearly' ? selectedYear : null); + + const handleYearChange = (year) => { + setSelectedYear(year); + setSelectedDate(null); // Reset selected date when year changes + }; + + const handleDateSelect = (date) => { + setSelectedDate(date); + }; + + const handleViewModeChange = (mode) => { + setViewMode(mode); + if (mode === 'yearly') { + setSelectedDate(null); // Clear selected date when switching to yearly view + } + }; + + return ( + +
+
+

Music Charts Archive

+
+ +
+
+
+ + +
+ +
+ + +
+
+
+ + {viewMode === 'weekly' && ( + + )} +
+ +
+ {viewMode === 'weekly' ? ( + <> + + + {chartData && chartData.length > 0 && ( + + )} + + ) : ( + <> + + + {yearlySongs && yearlySongs.length > 0 && ( + + )} + + )} +
+
+
+
+ ); +} + +export default App; \ No newline at end of file diff --git a/frontend/src/components/ChartTable.jsx b/frontend/src/components/ChartTable.jsx new file mode 100644 index 0000000..b65818f --- /dev/null +++ b/frontend/src/components/ChartTable.jsx @@ -0,0 +1,63 @@ +import React from 'react'; + +const ChartTable = ({ data, loading, error, selectedDate }) => { + if (loading) { + return ( +
+

Music Chart Data

+
Loading chart data...
+
+ ); + } + + if (error) { + return ( +
+

Music Chart Data

+
Error loading chart data: {error}
+
+ ); + } + + if (!data || data.length === 0) { + return ( +
+

Music Chart Data

+
+ {selectedDate + ? `No chart data available for ${selectedDate}. Please select a different date.` + : 'No data available. Please select a chart date.' + } +
+
+ ); + } + + return ( +
+

Music Chart Data {selectedDate && `- ${selectedDate}`}

+
+ + + + + + + + + + {data.map((song, index) => ( + + + + + + ))} + +
RankTitleArtist
{song.order}{song.title}{song.artist}
+
+
+ ); +}; + +export default ChartTable; \ No newline at end of file diff --git a/frontend/src/components/DateList.jsx b/frontend/src/components/DateList.jsx new file mode 100644 index 0000000..789bd3f --- /dev/null +++ b/frontend/src/components/DateList.jsx @@ -0,0 +1,49 @@ +import React from 'react'; + +const DateList = ({ dates, selectedDate, onDateSelect, loading, error }) => { + if (loading) { + return ( +
+

Available Chart Dates

+
Loading chart dates...
+
+ ); + } + + if (error) { + return ( +
+

Available Chart Dates

+
Error loading dates: {error}
+
+ ); + } + + if (!dates || dates.length === 0) { + return ( +
+

Available Chart Dates

+
No chart dates available for selected year
+
+ ); + } + + return ( +
+

Available Chart Dates

+
+ {dates.map((dateObj) => ( + + ))} +
+
+ ); +}; + +export default DateList; \ No newline at end of file diff --git a/frontend/src/components/DownloadButton.jsx b/frontend/src/components/DownloadButton.jsx new file mode 100644 index 0000000..80398e9 --- /dev/null +++ b/frontend/src/components/DownloadButton.jsx @@ -0,0 +1,55 @@ +import React from 'react'; + +const DownloadButton = ({ data, selectedDate }) => { + const downloadJSON = () => { + if (!data || data.length === 0) return; + + // Format the date for the title + const formatDate = (dateString) => { + const date = new Date(dateString); + return date.toLocaleDateString('en-US', { + year: 'numeric', + month: 'long', + day: 'numeric' + }); + }; + + // Create JSON content for music chart data + const jsonData = { + title: `${formatDate(selectedDate)} - Top Songs`, + date: selectedDate, + totalSongs: data.length, + songs: data + }; + + const jsonContent = JSON.stringify(jsonData, null, 2); + + // Create and download the file + const blob = new Blob([jsonContent], { type: 'application/json;charset=utf-8;' }); + const link = document.createElement('a'); + const url = URL.createObjectURL(blob); + + const dateStr = selectedDate ? selectedDate : 'chart-data'; + link.setAttribute('href', url); + link.setAttribute('download', `music-chart-${dateStr}.json`); + link.style.visibility = 'hidden'; + + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + }; + + return ( +
+ +
+ ); +}; + +export default DownloadButton; \ No newline at end of file diff --git a/frontend/src/components/JsonViewer.jsx b/frontend/src/components/JsonViewer.jsx new file mode 100644 index 0000000..067935b --- /dev/null +++ b/frontend/src/components/JsonViewer.jsx @@ -0,0 +1,128 @@ +import React, { useState } from 'react'; + +const JsonViewer = ({ data, title, filename, year }) => { + const [isVisible, setIsVisible] = useState(false); + const [selectedProperties, setSelectedProperties] = useState({ + position: true, + title: true, + artist: true, + totalPoints: false, + highestPosition: false, + appearances: false + }); + + // Filter data based on selected properties and format to match songList.json structure + const formatData = () => { + if (!data || data.length === 0) return null; + + const filteredSongs = data.map(item => { + const filteredSong = {}; + + // Map order to position to match the expected format + if (selectedProperties.position && item.hasOwnProperty('order')) { + filteredSong.position = item.order; + } + + // Add other selected properties + Object.keys(selectedProperties).forEach(prop => { + if (prop !== 'position' && selectedProperties[prop] && item.hasOwnProperty(prop)) { + filteredSong[prop] = item[prop]; + } + }); + + return filteredSong; + }); + + return { + title: `${year} - Top 50 Songs`, + songs: filteredSongs + }; + }; + + const formattedData = formatData(); + const jsonString = formattedData ? JSON.stringify(formattedData, null, 2) : '[]'; + + const copyToClipboard = async () => { + try { + await navigator.clipboard.writeText(jsonString); + alert('JSON copied to clipboard!'); + } catch (err) { + console.error('Failed to copy: ', err); + // Fallback for older browsers + const textArea = document.createElement('textarea'); + textArea.value = jsonString; + document.body.appendChild(textArea); + textArea.select(); + document.execCommand('copy'); + document.body.removeChild(textArea); + alert('JSON copied to clipboard!'); + } + }; + + const downloadJSON = () => { + const blob = new Blob([jsonString], { type: 'application/json;charset=utf-8;' }); + const link = document.createElement('a'); + const url = URL.createObjectURL(blob); + + link.setAttribute('href', url); + link.setAttribute('download', filename); + link.style.visibility = 'hidden'; + + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + }; + + return ( +
+ + + {isVisible && ( +
+
+

{title}

+
+ + +
+
+ + {/* Property Selection */} +
+
Select Properties to Include:
+
+ {Object.keys(selectedProperties).map(prop => ( + + ))} +
+
+ +
{jsonString}
+
+ )} +
+ ); +}; + +export default JsonViewer; \ No newline at end of file diff --git a/frontend/src/components/Layout.jsx b/frontend/src/components/Layout.jsx new file mode 100644 index 0000000..f0f81c5 --- /dev/null +++ b/frontend/src/components/Layout.jsx @@ -0,0 +1,13 @@ +import React from 'react'; + +const Layout = ({ children }) => { + return ( +
+
+ {children} +
+
+ ); +}; + +export default Layout; \ No newline at end of file diff --git a/frontend/src/components/YearSelector.jsx b/frontend/src/components/YearSelector.jsx new file mode 100644 index 0000000..f5fac6a --- /dev/null +++ b/frontend/src/components/YearSelector.jsx @@ -0,0 +1,26 @@ +import React from 'react'; + +const YearSelector = ({ selectedYear, onYearChange }) => { + const currentYear = new Date().getFullYear(); + const years = Array.from({ length: 10 }, (_, i) => currentYear - i); + + return ( +
+ + +
+ ); +}; + +export default YearSelector; \ No newline at end of file diff --git a/frontend/src/components/YearlyDownloadButton.jsx b/frontend/src/components/YearlyDownloadButton.jsx new file mode 100644 index 0000000..5fc5bd2 --- /dev/null +++ b/frontend/src/components/YearlyDownloadButton.jsx @@ -0,0 +1,50 @@ +import React from 'react'; + +const YearlyDownloadButton = ({ data, year }) => { + const downloadJSON = () => { + if (!data || data.length === 0) return; + + // Create JSON content for yearly top songs data + // Filter out calculation properties to keep original download format + const songsForDownload = data.map(song => ({ + order: song.order, + title: song.title, + artist: song.artist + })); + + const jsonData = { + year: year, + title: `Top Songs of ${year}`, + songs: songsForDownload + }; + + const jsonContent = JSON.stringify(jsonData, null, 2); + + // Create and download the file + const blob = new Blob([jsonContent], { type: 'application/json;charset=utf-8;' }); + const link = document.createElement('a'); + const url = URL.createObjectURL(blob); + + link.setAttribute('href', url); + link.setAttribute('download', `yearly-top-songs-${year}.json`); + link.style.visibility = 'hidden'; + + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + }; + + return ( +
+ +
+ ); +}; + +export default YearlyDownloadButton; \ No newline at end of file diff --git a/frontend/src/components/YearlyTopSongs.jsx b/frontend/src/components/YearlyTopSongs.jsx new file mode 100644 index 0000000..da6b5dc --- /dev/null +++ b/frontend/src/components/YearlyTopSongs.jsx @@ -0,0 +1,83 @@ +import React from 'react'; +import JsonViewer from './JsonViewer'; + +const YearlyTopSongs = ({ data, loading, error, year }) => { + if (loading) { + return ( +
+

Yearly Top Songs

+
+
Calculating yearly top songs...
+
+ This may take a few minutes as we analyze all chart data for {year} +
+
+
+ ); + } + + if (error) { + return ( +
+

Yearly Top Songs

+
Error calculating yearly top songs: {error}
+
+ ); + } + + if (!data || data.length === 0) { + return ( +
+

Yearly Top Songs

+
+ {year + ? `No yearly data available for ${year}. Please select a different year.` + : 'No yearly data available. Please select a year.' + } +
+
+ ); + } + + return ( +
+

Top Songs of {year}

+
+ + + + + + + + + + + + + {data.map((song, index) => ( + + + + + + + + + ))} + +
RankTitleArtistTotal PointsBest PositionWeeks on Chart
{song.order}{song.title}{song.artist}{song.totalPoints}#{song.highestPosition}{song.appearances}
+
+ + {/* JSON Viewer for debugging and data inspection */} + +
+ ); +}; + +export default YearlyTopSongs; \ No newline at end of file diff --git a/frontend/src/hooks/useChartData.js b/frontend/src/hooks/useChartData.js new file mode 100644 index 0000000..3207015 --- /dev/null +++ b/frontend/src/hooks/useChartData.js @@ -0,0 +1,35 @@ +import { useState, useEffect } from 'react'; +import { getChartData } from '../services/chartApi'; + +export const useChartData = (selectedDate) => { + const [chartData, setChartData] = useState([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + + useEffect(() => { + const fetchChartData = async () => { + if (!selectedDate) { + setChartData([]); + setError(null); + return; + } + + setLoading(true); + setError(null); + + try { + const data = await getChartData(selectedDate); + setChartData(data); + } catch (err) { + setError(err.message || 'Failed to fetch chart data'); + setChartData([]); + } finally { + setLoading(false); + } + }; + + fetchChartData(); + }, [selectedDate]); + + return { chartData, loading, error }; +}; \ No newline at end of file diff --git a/frontend/src/hooks/useChartDates.js b/frontend/src/hooks/useChartDates.js new file mode 100644 index 0000000..c736f87 --- /dev/null +++ b/frontend/src/hooks/useChartDates.js @@ -0,0 +1,31 @@ +import { useState, useEffect } from 'react'; +import { getChartDates } from '../services/chartApi'; + +export const useChartDates = (year) => { + const [dates, setDates] = useState([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + + useEffect(() => { + const fetchDates = async () => { + if (!year) return; + + setLoading(true); + setError(null); + + try { + const datesData = await getChartDates(year); + setDates(datesData); + } catch (err) { + setError(err.message || 'Failed to fetch dates'); + setDates([]); + } finally { + setLoading(false); + } + }; + + fetchDates(); + }, [year]); + + return { dates, loading, error }; +}; \ No newline at end of file diff --git a/frontend/src/hooks/useYearlyTopSongs.js b/frontend/src/hooks/useYearlyTopSongs.js new file mode 100644 index 0000000..13a45f8 --- /dev/null +++ b/frontend/src/hooks/useYearlyTopSongs.js @@ -0,0 +1,35 @@ +import { useState, useEffect } from 'react'; +import { getYearlyTopSongs } from '../services/chartApi'; + +export const useYearlyTopSongs = (year) => { + const [yearlySongs, setYearlySongs] = useState([]); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + + useEffect(() => { + const fetchYearlyTopSongs = async () => { + if (!year) { + setYearlySongs([]); + setError(null); + return; + } + + setLoading(true); + setError(null); + + try { + const data = await getYearlyTopSongs(year); + setYearlySongs(data); + } catch (err) { + setError(err.message || 'Failed to fetch yearly top songs'); + setYearlySongs([]); + } finally { + setLoading(false); + } + }; + + fetchYearlyTopSongs(); + }, [year]); + + return { yearlySongs, loading, error }; +}; \ No newline at end of file diff --git a/frontend/src/index.js b/frontend/src/index.js new file mode 100644 index 0000000..7929bba --- /dev/null +++ b/frontend/src/index.js @@ -0,0 +1,11 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './styles.css'; +import App from './App'; + +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render( + + + +); \ No newline at end of file diff --git a/frontend/src/services/chartApi.js b/frontend/src/services/chartApi.js new file mode 100644 index 0000000..d8063b4 --- /dev/null +++ b/frontend/src/services/chartApi.js @@ -0,0 +1,48 @@ +import axios from 'axios'; + +// Configure base URL for API calls +const API_BASE_URL = process.env.REACT_APP_API_BASE_URL || 'http://localhost:3001/api'; + +const api = axios.create({ + baseURL: API_BASE_URL, + timeout: 300000, // 5 minutes for yearly calculations + headers: { + 'Content-Type': 'application/json', + }, +}); + +// Get available dates for a specific year +export const getChartDates = async (year) => { + try { + const response = await api.get(`/chart/dates/${year}`); + return response.data; + } catch (error) { + console.error('Error fetching chart dates:', error); + throw new Error(error.response?.data?.message || 'Failed to fetch chart dates'); + } +}; + +// Get chart data for a specific date +export const getChartData = async (date) => { + try { + const response = await api.get(`/chart/data/${date}`); + return response.data; + } catch (error) { + console.error('Error fetching chart data:', error); + throw new Error(error.response?.data?.message || 'Failed to fetch chart data'); + } +}; + +// Get yearly top songs +export const getYearlyTopSongs = async (year) => { + try { + const response = await api.get(`/chart/yearly-top/${year}`); + return response.data; + } catch (error) { + console.error('Error fetching yearly top songs:', error); + throw new Error(error.response?.data?.message || 'Failed to fetch yearly top songs'); + } +}; + +// Export the api instance for potential future use +export default api; \ No newline at end of file diff --git a/frontend/src/styles.css b/frontend/src/styles.css new file mode 100644 index 0000000..fb29826 --- /dev/null +++ b/frontend/src/styles.css @@ -0,0 +1,492 @@ +/* Reset and base styles */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + background-color: #f5f5f5; + color: #333; +} + +/* Layout styles */ +.layout { + min-height: 100vh; + background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); +} + +.layout-container { + max-width: 1200px; + margin: 0 auto; + padding: 20px; +} + +/* App styles */ +.app { + background: white; + border-radius: 12px; + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); + overflow: hidden; +} + +.app-header { + background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); + color: white; + padding: 30px; + text-align: center; +} + +.app-header h1 { + font-size: 2.5rem; + font-weight: 300; + margin: 0; +} + +.app-main { + padding: 30px; +} + +/* Controls section */ +.controls-section { + display: grid; + grid-template-columns: 1fr 2fr; + gap: 30px; + margin-bottom: 30px; + background: #f8f9fa; + padding: 20px; + border-radius: 8px; +} + +/* Year selector and view mode */ +.year-selector-container { + display: flex; + flex-direction: column; + gap: 20px; +} + +.year-selector { + display: flex; + flex-direction: column; + gap: 10px; +} + +.year-selector label { + font-weight: 600; + color: #495057; +} + +.year-select { + padding: 12px; + border: 2px solid #e9ecef; + border-radius: 6px; + font-size: 16px; + background: white; + transition: border-color 0.2s ease; +} + +.year-select:focus { + outline: none; + border-color: #667eea; +} + +/* View mode selector */ +.view-mode-selector { + display: flex; + flex-direction: column; + gap: 10px; +} + +.view-mode-selector label { + font-weight: 600; + color: #495057; +} + +.view-mode-buttons { + display: flex; + gap: 10px; +} + +.view-mode-btn { + flex: 1; + padding: 10px 16px; + border: 2px solid #e9ecef; + border-radius: 6px; + background: white; + color: #495057; + font-weight: 600; + cursor: pointer; + transition: all 0.2s ease; +} + +.view-mode-btn:hover { + border-color: #667eea; + color: #667eea; +} + +.view-mode-btn.active { + background: #667eea; + border-color: #667eea; + color: white; +} + +/* Date list */ +.date-list h3 { + margin-bottom: 15px; + color: #495057; + font-size: 18px; +} + +.date-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); + gap: 10px; + margin-bottom: 20px; +} + +.date-item { + padding: 10px; + background: white; + border: 2px solid #e9ecef; + border-radius: 6px; + text-align: center; + cursor: pointer; + transition: all 0.2s ease; + font-size: 14px; +} + +.date-item:hover { + border-color: #667eea; + color: #667eea; +} + +.date-item.selected { + background: #667eea; + border-color: #667eea; + color: white; +} + +/* Chart section */ +.chart-section { + background: white; + border-radius: 8px; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); + overflow: hidden; +} + +.chart-table h3 { + background: #f8f9fa; + padding: 20px; + margin: 0; + border-bottom: 1px solid #dee2e6; + color: #495057; +} + +.table-container { + overflow-x: auto; + padding: 20px; +} + +.data-table { + width: 100%; + border-collapse: collapse; + font-size: 14px; +} + +.data-table th, +.data-table td { + padding: 12px; + text-align: left; + border-bottom: 1px solid #dee2e6; +} + +.data-table th { + background: #f8f9fa; + font-weight: 600; + color: #495057; + position: sticky; + top: 0; +} + +.data-table tr:hover { + background: #f8f9fa; +} + +.rank-cell { + font-weight: 700; + color: #333; + width: 60px; +} + +.title-cell { + font-weight: 600; + color: #333; +} + +.artist-cell { + color: #666; + font-style: italic; +} + +.points-cell { + font-weight: 600; + color: #28a745; + text-align: center; +} + +.position-cell { + font-weight: 600; + color: #007bff; + text-align: center; +} + +.appearances-cell { + font-weight: 500; + color: #6f42c1; + text-align: center; +} + +.data-table tr:nth-child(1) .rank-cell { + color: #ffd700; + font-weight: 700; +} + +.data-table tr:nth-child(2) .rank-cell { + color: #c0c0c0; + font-weight: 700; +} + +.data-table tr:nth-child(3) .rank-cell { + color: #cd7f32; + font-weight: 700; +} + +/* Download section */ +.download-section { + margin-top: 20px; + text-align: center; +} + +.download-button { + background: linear-gradient(135deg, #28a745 0%, #20c997 100%); + color: white; + border: none; + padding: 12px 24px; + border-radius: 6px; + font-size: 16px; + font-weight: 600; + cursor: pointer; + transition: all 0.2s ease; + box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); +} + +.download-button:hover:not(:disabled) { + transform: translateY(-2px); + box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4); +} + +.download-button:disabled { + background: #6c757d; + cursor: not-allowed; + box-shadow: none; +} + +/* Loading and error states */ +.loading { + text-align: center; + padding: 20px; + color: #6c757d; + font-style: italic; +} + +.error { + text-align: center; + padding: 20px; + color: #dc3545; + background: #f8d7da; + border: 1px solid #f5c6cb; + border-radius: 6px; + margin: 10px 0; +} + +.no-data, +.no-dates { + text-align: center; + padding: 20px; + color: #6c757d; + font-style: italic; + background: #f8f9fa; + border-radius: 6px; +} + +/* JSON Viewer styles */ +.json-viewer { + margin-top: 20px; +} + +.json-toggle-btn { + background: linear-gradient(135deg, #6c757d 0%, #495057 100%); + color: white; + border: none; + padding: 10px 20px; + border-radius: 6px; + font-size: 14px; + font-weight: 600; + cursor: pointer; + transition: all 0.2s ease; + margin-bottom: 10px; +} + +.json-toggle-btn:hover { + transform: translateY(-1px); + box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3); +} + +.json-container { + background: #f8f9fa; + border: 1px solid #dee2e6; + border-radius: 8px; + overflow: hidden; + margin-top: 10px; +} + +.json-header { + background: #e9ecef; + padding: 15px 20px; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 1px solid #dee2e6; +} + +.json-header h4 { + margin: 0; + color: #495057; + font-size: 16px; +} + +.property-selector { + background: #f1f3f4; + padding: 15px 20px; + border-bottom: 1px solid #dee2e6; +} + +.property-selector h5 { + margin: 0 0 10px 0; + color: #495057; + font-size: 14px; + font-weight: 600; +} + +.property-checkboxes { + display: flex; + flex-wrap: wrap; + gap: 15px; +} + +.property-checkbox { + display: flex; + align-items: center; + gap: 6px; + cursor: pointer; + font-size: 13px; + color: #495057; +} + +.property-checkbox input[type="checkbox"] { + width: 16px; + height: 16px; + cursor: pointer; +} + +.property-label { + font-weight: 500; + text-transform: capitalize; +} + +.json-actions { + display: flex; + gap: 10px; +} + +.copy-btn, .download-btn { + padding: 8px 16px; + border: none; + border-radius: 4px; + font-size: 12px; + font-weight: 600; + cursor: pointer; + transition: all 0.2s ease; +} + +.copy-btn { + background: #007bff; + color: white; +} + +.copy-btn:hover { + background: #0056b3; +} + +.download-btn { + background: #28a745; + color: white; +} + +.download-btn:hover { + background: #1e7e34; +} + +.json-content { + background: #2d3748; + color: #e2e8f0; + padding: 20px; + margin: 0; + font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace; + font-size: 13px; + line-height: 1.5; + overflow-x: auto; + white-space: pre-wrap; + word-wrap: break-word; + max-height: 400px; + overflow-y: auto; +} + +/* Responsive design */ +@media (max-width: 768px) { + .layout-container { + padding: 10px; + } + + .app-header { + padding: 20px; + } + + .app-header h1 { + font-size: 2rem; + } + + .app-main { + padding: 20px; + } + + .controls-section { + grid-template-columns: 1fr; + gap: 20px; + } + + .date-grid { + grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); + } + + .data-table th, + .data-table td { + padding: 8px; + font-size: 12px; + } +} \ No newline at end of file diff --git a/start.sh b/start.sh new file mode 100644 index 0000000..09abd5a --- /dev/null +++ b/start.sh @@ -0,0 +1,54 @@ +#!/bin/bash + +echo "🎵 Starting Music Charts Archive Scraper..." +echo "" + +# Check if Node.js is installed +if ! command -v node &> /dev/null; then + echo "❌ Node.js is not installed. Please install Node.js first." + exit 1 +fi + +# Check if npm is installed +if ! command -v npm &> /dev/null; then + echo "❌ npm is not installed. Please install npm first." + exit 1 +fi + +echo "📦 Installing backend dependencies..." +cd backend +npm install + +echo "📦 Installing frontend dependencies..." +cd ../frontend +npm install + +echo "" +echo "🚀 Starting services..." +echo "" + +# Start backend in background +echo "🔧 Starting backend server on http://localhost:3001" +cd ../backend +npm run dev & +BACKEND_PID=$! + +# Wait a moment for backend to start +sleep 3 + +# Start frontend +echo "🎨 Starting frontend server on http://localhost:3000" +cd ../frontend +npm start & +FRONTEND_PID=$! + +echo "" +echo "✅ Services started successfully!" +echo "📊 Frontend: http://localhost:3000" +echo "🔌 Backend: http://localhost:3001" +echo "🏥 Health check: http://localhost:3001/api/health" +echo "" +echo "Press Ctrl+C to stop all services" + +# Wait for user to stop +wait \ No newline at end of file